Skip to content

Commit 97e933f

Browse files
authored
Merge pull request #12 from bmad-code-org/feature/convert-agents-to-skills
feat: convert all agents to native skill format
2 parents e6f6439 + d00d6e3 commit 97e933f

107 files changed

Lines changed: 17417 additions & 2853 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/quality.yaml

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ name: Quality & Validation
44
# - Prettier (formatting)
55
# - ESLint (linting)
66
# - markdownlint (markdown quality)
7-
# - Schema validation (YAML structure)
8-
# - Agent schema tests (fixture-based validation)
9-
# - Installation component tests (compilation)
10-
# - Bundle validation (web bundle integrity)
117

128
"on":
139
pull_request:
@@ -68,27 +64,3 @@ jobs:
6864

6965
- name: markdownlint
7066
run: npm run lint:md
71-
72-
validate:
73-
runs-on: ubuntu-latest
74-
steps:
75-
- name: Checkout
76-
uses: actions/checkout@v4
77-
78-
- name: Setup Node
79-
uses: actions/setup-node@v4
80-
with:
81-
node-version-file: ".nvmrc"
82-
cache: "npm"
83-
84-
- name: Install dependencies
85-
run: npm ci
86-
87-
- name: Validate YAML schemas
88-
run: npm run validate:schemas
89-
90-
- name: Run agent schema validation tests
91-
run: npm run test:schemas
92-
93-
- name: Test agent compilation components
94-
run: npm run test:install

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ pnpm-lock.yaml
44
bun.lock
55
deno.lock
66
pnpm-workspace.yaml
7-
package-lock.json
87

98
test-output/*
109
coverage/

docs/reference/agents.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,12 @@ Load any agent directly for conversation without triggering a workflow:
166166

167167
| Command | Agent |
168168
| ------- | ----- |
169-
| `/cis-agent-brainstorming-coach` | Carson |
170-
| `/cis-agent-design-thinking-coach` | Maya |
171-
| `/cis-agent-innovation-strategist` | Victor |
172-
| `/cis-agent-creative-problem-solver` | Dr. Quinn |
173-
| `/cis-agent-storyteller` | Sophia |
174-
| `/cis-agent-presentation-master` | Caravaggio |
169+
| `/bmad-cis-agent-brainstorming-coach` | Carson |
170+
| `/bmad-cis-agent-design-thinking-coach` | Maya |
171+
| `/bmad-cis-agent-innovation-strategist` | Victor |
172+
| `/bmad-cis-agent-creative-problem-solver` | Dr. Quinn |
173+
| `/bmad-cis-agent-storyteller` | Sophia |
174+
| `/bmad-cis-agent-presentation-master` | Caravaggio |
175175

176176
## Communication Styles
177177

docs/reference/workflows.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Technical reference for all CIS workflows including inputs, outputs, and invocat
2929
workflow brainstorming --data /path/to/context.md
3030

3131
# Via agent
32-
/cis-agent-brainstorming-coach
32+
/bmad-cis-agent-brainstorming-coach
3333
> brainstorm
3434
```
3535

@@ -81,7 +81,7 @@ Carson has access to 36 techniques across 7 categories stored in `brainstorming-
8181
workflow design-thinking --data /path/to/user-research.md
8282

8383
# Via agent
84-
/cis-agent-design-thinking-coach
84+
/bmad-cis-agent-design-thinking-coach
8585
> design-thinking
8686
```
8787

@@ -125,7 +125,7 @@ Maya has access to phase-specific design methods in `design-methods.csv`.
125125
workflow innovation-strategy --data /path/to/market-analysis.md
126126

127127
# Via agent
128-
/cis-agent-innovation-strategist
128+
/bmad-cis-agent-innovation-strategist
129129
> innovation-strategy
130130
```
131131

@@ -174,7 +174,7 @@ Victor has access to strategic frameworks in `innovation-frameworks.csv`:
174174
workflow problem-solving --data /path/to/problem-brief.md
175175

176176
# Via agent
177-
/cis-agent-creative-problem-solver
177+
/bmad-cis-agent-creative-problem-solver
178178
> problem-solving
179179
```
180180

@@ -224,7 +224,7 @@ Dr. Quinn has access to analytical frameworks in `solving-methods.csv`:
224224
workflow storytelling --data /path/to/brand-info.md
225225

226226
# Via agent
227-
/cis-agent-storyteller
227+
/bmad-cis-agent-storyteller
228228
> story
229229
```
230230

0 commit comments

Comments
 (0)