@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.
Files changed (38) hide show
  1. package/README.md +219 -0
  2. package/bin/setup.js +367 -0
  3. package/hooks/hooks-config.json +38 -0
  4. package/hooks/post-build-check.sh +22 -0
  5. package/hooks/pre-edit-check.sh +25 -0
  6. package/hooks/session-start.sh +11 -0
  7. package/mcp-db-manager/dist/index.mjs +30654 -0
  8. package/mcp-db-manager/package.json +53 -0
  9. package/mcp-dev-tester/dist/index.mjs +72 -0
  10. package/mcp-dev-tester/package.json +29 -0
  11. package/mcp-doc-fetcher/dist/index.mjs +51 -0
  12. package/mcp-doc-fetcher/package.json +23 -0
  13. package/mcp-html-renderer/dist/index.mjs +105 -0
  14. package/mcp-html-renderer/package.json +35 -0
  15. package/mcp-intelligence/dist/index.mjs +54 -0
  16. package/mcp-intelligence/package.json +34 -0
  17. package/mcp-log-watcher/dist/index.mjs +92 -0
  18. package/mcp-log-watcher/package.json +27 -0
  19. package/mcp-plan-manager/dist/index.mjs +104 -0
  20. package/mcp-plan-manager/package.json +26 -0
  21. package/mcp-project-context/dist/index.mjs +60 -0
  22. package/mcp-project-context/package.json +24 -0
  23. package/mcp-routinecode/dist/index.mjs +56 -0
  24. package/mcp-routinecode/package.json +24 -0
  25. package/package.json +56 -0
  26. package/plugin/.claude-plugin/plugin.json +10 -0
  27. package/plugin/agents/analyzer.md +68 -0
  28. package/plugin/agents/crawler.md +70 -0
  29. package/plugin/agents/explorer.md +74 -0
  30. package/plugin/agents/implementor.md +113 -0
  31. package/plugin/agents/looker.md +61 -0
  32. package/plugin/agents/planner.md +87 -0
  33. package/plugin/agents/reviewer.md +140 -0
  34. package/plugin/agents/verifier.md +59 -0
  35. package/plugin/commands/analyze.md +48 -0
  36. package/plugin/commands/plan.md +54 -0
  37. package/plugin/commands/rc.md +86 -0
  38. package/plugin/routinecode-prompt.md +217 -0
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "mcp-dev-tester",
3
+ "version": "1.0.0",
4
+ "description": "MCP server for frontend/backend code analysis, API testing, and browser testing",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "mcp-dev-tester": "./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
+ },
16
+ "dependencies": {
17
+ "@modelcontextprotocol/sdk": "^1.0.0",
18
+ "ts-morph": "^21.0.0",
19
+ "playwright": "^1.42.0",
20
+ "axios": "^1.6.0",
21
+ "zod": "^3.22.0",
22
+ "chalk": "^5.3.0",
23
+ "glob": "^10.3.0"
24
+ },
25
+ "devDependencies": {
26
+ "@types/node": "^20.11.0",
27
+ "typescript": "^5.3.3"
28
+ }
29
+ }