assimilate-popular-wor…
This skill should be used when the user asks to "find skills in the wild", "assimilate popular workflows", "discover SKILL.md files in repos", "research…
Scaffolds MCP App project structure with correct directory layout, dependencies, entry points, and framework-specific templates. Handles React (useApp hook), Vanilla JS, Vue, Svelte, Preact, and Solid.
$ npx -y skills add a5c-ai/babysitter --skill mcp-app-scaffolding --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/mcp-app-scaffoldingContext preview
The summary Claude sees to decide when to auto-load this skill.
Scaffolds MCP App project structure with correct directory layout, dependencies, entry points, and framework-specific templates. Handles React (useApp hook), Vanilla JS, Vue, Svelte, Preact, and Solid.
name: mcp-app-scaffolding description: Scaffolds MCP App project structure with correct directory layout, dependencies, entry points, and framework-specific templates. Handles React (useApp hook), Vanilla JS, Vue, Svelte, Preact, and Solid. allowed-tools: Read, Write, Edit, Bash, Glob, Grep graph: domains: [domain:software-engineering] specializations: [specialization:ai-agents-conversational] skillAreas: [skill-area:mcp-server-implementation, skill-area:mcp-tool-design] roles: [role:backend-engineer, role:fullstack-engineer] workflows: [workflow:feature-development] topics: [topic:api-design, topic:design-patterns]
Scaffold MCP App projects from scratch with correct structure, dependencies, and framework-specific templates following the reference-code-first methodology.
MCP Apps are interactive UIs that render inline in MCP-enabled hosts (Claude Desktop, ChatGPT, VS Code, Goose, Postman). Every MCP App requires:
This skill handles the initial project scaffolding: cloning the SDK reference code, selecting a framework, generating the directory structure, and creating all entry points.
# Clone SDK at the exact version published to npm git clone --branch "v$(npm view @modelcontextprotocol/ext-apps version)" \ --depth 1 https://github.com/modelcontextprotocol/ext-apps.git /tmp/mcp-ext-apps
**Key reference locations:** | Path | Content | |------|---------| | `/tmp/mcp-ext-apps/examples/basic-server-react/` | React template | | `/tmp/mcp-ext-apps/examples/basic-server-vanillajs/` | Vanilla JS template | | `/tmp/mcp-ext-apps/examples/basic-server-vue/` | Vue template | | `/tmp/mcp-ext-apps/examples/basic-server-svelte/` | Svelte template | | `/tmp/mcp-ext-apps/examples/basic-server-preact/` | Preact template | | `/tmp/mcp-ext-apps/examples/basic-server-solid/` | Solid template | | `/tmp/mcp-ext-apps/src/app.ts` | App class API | | `/tmp/mcp-ext-apps/src/server/index.ts` | Server registration helpers | | `/tmp/mcp-ext-apps/src/react/useApp.tsx` | React useApp hook | | `/tmp/mcp-ext-apps/src/styles.ts` | Host styling helpers | | `/tmp/mcp-ext-apps/docs/patterns.md` | Advanced patterns | | `/tmp/mcp-ext-apps/examples/basic-host/` | Test host |
Is the team familiar with React?
YES -> Use React with useApp hook (SDK-provided, first-class)
NO -> Is this a simple app with minimal UI?
YES -> Use Vanilla JS with manual lifecycle
NO -> Use team's preferred framework (Vue/Svelte/Preact/Solid)
with manual App lifecycle managementmkdir my-mcp-app && cd my-mcp-app npm init -y # Core dependencies npm install @modelcontextprotocol/ext-apps @modelcontextprotocol/sdk zod # Dev dependencies npm install -D typescript vite vite-plugin-singlefile tsx concurrently @types/node # React-specific (if using React) npm install react react-dom npm install -D @types/react @types/react-dom
my-mcp-app/ ├── src/ │ ├── server.ts # MCP server with registerAppTool + registerAppResource │ ├── main.ts # Client UI entry (or main.tsx for React) │ └── global.css # Styles with host CSS variable fallbacks ├── mcp-app.html # HTML entry point for Vite (or mcp-app.tsx for React) ├── vite.config.ts # Vite + vite-plugin-singlefile ├── tsconfig.json # TypeScript configuration ├── package.json # Scripts: build:ui, build:server, build, dev └── .gitignore # dist/, node_modules/, /tmp/
{
"scripts": {
"build:ui": "vite build",
"build:server": "tsc --project tsconfig.server.json",
"build": "npm run build:ui && npm run build:server",
"dev": "concurrently \"vite\" \"tsx watch src/server.ts\"",
"serve": "tsx src/server.ts"
}
}{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"outDir": "dist",
"rootDir": "src"
},
"include": ["src/**/*.ts", "src/**/*.tsx"],
"exclude": ["node_modules", "dist"]
}Enforce obedience on agentic workforces. Manage extremely complex workflows through deterministic, hallucination-free self-orchestration.
Repo: a5c-ai/babysitter
This skill should be used when the user asks to "find skills in the wild", "assimilate popular workflows", "discover SKILL.md files in repos", "research…
This skill should be used when the user asks to "babysit issues", "work on assigned issues", "check a5c-agent issues", "process babysitter issues", or wants to…
Discover public GitHub repositories that import defineTask from @a5c-ai/babysitter-sdk and maintain a deduplicated catalog of those repositories in…
This skill should be used when the user asks to "fix pipelines", "fix CI", "check staging pipelines", "fix failing workflows", "fix failing actions", or wants…
Scaffold new babysitter process definitions following SDK patterns, proper structure, and best practices. Guides the 3-phase workflow from research to…
For a repository in the babysitter-users catalog, locate its babysitter processes and any committed runs (.a5c/runs/<runId>/) and perform a retrospective on a…