@routinecrew/routinecode 2.5.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/README.md +219 -0
- package/bin/setup.js +367 -0
- package/hooks/hooks-config.json +38 -0
- package/hooks/post-build-check.sh +22 -0
- package/hooks/pre-edit-check.sh +25 -0
- package/hooks/session-start.sh +11 -0
- package/mcp-db-manager/dist/index.mjs +30654 -0
- package/mcp-db-manager/package.json +53 -0
- package/mcp-dev-tester/dist/index.mjs +72 -0
- package/mcp-dev-tester/package.json +29 -0
- package/mcp-doc-fetcher/dist/index.mjs +51 -0
- package/mcp-doc-fetcher/package.json +23 -0
- package/mcp-html-renderer/dist/index.mjs +105 -0
- package/mcp-html-renderer/package.json +35 -0
- package/mcp-intelligence/dist/index.mjs +54 -0
- package/mcp-intelligence/package.json +34 -0
- package/mcp-log-watcher/dist/index.mjs +92 -0
- package/mcp-log-watcher/package.json +27 -0
- package/mcp-plan-manager/dist/index.mjs +104 -0
- package/mcp-plan-manager/package.json +26 -0
- package/mcp-project-context/dist/index.mjs +60 -0
- package/mcp-project-context/package.json +24 -0
- package/mcp-routinecode/dist/index.mjs +56 -0
- package/mcp-routinecode/package.json +24 -0
- package/package.json +56 -0
- package/plugin/.claude-plugin/plugin.json +10 -0
- package/plugin/agents/analyzer.md +68 -0
- package/plugin/agents/crawler.md +70 -0
- package/plugin/agents/explorer.md +74 -0
- package/plugin/agents/implementor.md +113 -0
- package/plugin/agents/looker.md +61 -0
- package/plugin/agents/planner.md +87 -0
- package/plugin/agents/reviewer.md +140 -0
- package/plugin/agents/verifier.md +59 -0
- package/plugin/commands/analyze.md +48 -0
- package/plugin/commands/plan.md +54 -0
- package/plugin/commands/rc.md +86 -0
- package/plugin/routinecode-prompt.md +217 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mcp-plan-manager",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "MCP server for plan/draft/notepad/session management - routine execution for orchestrator agents",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"mcp-plan-manager": "./dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "tsc",
|
|
12
|
+
"dev": "tsc --watch",
|
|
13
|
+
"start": "node dist/index.js",
|
|
14
|
+
"inspect": "npx @anthropics/mcp-inspector node dist/index.js",
|
|
15
|
+
"test": "vitest run",
|
|
16
|
+
"test:watch": "vitest"
|
|
17
|
+
},
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"@modelcontextprotocol/sdk": "^1.0.0"
|
|
20
|
+
},
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"@types/node": "^20.11.0",
|
|
23
|
+
"typescript": "^5.3.3",
|
|
24
|
+
"vitest": "^4.1.2"
|
|
25
|
+
}
|
|
26
|
+
}
|