Skill architect
Comprehensive skill creation, improvement, and packaging following the agentskills.io open standard. Produces deployment-ready .zip files for upload to Claude.ai, Claude Desktop, Claude Code, Cowork, or any agentskills.io-compatible platform. Use when building new skills from scratch, auditing or improving existing skills, authoring SKILL.md files, configuring frontmatter, structuring bundled resources, or packaging skills for distribution. Handles the full lifecycle: intent capture, resource planning, SKILL.md authoring, validation, packaging, and iteration. MANDATORY TRIGGERS: skill creation, SKILL.md, skill improvement, skill audit, frontmatter, skill packaging, agentskills.io, progressive disclosure, skill validation, skill architecture, bundled resources, create a skill, build a skill, package a skill, new skill, update skill, improve skill.From its SKILL.md
npx -y skills add fullREFIT/skills --skill skill-architectAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 17 days oldThe repository was created 17 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its file declares
Copied from the file, not written here
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
6.0 KB, ~1.1k tokens by cl100k_base, as published. Nobody here has run it
Skill Architect
Create, audit, improve, and package agent skills following the Agent Skills open standard. Every skill produced must include a deployment-ready .zip file.
Read references/detail.md before executing. It contains the full platform compatibility matrix, step-by-step creation procedures, frontmatter field reference, quality checklist, packaging commands, and troubleshooting guide.
Triggers
Activate when the user asks to: create a skill, build a skill, package a skill, improve or audit an existing skill, write a SKILL.md, configure frontmatter, structure bundled resources, or distribute a skill.
Mandatory Output Structure
Every skill produced must include:
skill-name/
├── SKILL.md (required)
├── README.md (required)
├── references/ (required, even if empty)
├── scripts/ (required, even if empty)
├── assets/ (required, even if empty)
└── skill-name.zip (required — always, no exceptions)
.zip Packaging Rule
skill-name.zip
└── skill-name/
├── SKILL.md
├── README.md
├── references/
├── scripts/
└── assets/
No .DS_Store, __pycache__, .git, or the .zip itself inside the archive. Always nest inside the skill-name folder — never loose files at root.
The .zip must be produced on every skill creation or update. No exceptions.
Input
- User description of the skill's purpose, or an existing skill folder to audit/improve
- Optional: example invocations, desired trigger phrases, target platform(s)
Output
skill-name/SKILL.md— frontmatter + instructionsskill-name/README.md— installation and usageskill-name/references/— supporting documentationskill-name/scripts/— executable code (if needed)skill-name/assets/— templates and output files (if needed)skill-name/skill-name.zip— deployment-ready archive
Creation Process (Summary)
- Capture intent — gather concrete examples of how the skill will be used
- Plan resources — identify what belongs in scripts/, references/, assets/
- Initialize directory —
mkdir -p skill-name/{references,scripts,assets} - Write description — most critical field; must include
MANDATORY TRIGGERS:list; max 1024 chars; third person; slightly "pushy" - Write SKILL.md body — imperative form; point to reference files, don't duplicate them; under 500 lines
- Implement bundled resources — scripts with error handling and execute permissions, references under 10K tokens each
- Write README.md — installation instructions + file listing
- Validate and package — run
scripts/package_skill.pyor manual checklist, then zip - Iterate — fix skill when Claude struggles; do not fix the prompt
Full procedures for each step: references/detail.md.
Progressive Disclosure Architecture
| Tier | Budget | When Loaded |
|---|---|---|
| Metadata (name + description) | ~100 tokens | Always — for skill discovery |
| SKILL.md body | <5,000 tokens | When skill triggers |
| Bundled resources | Unlimited | On demand — agent reads as needed |
Scripts execute without loading into context (zero token cost). Only script output consumes tokens.
Bundled Resources Quick Reference
| Directory | Purpose | Key Rule |
|---|---|---|
scripts/ | Deterministic, repeatable code | chmod +x; include error handling |
references/ | Docs loaded into context on demand | Under 10K tokens per file |
assets/ | Templates and output files | Not read for reasoning — copied into output |
Do not include: standard library docs, credentials, generated/cached files, large datasets, hidden OS files.
Reference Files
| File | Purpose |
|---|---|
references/detail.md | Platform matrix, full creation steps, frontmatter reference, quality checklist, packaging commands, troubleshooting |
references/example-patterns.md | Complete examples of each skill type |
references/workflows.md | Sequential, conditional, and feedback loop patterns |
references/output-patterns.md | Templates, structured data, quality standards |
references/advanced-patterns.md | Multi-model optimization, MCP integration, enterprise deployment |
references/security.md | Security audit checklist, credential management |
references/troubleshooting.md | Debugging strategies and common issue resolution |
references/multi-agent-patterns.md | Sub-agent orchestration, parallel execution |
references/skill-improvement-methodology.md | Systematic audit and improvement process |
Skill Architect v3.0 — April 2026 | agentskills.io open standard
What ships with it: 16 files
188.6 KB alongside SKILL.md, 3 of them executable
assets/
references/
- advanced-patterns.md8.6 KB
- claude-skills-instructions.md3.3 KB
- COMPANION-GUIDE.md46.0 KB
- detail.md13.0 KB
- example-patterns.md5.0 KB
- how-to-make-claude-skills.md7.0 KB
- multi-agent-patterns.md27.7 KB
- output-patterns.md6.8 KB
- security.md6.4 KB
- skill-improvement-methodology.md23.2 KB
- troubleshooting.md8.4 KB
- workflows.md5.0 KB
scripts/
- init_skill.pyruns10.6 KB
- package_skill.pyruns3.2 KB
- quick_validate.pyruns4.1 KB