aiskillforge
v0.1.5
Published
AI toolkit scaffolder for agents, skills, and workflows across Claude, Cursor, Windsurf, Antigravity, Copilot, Kiro, and Codex
Maintainers
Readme
Aiskillforge
Forge better code with AI skills.
Aiskillforge is an npm package that scaffolds a complete .agent toolkit for AI-assisted development across major IDEs.
Install
NPM package: https://www.npmjs.com/package/aiskillforge
npm install -g aiskillforgeOr run directly with npx:
npx aiskillforge init --ai claudeUsage
aiskillforge init --ai claude
aiskillforge init --ai cursor
aiskillforge init --ai windsurf
aiskillforge init --ai antigravity
aiskillforge init --ai copilot
aiskillforge init --ai kiro
aiskillforge init --ai codexHow to Use
- Open your project folder in terminal.
- Initialize Aiskillforge for your AI IDE:
aiskillforge init --ai claude- Open the same project in your IDE.
- Check the generated
.aiskillforge/folder (placed inside the IDE's config folder — e.g..github/.aiskillforge/for Copilot,.cursor/.aiskillforge/for Cursor):agents/for specialist personasskills/for domain knowledge modulesworkflows/for slash-command playbooks
- Start with a workflow in your chat:
/brainstormto explore options before implementation/prdto draft a Product Requirements Document/specifyto write a structured feature spec with user stories/clarifyto reduce ambiguity in a spec before planning/docto create or update project documentation/project-planfor task breakdown and technical planning/tasksto generate a dependency-ordered task list/analyzeto audit consistency across spec, plan, and tasks/checklistto validate requirement quality/enhanceto improve existing code safely/createto build a feature from scratch/implementto execute a plan phase by phase/debugfor root-cause troubleshooting/testto generate and run tests/fullto run end-to-end planning and artifact generation in one flow/pullrequestto assess PR risk, reviewers, and approval/ui-ux-pro-maxfor design-first features
Example First Session
/brainstorm Compare JWT vs session auth for our app
/prd Create PRD for user authentication module
/specify Write feature spec for user registration and login
/clarify Clarify the registration spec requirements
/doc Update README with auth setup and API examples
/project-plan Build user authentication with email + password
/tasks Generate task list for the auth feature
/analyze Check spec, plan, and tasks for consistency
/checklist Validate auth feature spec quality
/enhance Improve existing login form validation
/create Implement login and signup pages
/implement Execute the auth implementation plan
/test auth service and API handlers
/debug login returns 401 on valid credentials
/full run complete planning flow and generate project artifacts
/pullrequest evaluate PR #42 for risk and reviewer assignmentThe command creates:
<ide-folder>/.aiskillforge/agents/<ide-folder>/.aiskillforge/skills/<ide-folder>/.aiskillforge/workflows/<ide-folder>/.aiskillforge/templates/<ide-folder>/.aiskillforge/rules/<ide-folder>/.aiskillforge/mcp_config.json- IDE-specific configuration files based on
--ai - Workflow commands include
/brainstorm,/prd,/specify,/clarify,/doc,/project-plan,/tasks,/analyze,/checklist,/enhance,/create,/implement,/debug,/test,/full,/pullrequest,/ui-ux-pro-max
Folder placement by IDE:
| IDE | Folder |
|-----|--------|
| GitHub Copilot | .github/.aiskillforge/ |
| Cursor | .cursor/.aiskillforge/ |
| Windsurf | .windsurf/.aiskillforge/ |
| Claude | .claude/.aiskillforge/ |
| Kiro, Codex, Antigravity | .aiskillforge/ |
Supported IDEs
- Claude
- Cursor
- Windsurf
- Antigravity
- GitHub Copilot
- Kiro
- Codex
Package Contents
- CLI source in
bin/andlib/ - Reusable scaffold templates in
templates/.agent/ - Starter example in
example-project/
Why It Is Useful In Development
Creates a consistent AI workflow across teams and IDEs
Reduces prompt drift by using reusable agents, skills, and slash-command workflows
Speeds up feature delivery with a structured flow — from idea to running code:
/specify— write a structured feature spec with user stories and acceptance criteriaExample: "Specify user registration with email and password"
/clarify— resolve ambiguities in the spec before any planning or code startsExample: "Clarify the registration spec — what happens on duplicate email?"
/project-plan— break the feature into phases, milestones, and technical decisionsExample: "Project-plan the auth module with JWT and refresh tokens"
/tasks— generate a dependency-ordered, assignable task list from the planExample: "Generate tasks for the auth feature plan"
/implement— execute each plan phase step by step, with code and validationExample: "Implement phase 1 of the auth plan"
Run
/fullto execute this entire flow in one command and generate all project artifacts automatically.Improves quality with built-in debugging, testing, review, and checklist workflows
Works as project scaffolding so every new repo starts with the same AI operating model
License
MIT
