@codemcp/workflows 6.0.1 → 6.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -2
- package/packages/cli/package.json +1 -1
- package/packages/cli/resources/agents/architect.yaml +61 -0
- package/packages/cli/resources/agents/business-analyst.yaml +60 -0
- package/packages/cli/resources/agents/developer.yaml +61 -0
- package/packages/cli/resources/templates/architecture/arc42/arc42-template-EN.md +1077 -0
- package/packages/cli/resources/templates/architecture/arc42/images/01_2_iso-25010-topics-EN.drawio-2023.png +0 -0
- package/packages/cli/resources/templates/architecture/arc42/images/01_2_iso-25010-topics-EN.drawio.png +0 -0
- package/packages/cli/resources/templates/architecture/arc42/images/05_building_blocks-EN.png +0 -0
- package/packages/cli/resources/templates/architecture/arc42/images/08-concepts-EN.drawio.png +0 -0
- package/packages/cli/resources/templates/architecture/arc42/images/arc42-logo.png +0 -0
- package/packages/cli/resources/templates/architecture/c4.md +224 -0
- package/packages/cli/resources/templates/architecture/freestyle.md +53 -0
- package/packages/cli/resources/templates/architecture/game.md +250 -0
- package/packages/cli/resources/templates/architecture/none.md +17 -0
- package/packages/cli/resources/templates/design/comprehensive.md +207 -0
- package/packages/cli/resources/templates/design/freestyle.md +37 -0
- package/packages/cli/resources/templates/design/game.md +66 -0
- package/packages/cli/resources/templates/design/none.md +17 -0
- package/packages/cli/resources/templates/requirements/ears.md +90 -0
- package/packages/cli/resources/templates/requirements/freestyle.md +42 -0
- package/packages/cli/resources/templates/requirements/game.md +162 -0
- package/packages/cli/resources/templates/requirements/none.md +17 -0
- package/packages/cli/resources/templates/skills/POWER.md +23 -0
- package/packages/cli/resources/templates/skills/SKILL.md +19 -0
- package/packages/cli/resources/workflows/adr.yaml +157 -0
- package/packages/cli/resources/workflows/big-bang-conversion.yaml +592 -0
- package/packages/cli/resources/workflows/boundary-testing.yaml +376 -0
- package/packages/cli/resources/workflows/bugfix.yaml +177 -0
- package/packages/cli/resources/workflows/business-analysis.yaml +597 -0
- package/packages/cli/resources/workflows/c4-analysis.yaml +471 -0
- package/packages/cli/resources/workflows/epcc.yaml +183 -0
- package/packages/cli/resources/workflows/game-beginner.yaml +434 -0
- package/packages/cli/resources/workflows/greenfield.yaml +201 -0
- package/packages/cli/resources/workflows/minor.yaml +138 -0
- package/packages/cli/resources/workflows/posts.yaml +193 -0
- package/packages/cli/resources/workflows/sdd-bugfix-crowd.yaml +608 -0
- package/packages/cli/resources/workflows/sdd-bugfix.yaml +381 -0
- package/packages/cli/resources/workflows/sdd-feature-crowd.yaml +713 -0
- package/packages/cli/resources/workflows/sdd-feature.yaml +471 -0
- package/packages/cli/resources/workflows/sdd-greenfield-crowd.yaml +336 -0
- package/packages/cli/resources/workflows/sdd-greenfield.yaml +463 -0
- package/packages/cli/resources/workflows/slides.yaml +237 -0
- package/packages/cli/resources/workflows/tdd.yaml +160 -0
- package/packages/cli/resources/workflows/waterfall.yaml +209 -0
- package/packages/core/package.json +1 -1
- package/packages/core/resources/agents/architect.yaml +61 -0
- package/packages/core/resources/agents/business-analyst.yaml +60 -0
- package/packages/core/resources/agents/developer.yaml +61 -0
- package/packages/core/resources/templates/architecture/arc42/arc42-template-EN.md +1077 -0
- package/packages/core/resources/templates/architecture/arc42/images/01_2_iso-25010-topics-EN.drawio-2023.png +0 -0
- package/packages/core/resources/templates/architecture/arc42/images/01_2_iso-25010-topics-EN.drawio.png +0 -0
- package/packages/core/resources/templates/architecture/arc42/images/05_building_blocks-EN.png +0 -0
- package/packages/core/resources/templates/architecture/arc42/images/08-concepts-EN.drawio.png +0 -0
- package/packages/core/resources/templates/architecture/arc42/images/arc42-logo.png +0 -0
- package/packages/core/resources/templates/architecture/c4.md +224 -0
- package/packages/core/resources/templates/architecture/freestyle.md +53 -0
- package/packages/core/resources/templates/architecture/game.md +250 -0
- package/packages/core/resources/templates/architecture/none.md +17 -0
- package/packages/core/resources/templates/design/comprehensive.md +207 -0
- package/packages/core/resources/templates/design/freestyle.md +37 -0
- package/packages/core/resources/templates/design/game.md +66 -0
- package/packages/core/resources/templates/design/none.md +17 -0
- package/packages/core/resources/templates/requirements/ears.md +90 -0
- package/packages/core/resources/templates/requirements/freestyle.md +42 -0
- package/packages/core/resources/templates/requirements/game.md +162 -0
- package/packages/core/resources/templates/requirements/none.md +17 -0
- package/packages/core/resources/templates/skills/POWER.md +23 -0
- package/packages/core/resources/templates/skills/SKILL.md +19 -0
- package/packages/core/resources/workflows/adr.yaml +157 -0
- package/packages/core/resources/workflows/big-bang-conversion.yaml +592 -0
- package/packages/core/resources/workflows/boundary-testing.yaml +376 -0
- package/packages/core/resources/workflows/bugfix.yaml +177 -0
- package/packages/core/resources/workflows/business-analysis.yaml +597 -0
- package/packages/core/resources/workflows/c4-analysis.yaml +471 -0
- package/packages/core/resources/workflows/epcc.yaml +183 -0
- package/packages/core/resources/workflows/game-beginner.yaml +434 -0
- package/packages/core/resources/workflows/greenfield.yaml +201 -0
- package/packages/core/resources/workflows/minor.yaml +138 -0
- package/packages/core/resources/workflows/posts.yaml +193 -0
- package/packages/core/resources/workflows/sdd-bugfix-crowd.yaml +608 -0
- package/packages/core/resources/workflows/sdd-bugfix.yaml +381 -0
- package/packages/core/resources/workflows/sdd-feature-crowd.yaml +713 -0
- package/packages/core/resources/workflows/sdd-feature.yaml +471 -0
- package/packages/core/resources/workflows/sdd-greenfield-crowd.yaml +336 -0
- package/packages/core/resources/workflows/sdd-greenfield.yaml +463 -0
- package/packages/core/resources/workflows/slides.yaml +237 -0
- package/packages/core/resources/workflows/tdd.yaml +160 -0
- package/packages/core/resources/workflows/waterfall.yaml +209 -0
- package/packages/docs/package.json +1 -1
- package/packages/mcp-server/package.json +1 -1
- package/packages/mcp-server/resources/agents/architect.yaml +61 -0
- package/packages/mcp-server/resources/agents/business-analyst.yaml +60 -0
- package/packages/mcp-server/resources/agents/developer.yaml +61 -0
- package/packages/mcp-server/resources/templates/architecture/arc42/arc42-template-EN.md +1077 -0
- package/packages/mcp-server/resources/templates/architecture/arc42/images/01_2_iso-25010-topics-EN.drawio-2023.png +0 -0
- package/packages/mcp-server/resources/templates/architecture/arc42/images/01_2_iso-25010-topics-EN.drawio.png +0 -0
- package/packages/mcp-server/resources/templates/architecture/arc42/images/05_building_blocks-EN.png +0 -0
- package/packages/mcp-server/resources/templates/architecture/arc42/images/08-concepts-EN.drawio.png +0 -0
- package/packages/mcp-server/resources/templates/architecture/arc42/images/arc42-logo.png +0 -0
- package/packages/mcp-server/resources/templates/architecture/c4.md +224 -0
- package/packages/mcp-server/resources/templates/architecture/freestyle.md +53 -0
- package/packages/mcp-server/resources/templates/architecture/game.md +250 -0
- package/packages/mcp-server/resources/templates/architecture/none.md +17 -0
- package/packages/mcp-server/resources/templates/design/comprehensive.md +207 -0
- package/packages/mcp-server/resources/templates/design/freestyle.md +37 -0
- package/packages/mcp-server/resources/templates/design/game.md +66 -0
- package/packages/mcp-server/resources/templates/design/none.md +17 -0
- package/packages/mcp-server/resources/templates/requirements/ears.md +90 -0
- package/packages/mcp-server/resources/templates/requirements/freestyle.md +42 -0
- package/packages/mcp-server/resources/templates/requirements/game.md +162 -0
- package/packages/mcp-server/resources/templates/requirements/none.md +17 -0
- package/packages/mcp-server/resources/templates/skills/POWER.md +23 -0
- package/packages/mcp-server/resources/templates/skills/SKILL.md +19 -0
- package/packages/mcp-server/resources/workflows/adr.yaml +157 -0
- package/packages/mcp-server/resources/workflows/big-bang-conversion.yaml +592 -0
- package/packages/mcp-server/resources/workflows/boundary-testing.yaml +376 -0
- package/packages/mcp-server/resources/workflows/bugfix.yaml +177 -0
- package/packages/mcp-server/resources/workflows/business-analysis.yaml +597 -0
- package/packages/mcp-server/resources/workflows/c4-analysis.yaml +471 -0
- package/packages/mcp-server/resources/workflows/epcc.yaml +183 -0
- package/packages/mcp-server/resources/workflows/game-beginner.yaml +434 -0
- package/packages/mcp-server/resources/workflows/greenfield.yaml +201 -0
- package/packages/mcp-server/resources/workflows/minor.yaml +138 -0
- package/packages/mcp-server/resources/workflows/posts.yaml +193 -0
- package/packages/mcp-server/resources/workflows/sdd-bugfix-crowd.yaml +608 -0
- package/packages/mcp-server/resources/workflows/sdd-bugfix.yaml +381 -0
- package/packages/mcp-server/resources/workflows/sdd-feature-crowd.yaml +713 -0
- package/packages/mcp-server/resources/workflows/sdd-feature.yaml +471 -0
- package/packages/mcp-server/resources/workflows/sdd-greenfield-crowd.yaml +336 -0
- package/packages/mcp-server/resources/workflows/sdd-greenfield.yaml +463 -0
- package/packages/mcp-server/resources/workflows/slides.yaml +237 -0
- package/packages/mcp-server/resources/workflows/tdd.yaml +160 -0
- package/packages/mcp-server/resources/workflows/waterfall.yaml +209 -0
- package/packages/visualizer/package.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codemcp/workflows",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.2",
|
|
4
4
|
"description": "A Model Context Protocol server that acts as an intelligent conversation state manager and development guide for LLMs, featuring comprehensive long-term memory with persistent project artifacts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "packages/cli/dist/index.js",
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"files": [
|
|
18
18
|
"packages/*/dist/**/*",
|
|
19
19
|
"packages/*/package.json",
|
|
20
|
+
"packages/*/resources/**/*",
|
|
20
21
|
"packages/docs/.vitepress/dist/**/*",
|
|
21
22
|
"resources/**/*",
|
|
22
23
|
"README.md",
|
|
@@ -50,7 +51,7 @@
|
|
|
50
51
|
"typescript": "^5.9.3",
|
|
51
52
|
"vitepress": "^1.6.4",
|
|
52
53
|
"vitest": "4.0.18",
|
|
53
|
-
"@codemcp/workflows-core": "6.0.
|
|
54
|
+
"@codemcp/workflows-core": "6.0.2"
|
|
54
55
|
},
|
|
55
56
|
"lint-staged": {
|
|
56
57
|
"*.{ts,js,mts,cts,tsx,jsx}": [
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
name: architect
|
|
2
|
+
displayName: Software Architect
|
|
3
|
+
systemPrompt: |
|
|
4
|
+
You are working as an architect in a collaborative software development team.
|
|
5
|
+
|
|
6
|
+
Your team consists of:
|
|
7
|
+
- Business Analyst: Requirements and specifications
|
|
8
|
+
- Architect (you): System design and planning
|
|
9
|
+
- Developer: Implementation
|
|
10
|
+
|
|
11
|
+
## How Collaboration Works
|
|
12
|
+
|
|
13
|
+
You follow structured workflows that guide you through development phases. In each phase:
|
|
14
|
+
- You may be RESPONSIBLE (driving the work), CONSULTED (available for questions), or INFORMED (monitoring progress)
|
|
15
|
+
- The workflow instructions will tell you your role and what to do
|
|
16
|
+
|
|
17
|
+
## Available Tools
|
|
18
|
+
|
|
19
|
+
**Workflow Navigation (responsible-vibe-mcp):**
|
|
20
|
+
- `whats_next()`: Call this after EVERY user message to get phase-specific guidance
|
|
21
|
+
- `proceed_to_phase()`: Move to the next phase when your work is complete (only when responsible)
|
|
22
|
+
|
|
23
|
+
**Team Communication (crowd-mcp):**
|
|
24
|
+
- `send_message_to_operator(content)`: Report to the human operator (completion, questions, blockers)
|
|
25
|
+
- `send_message(to, content)`: Send message to another agent (business-analyst or developer)
|
|
26
|
+
- `get_my_messages()`: Check for messages from other team members
|
|
27
|
+
- `discover_agents()`: See which team members are active
|
|
28
|
+
|
|
29
|
+
## Important Rules
|
|
30
|
+
|
|
31
|
+
1. **Always call `whats_next()` after each user message** to stay on track
|
|
32
|
+
2. **Follow your role**: Only edit plan files and proceed when you're RESPONSIBLE. Always mention your name as author after each line you modify.
|
|
33
|
+
3. **Communicate proactively**: Use `send_message` to collaborate with team members
|
|
34
|
+
4. **Keep operator informed**: Use `send_message_to_operator` for status updates
|
|
35
|
+
5. **Respond to messages**: Monitor `get_my_messages()` and respond when consulted
|
|
36
|
+
|
|
37
|
+
The workflow will provide detailed instructions for each phase. Trust the workflow and use your tools effectively.
|
|
38
|
+
|
|
39
|
+
preferredModels:
|
|
40
|
+
- claude-sonnet-4.5-20250929
|
|
41
|
+
- claude-sonnet-3.7-20250219
|
|
42
|
+
|
|
43
|
+
llmSettings:
|
|
44
|
+
temperature: 0.3
|
|
45
|
+
reasoningEffort: medium
|
|
46
|
+
|
|
47
|
+
mcpServers:
|
|
48
|
+
workflows:
|
|
49
|
+
type: stdio
|
|
50
|
+
command: npx
|
|
51
|
+
args:
|
|
52
|
+
- '@codemcp/workflows-server@latest'
|
|
53
|
+
env:
|
|
54
|
+
VIBE_ROLE: architect
|
|
55
|
+
VIBE_WORKFLOW_DOMAINS: sdd-crowd
|
|
56
|
+
|
|
57
|
+
capabilities:
|
|
58
|
+
- system-design
|
|
59
|
+
- api-design
|
|
60
|
+
- architecture-documentation
|
|
61
|
+
- technical-planning
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
name: business-analyst
|
|
2
|
+
displayName: Business Analyst
|
|
3
|
+
systemPrompt: |
|
|
4
|
+
You are working as a business-analyst in a collaborative software development team.
|
|
5
|
+
|
|
6
|
+
Your team consists of:
|
|
7
|
+
- Business Analyst (you): Requirements and specifications
|
|
8
|
+
- Architect: System design and planning
|
|
9
|
+
- Developer: Implementation
|
|
10
|
+
|
|
11
|
+
## How Collaboration Works
|
|
12
|
+
|
|
13
|
+
You follow structured workflows that guide you through development phases. In each phase:
|
|
14
|
+
- You may be RESPONSIBLE (driving the work), CONSULTED (available for questions), or INFORMED (monitoring progress)
|
|
15
|
+
- The workflow instructions will tell you your role and what to do
|
|
16
|
+
|
|
17
|
+
## Available Tools
|
|
18
|
+
|
|
19
|
+
**Workflow Navigation (responsible-vibe-mcp):**
|
|
20
|
+
- `whats_next()`: Call this after EVERY user message to get phase-specific guidance
|
|
21
|
+
- `proceed_to_phase()`: Move to the next phase when your work is complete (only when responsible)
|
|
22
|
+
|
|
23
|
+
**Team Communication (crowd-mcp):**
|
|
24
|
+
- `send_message_to_operator(content)`: Report to the human operator (completion, questions, blockers)
|
|
25
|
+
- `send_message(to, content)`: Send message to another agent (architect or developer)
|
|
26
|
+
- `get_my_messages()`: Check for messages from other team members
|
|
27
|
+
- `discover_agents()`: See which team members are active
|
|
28
|
+
|
|
29
|
+
## Important Rules
|
|
30
|
+
|
|
31
|
+
1. **Always call `whats_next()` after each user message** to stay on track
|
|
32
|
+
2. **Follow your role**: Only edit plan files and proceed when you're RESPONSIBLE. Always mention your name as author after each line you modify.
|
|
33
|
+
3. **Communicate proactively**: Use `send_message` to collaborate with team members
|
|
34
|
+
4. **Keep operator informed**: Use `send_message_to_operator` for status updates
|
|
35
|
+
5. **Respond to messages**: Monitor `get_my_messages()` and respond when consulted
|
|
36
|
+
|
|
37
|
+
The workflow will provide detailed instructions for each phase. Trust the workflow and use your tools effectively.
|
|
38
|
+
|
|
39
|
+
preferredModels:
|
|
40
|
+
- claude-sonnet-4.5-20250929
|
|
41
|
+
- claude-sonnet-3.7-20250219
|
|
42
|
+
|
|
43
|
+
llmSettings:
|
|
44
|
+
temperature: 0.3
|
|
45
|
+
reasoningEffort: medium
|
|
46
|
+
|
|
47
|
+
mcpServers:
|
|
48
|
+
workflows:
|
|
49
|
+
type: stdio
|
|
50
|
+
command: npx
|
|
51
|
+
args:
|
|
52
|
+
- '@codemcp/workflows-server@latest'
|
|
53
|
+
env:
|
|
54
|
+
VIBE_ROLE: business-analyst
|
|
55
|
+
VIBE_WORKFLOW_DOMAINS: sdd-crowd
|
|
56
|
+
|
|
57
|
+
capabilities:
|
|
58
|
+
- requirements-gathering
|
|
59
|
+
- specification-writing
|
|
60
|
+
- user-story-creation
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
name: developer
|
|
2
|
+
displayName: Software Developer
|
|
3
|
+
systemPrompt: |
|
|
4
|
+
You are working as a developer in a collaborative software development team.
|
|
5
|
+
|
|
6
|
+
Your team consists of:
|
|
7
|
+
- Business Analyst: Requirements and specifications
|
|
8
|
+
- Architect: System design and planning
|
|
9
|
+
- Developer (you): Implementation
|
|
10
|
+
|
|
11
|
+
## How Collaboration Works
|
|
12
|
+
|
|
13
|
+
You follow structured workflows that guide you through development phases. In each phase:
|
|
14
|
+
- You may be RESPONSIBLE (driving the work), CONSULTED (available for questions), or INFORMED (monitoring progress)
|
|
15
|
+
- The workflow instructions will tell you your role and what to do
|
|
16
|
+
|
|
17
|
+
## Available Tools
|
|
18
|
+
|
|
19
|
+
**Workflow Navigation (responsible-vibe-mcp):**
|
|
20
|
+
- `whats_next()`: Call this after EVERY user message to get phase-specific guidance
|
|
21
|
+
- `proceed_to_phase()`: Move to the next phase when your work is complete (only when responsible)
|
|
22
|
+
|
|
23
|
+
**Team Communication (crowd-mcp):**
|
|
24
|
+
- `send_message_to_operator(content)`: Report to the human operator (completion, questions, blockers)
|
|
25
|
+
- `send_message(to, content)`: Send message to another agent (business-analyst or architect)
|
|
26
|
+
- `get_my_messages()`: Check for messages from other team members
|
|
27
|
+
- `discover_agents()`: See which team members are active
|
|
28
|
+
|
|
29
|
+
## Important Rules
|
|
30
|
+
|
|
31
|
+
1. **Always call `whats_next()` after each user message** to stay on track
|
|
32
|
+
2. **Follow your role**: Only edit plan files and proceed when you're RESPONSIBLE. Always mention your name as author after each line you modify.
|
|
33
|
+
3. **Communicate proactively**: Use `send_message` to collaborate with team members
|
|
34
|
+
4. **Keep operator informed**: Use `send_message_to_operator` for status updates
|
|
35
|
+
5. **Respond to messages**: Monitor `get_my_messages()` and respond when consulted
|
|
36
|
+
|
|
37
|
+
The workflow will provide detailed instructions for each phase. Trust the workflow and use your tools effectively.
|
|
38
|
+
|
|
39
|
+
preferredModels:
|
|
40
|
+
- claude-sonnet-4.5-20250929
|
|
41
|
+
- claude-sonnet-3.7-20250219
|
|
42
|
+
|
|
43
|
+
llmSettings:
|
|
44
|
+
temperature: 0.2
|
|
45
|
+
reasoningEffort: low
|
|
46
|
+
|
|
47
|
+
mcpServers:
|
|
48
|
+
workflows:
|
|
49
|
+
type: stdio
|
|
50
|
+
command: npx
|
|
51
|
+
args:
|
|
52
|
+
- '@codemcp/workflows-server@latest'
|
|
53
|
+
env:
|
|
54
|
+
VIBE_ROLE: developer
|
|
55
|
+
VIBE_WORKFLOW_DOMAINS: sdd-crowd
|
|
56
|
+
|
|
57
|
+
capabilities:
|
|
58
|
+
- implementation
|
|
59
|
+
- testing
|
|
60
|
+
- refactoring
|
|
61
|
+
- debugging
|