@codemcp/workflows 5.1.0 → 5.2.0
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 -3
- package/{SKILL.md → skill/SKILL.md} +10 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codemcp/workflows",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.2.0",
|
|
4
4
|
"description": "MCP server implementation for responsible-vibe",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist/**/*",
|
|
12
|
-
"
|
|
12
|
+
"skill/**/*"
|
|
13
13
|
],
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@modelcontextprotocol/sdk": "1.25.3",
|
|
16
|
-
"@codemcp/workflows-core": "5.
|
|
16
|
+
"@codemcp/workflows-core": "5.2.0"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@types/node": "^22.0.0",
|
|
@@ -11,7 +11,7 @@ allowed-tools: >
|
|
|
11
11
|
setup_project_docs
|
|
12
12
|
license: MIT
|
|
13
13
|
metadata:
|
|
14
|
-
version: '5.
|
|
14
|
+
version: '5.2.0'
|
|
15
15
|
repository: https://github.com/mrsimpson/responsible-vibe-mcp
|
|
16
16
|
author: mrsimpson
|
|
17
17
|
requires-mcp-servers:
|
|
@@ -21,3 +21,12 @@ requires-mcp-servers:
|
|
|
21
21
|
command: npx
|
|
22
22
|
args: ['-y', '@codemcp/workflows']
|
|
23
23
|
---
|
|
24
|
+
You are an AI assistant that helps users develop software features using the responsible-vibe-mcp server.
|
|
25
|
+
|
|
26
|
+
IMPORTANT: Call whats_next() after each user message to get phase-specific instructions and maintain the development workflow.
|
|
27
|
+
|
|
28
|
+
Each tool call returns a JSON response with an "instructions" field. Follow these instructions immediately after you receive them.
|
|
29
|
+
|
|
30
|
+
Use the development plan which you will retrieve via whats_next() to record important insights and decisions as per the structure of the plan.
|
|
31
|
+
|
|
32
|
+
Do not use your own task management tools.
|