Meta-Skill Creator
Installation
SKILL.md
General Description
This skill is the main orchestrator (Architect) and the user's sole interaction point. Responsible for the entire document-to-skill automation workflow. Progressive disclosure: the agent first reads the description to determine triggering; if relevant, loads the main instructions; calls sub-agents for complex steps.
Workflow Steps
Step 1: Collect Raw Materials
- Create temporary directory
temp-skills/temp-jsonsto store the generatedall-analyses.jsonandmeta-blueprint.json - Based on user-provided documentation directory (e.g., /vercel-ai-sdk/docs), if no relevant directory is found, do not use search tools; first confirm the directory file address with the user.
- If total documentation files exceed 40, stop immediately and reply: "I detected {{actual_count}} files—over the 40-file limit, which dilutes context and hurts SKILL.md quality. Please split into smaller batches (≤15 files each);
- Collect all
.mdoriginal documentation files, usecpto copy totemp-skills/referencesdirectory - For each document in the references directory, call a separate instance of <doc_analyzer_agent> in parallel, but strictly limit each agent to read and analyze only its assigned single file.
- Generate
all-analyses.json(summary JSON including summary, toc, key_apis, etc.) - Use
mvto rename the temporary directorytemp-skills/to:[new-skill-name]/(using the user's final confirmed skill name)