myaidev-method 0.2.2 → 0.2.4
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/.claude/mcp/mcp-config.json +93 -10
- package/.claude/mcp/sparc-orchestrator-server.js +607 -0
- package/DEV_WORKFLOW_GUIDE.md +1353 -0
- package/MCP_INTEGRATION.md +373 -0
- package/README.md +378 -21
- package/bin/cli.js +39 -1
- package/dist/mcp/mcp-config.json +93 -10
- package/dist/mcp/sparc-orchestrator-server.js +607 -0
- package/package.json +22 -3
- package/src/lib/dev-workflow/agent-types.js +163 -0
- package/src/lib/dev-workflow/sparc-workflow.js +302 -0
- package/src/lib/dev-workflow/task-manager.js +313 -0
- package/src/scripts/dev-architect.js +99 -0
- package/src/scripts/dev-code.js +106 -0
- package/src/scripts/dev-docs.js +122 -0
- package/src/scripts/dev-review.js +117 -0
- package/src/scripts/dev-test.js +115 -0
- package/src/scripts/sparc-workflow.js +187 -0
- package/src/templates/claude/agents/dev-architect.md +436 -0
- package/src/templates/claude/agents/dev-coder.md +749 -0
- package/src/templates/claude/agents/dev-documenter.md +939 -0
- package/src/templates/claude/agents/dev-reviewer.md +1152 -0
- package/src/templates/claude/agents/dev-tester.md +600 -0
- package/src/templates/claude/commands/myai-dev-architect.md +80 -0
- package/src/templates/claude/commands/myai-dev-code.md +93 -0
- package/src/templates/claude/commands/myai-dev-docs.md +94 -0
- package/src/templates/claude/commands/myai-dev-review.md +96 -0
- package/src/templates/claude/commands/myai-dev-test.md +95 -0
- package/src/templates/claude/commands/myai-sparc-workflow.md +196 -0
|
@@ -1,12 +1,91 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
2
|
+
"servers": [
|
|
3
|
+
{
|
|
4
|
+
"name": "myaidev-wordpress-mcp-server",
|
|
5
|
+
"version": "2.0.0",
|
|
6
|
+
"description": "Enhanced WordPress MCP Server with session management and memory persistence",
|
|
7
|
+
"mcpName": "io.github.myaione/myaidev-method-wordpress",
|
|
8
|
+
"transport": "stdio",
|
|
9
|
+
"command": "node .claude/mcp/wordpress-server.js"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"name": "myaidev-sparc-orchestrator",
|
|
13
|
+
"version": "1.0.0",
|
|
14
|
+
"description": "SPARC workflow orchestration MCP server for systematic development",
|
|
15
|
+
"mcpName": "io.github.myaione/myaidev-method-sparc",
|
|
16
|
+
"transport": "stdio",
|
|
17
|
+
"command": "node .claude/mcp/sparc-orchestrator-server.js"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "chrome-devtools-mcp",
|
|
21
|
+
"version": "1.0.0",
|
|
22
|
+
"description": "Chrome DevTools Protocol MCP server for browser testing and debugging",
|
|
23
|
+
"mcpName": "chrome-devtools-mcp",
|
|
24
|
+
"transport": "stdio",
|
|
25
|
+
"command": "npx chrome-devtools-mcp"
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"wordpress_server": {
|
|
29
|
+
"sparc_tools": [
|
|
30
|
+
{
|
|
31
|
+
"name": "sparc_orchestrate",
|
|
32
|
+
"description": "Orchestrate the complete 5-phase SPARC development workflow with intelligent task routing",
|
|
33
|
+
"category": "orchestration"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "sparc_status",
|
|
37
|
+
"description": "Get status of current SPARC workflow execution",
|
|
38
|
+
"category": "monitoring"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "sparc_phase_execute",
|
|
42
|
+
"description": "Execute a single SPARC phase with detailed configuration",
|
|
43
|
+
"category": "execution"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "sparc_workflow_history",
|
|
47
|
+
"description": "Get history of SPARC workflow executions",
|
|
48
|
+
"category": "monitoring"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "sparc_task_results",
|
|
52
|
+
"description": "Get detailed results from a completed SPARC workflow",
|
|
53
|
+
"category": "results"
|
|
54
|
+
}
|
|
55
|
+
],
|
|
56
|
+
"chrome_devtools_tools": [
|
|
57
|
+
{
|
|
58
|
+
"name": "cdp_connect",
|
|
59
|
+
"description": "Connect to Chrome DevTools Protocol for browser automation",
|
|
60
|
+
"category": "connection"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"name": "cdp_navigate",
|
|
64
|
+
"description": "Navigate browser to a URL",
|
|
65
|
+
"category": "navigation"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "cdp_screenshot",
|
|
69
|
+
"description": "Take screenshot of current page",
|
|
70
|
+
"category": "testing"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "cdp_evaluate",
|
|
74
|
+
"description": "Execute JavaScript in browser context",
|
|
75
|
+
"category": "testing"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "cdp_network_monitor",
|
|
79
|
+
"description": "Monitor network requests and responses",
|
|
80
|
+
"category": "testing"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "cdp_console_logs",
|
|
84
|
+
"description": "Capture browser console logs",
|
|
85
|
+
"category": "debugging"
|
|
86
|
+
}
|
|
87
|
+
],
|
|
88
|
+
"wordpress_tools": [
|
|
10
89
|
{
|
|
11
90
|
"name": "wp_session_create",
|
|
12
91
|
"description": "Create a new session for tracking operations and maintaining context",
|
|
@@ -70,12 +149,16 @@
|
|
|
70
149
|
],
|
|
71
150
|
"capabilities": [
|
|
72
151
|
"session_management",
|
|
73
|
-
"memory_persistence",
|
|
152
|
+
"memory_persistence",
|
|
74
153
|
"health_monitoring",
|
|
75
154
|
"wordpress_integration",
|
|
76
155
|
"batch_operations",
|
|
77
156
|
"gutenberg_support",
|
|
78
|
-
"error_tracking"
|
|
157
|
+
"error_tracking",
|
|
158
|
+
"sparc_orchestration",
|
|
159
|
+
"workflow_management",
|
|
160
|
+
"browser_automation",
|
|
161
|
+
"devtools_integration"
|
|
79
162
|
],
|
|
80
163
|
"environment": {
|
|
81
164
|
"required": [
|