원클릭으로
skill-name-here
A meta-skill for automatically generating new structured Claude Skills from technical documentation.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
A meta-skill for automatically generating new structured Claude Skills from technical documentation.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
This skill should be used when users need to work with Expo SDK and Expo Router for building React Native applications. It provides comprehensive guidance on navigation patterns, media handling (camera, image, video, audio), data storage (SQLite, filesystem, SecureStore), authentication, device features (location, notifications, biometrics), and third-party integrations (Stripe, linking, sharing).
This skill should be used when users need to work with TanStack DB for building reactive data layers in applications. It provides comprehensive guidance on collections, live queries, mutations, schema validation, error handling, and various integrations including LocalStorage and ElectricSQL.
This skill should be used when users need to work with Expo UI (@expo/ui) for integrating SwiftUI components into React Native applications. It provides comprehensive guidance on installation, Host component, SwiftUI primitives, layouts, modifiers, native tabs navigation, and v10 preview features.
This skill should be used when users need to work with the Vercel AI SDK for building AI-powered applications. It provides comprehensive guidance on core APIs (generateText, streamText), UI components (useChat, useCompletion), tool calling, structured data generation, provider management, streaming protocols, and advanced features like middleware and custom providers.
| name | Meta-Skill Creator |
| description | A meta-skill for automatically generating new structured Claude Skills from technical documentation. |
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.
temp-skills/temp-jsons to store the generated all-analyses.json and meta-blueprint.json.md original documentation files, use cp to copy to temp-skills/references directoryall-analyses.json (summary JSON including summary, toc, key_apis, etc.)mv to rename the temporary directory temp-skills/ to: [new-skill-name]/ (using the user's final confirmed skill name)all-analyses.json summary to the usermeta-blueprint.json (blueprint JSON)meta-blueprint.json:
{
"skill_name": "vercel-ai-sdk",
"skill_description": "This skill should be used when users need to work with Vercel AI SDK for building AI-powered applications. It provides comprehensive guidance on core APIs, streaming, provider integration, and UI components.",
"output_directory": "skills/vercel-ai-sdk/",
"modules": {
"core": { "source_docs": ["core.md"] },
"ui": { "source_docs": ["ui.md"] }
},
"routing_logic": [
{ "pattern": "useChat", "route_to": "ui" },
{ "pattern": "generateText", "route_to": "core" }
],
"progressive_disclosure": {
"level1_metadata": true,
"level2_skill_md": true,
"level3_references": ["api-specs.md", "examples.md"]
}
}
meta-blueprint.json, all-analyses.json and original_docsskills/[skill-name]/
├── SKILL.md
└── references/
[skill-name]/ directory:
scripts/ or assets/ directories when needed and with explicit user consentreferences/, do not regenerate content, save context---
name: skill-name-here
description: This skill should be used when [specific scenario]. It provides [key functionality] for [user goal].
---
---
name: [skill-name-here]
description: This skill should be used when [specific scenario]. It provides [key functionality] for [user goal].
---
# [Skill Name]
## Core Functionality
[2-3 sentences summarizing the main functionality provided by the skill]
## When to Use
[Reuse content from description, maintain consistency]
## Workflow
1. [First step specific operation]
2. [Second step specific operation]
3. [When to reference original documents in references/]
## Resource References
- For detailed documentation: `references/[original-doc-name].md`
- Guide users to read original documents for detailed information, avoid regenerating content
[skill-name]/cp