Agent skill
project-scaffold
Stars
1
Forks
0
Install this agent skill to your Project
npx add-skill https://github.com/abdullah1854/ClaudeSuperSkills/tree/main/project-scaffold
SKILL.md
project-scaffold
Generates project structure templates for Next.js, Express, and FastAPI applications.
Metadata
- Version: 1.0.0
- Category: devops
- Source: workspace
Tags
scaffold, project, template
MCP Dependencies
None specified
Inputs
framework(string) (required): Framework: nextjs, express, fastapi
Workflow
No workflow defined
Anti-Hallucination Rules
None specified
Verification Checklist
None specified
Usage
typescript
// Execute via MCP Gateway:
gateway_execute_skill({ name: "project-scaffold", inputs: { ... } })
// Or via REST API:
// POST /api/code/skills/project-scaffold/execute
// Body: { "inputs": { ... } }
Code
typescript
const { framework } = inputs;
const structures = {
nextjs: `nextjs-app/
├── src/
│ ├── app/
│ │ ├── layout.tsx
│ │ ├── page.tsx
│ │ └── globals.css
│ ├── components/
│ └── lib/
├── public/
├── package.json
├── tsconfig.json
├── next.config.js
└── .gitignore`,
express: `express-api/
├── src/
│ ├── routes/
│ ├── middleware/
│ ├── services/
│ ├── types/
│ └── index.ts
├── package.json
├── tsconfig.json
├── .env.example
└── .gitignore`,
fastapi: `fastapi-app/
├── app/
│ ├── api/
│ ├── models/
│ ├── services/
│ ├── __init__.py
│ └── main.py
├── tests/
├── requirements.txt
├── pyproject.toml
└── .gitignore`
};
console.log(`# ${framework} Project Structure\n\n\`\`\`\n${structures[framework] || structures.nextjs}\n\`\`\``);
Created: Mon Dec 22 2025 10:37:26 GMT+0800 (Singapore Standard Time) Updated: Mon Dec 22 2025 10:37:26 GMT+0800 (Singapore Standard Time)
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
dockerfile-generator
1
0
Explore
tool-design
1
0
Explore
ax-dynamics-helper
1
0
Explore
pr-summary
1
0
Explore
memory-systems
1
0
Explore
hooks-guide
1
0
Explore
Didn't find tool you were looking for?