Agent Skill
2/7/2026

skill-creator

Creates SKILL.md files from specifications. Use when user asks to "create a skill", "build a skill", "make a reusable procedure", or "generate skill for [domain]". Produces folder structure, frontmatter, numbered steps, error handling, and validation checks.

A
awieczork
0GitHub Stars
1Views
npx skills add awieczork/vscode-agentic-workflow

SKILL.md

Nameskill-creator
DescriptionCreates SKILL.md files from specifications. Use when user asks to "create a skill", "build a skill", "make a reusable procedure", or "generate skill for [domain]". Produces folder structure, frontmatter, numbered steps, error handling, and validation checks.

Brain-Spoke-Flow

Brain orchestrator + 5 specialist agents, hub-and-spoke architecture, structured development lifecycle — from interview to committed code.

<p align="center"> <img src="docs/assets/hub-spoke.png" alt="Hub-and-spoke architecture — Brain orchestrator delegates to five specialist subagents" width="500" /> </p>

Brain decomposes requests and delegates. Researcher gathers evidence. Planner builds phased plans. Developer implements. Inspector verifies. Curator maintains the workspace. Context flows down only — agents never talk to each other.


Quick Start

git clone https://github.com/awieczork/brain-spoke-flow.git
cd brain-spoke-flow
python setup/bootstrap.py     # creates runtime directories

Open VS Code → Copilot Chat → @brain → describe your task. Brain interviews you, then drives the workflow.

Reset sessions: python setup/reset-sessions.py (--check for dry-run)

Requirements


How It Works

Every request flows through a phased lifecycle scaled to complexity:

ScalePhasesSessions
Quick fixInterview → Development1
Focused taskInterview → Research → Planning → Development → Testing → Review → Curation1
FeatureInterview → Research → Planning → child Focused tasksMulti
ProjectInterview → Research → child FeaturesMulti

3 approval gates where you confirm before proceeding: after Interview, after Planning, after Review.


Project Structure

.github/
├── copilot-instructions.md     # Always-on project identity
├── agents/core/                # Brain + 5 subagent definitions
├── contracts/                  # Delegation & return schemas, session spec
├── hooks/                      # 8 deterministic lifecycle hooks (Python)
├── instructions/               # Convention enforcement (glob-scoped)
├── skills/core/                # Creator skills for authoring artifacts
└── prompts/                    # Reusable task templates

docs/                           # Human docs, diagrams, rendered PNGs
setup/                          # bootstrap.py, reset-sessions.py

Runtime data (.github/.sessions/, output/) is gitignored and created by bootstrap.py.


Extending

Add domain-specific artifacts — the framework stays untouched:

ArtifactLocationScaffolding skill
Domain agentsagents/domain/{name}.agent.mdagent-creator
Domain skillsskills/domain/{name}/SKILL.mdskill-creator
Instructionsinstructions/{name}.instructions.mdinstruction-creator
Promptsprompts/{name}.prompt.md

Docs

ARCHITECTURE.mdFull system specification
docs/workflow-lifecycle.mdPhase-by-phase lifecycle reference
docs/showcase.mdCapabilities overview
.github/hooks/scripts/HOOKS.mdHook technical reference
Skills Info
Original Name:skill-creatorAuthor:awieczork