SC
scaffolding
Capability to generate project structures using Yeoman.
Install
mkdir -p .claude/skills/scaffolding && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/14222" && unzip -o skill.zip -d .claude/skills/scaffolding && rm skill.zipInstalls to .claude/skills/scaffolding
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Capability to generate project structures using Yeoman.55 charsno explicit “when” trigger
About this skill
Scaffolding Skill
This skill allows agents (typically devops-agent) to generate project structures using Yeoman generators.
Capabilities
- Generate Module: Create a new Agentic Module with standard structure (View, Backend, Index).
Usage
The scaffolding generator is located at:
src/cli/scaffolding/generators/module
To scaffold a new module, use the run_command tool:
{
"CommandLine": "npx yo ./src/cli/scaffolding/generators/module <module-name> --force",
"Cwd": "/path/to/workspace",
"SafeToAutoRun": false,
"WaitMsBeforeAsync": 5000
}
Structure
src/cli/scaffolding/generators/module: Yeoman generator for creating a new module.index.js: Generator logic.templates/: Boilerplate files.