rpi-kit 1.4.1 → 2.0.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 (53) hide show
  1. package/.claude-plugin/marketplace.json +9 -6
  2. package/.claude-plugin/plugin.json +4 -4
  3. package/AGENTS.md +2004 -109
  4. package/CHANGELOG.md +83 -0
  5. package/README.md +116 -169
  6. package/agents/atlas.md +61 -0
  7. package/agents/clara.md +49 -0
  8. package/agents/forge.md +38 -0
  9. package/agents/hawk.md +54 -0
  10. package/agents/luna.md +50 -0
  11. package/agents/mestre.md +61 -0
  12. package/agents/nexus.md +63 -0
  13. package/agents/pixel.md +48 -0
  14. package/agents/quill.md +40 -0
  15. package/agents/razor.md +41 -0
  16. package/agents/sage.md +52 -0
  17. package/agents/scout.md +49 -0
  18. package/agents/shield.md +51 -0
  19. package/bin/cli.js +27 -10
  20. package/bin/onboarding.js +46 -28
  21. package/commands/rpi/archive.md +149 -0
  22. package/commands/rpi/docs.md +106 -168
  23. package/commands/rpi/implement.md +163 -401
  24. package/commands/rpi/init.md +150 -67
  25. package/commands/rpi/learn.md +114 -0
  26. package/commands/rpi/new.md +85 -155
  27. package/commands/rpi/onboarding.md +157 -336
  28. package/commands/rpi/party.md +212 -0
  29. package/commands/rpi/plan.md +241 -205
  30. package/commands/rpi/research.md +162 -104
  31. package/commands/rpi/review.md +350 -104
  32. package/commands/rpi/rpi.md +125 -0
  33. package/commands/rpi/simplify.md +156 -93
  34. package/commands/rpi/status.md +91 -114
  35. package/package.json +3 -3
  36. package/skills/rpi-agents/SKILL.md +63 -39
  37. package/skills/rpi-workflow/SKILL.md +160 -186
  38. package/agents/code-reviewer.md +0 -40
  39. package/agents/code-simplifier.md +0 -35
  40. package/agents/cto-advisor.md +0 -51
  41. package/agents/doc-synthesizer.md +0 -53
  42. package/agents/doc-writer.md +0 -36
  43. package/agents/explore-codebase.md +0 -50
  44. package/agents/plan-executor.md +0 -48
  45. package/agents/product-manager.md +0 -52
  46. package/agents/requirement-parser.md +0 -42
  47. package/agents/senior-engineer.md +0 -52
  48. package/agents/test-engineer.md +0 -28
  49. package/agents/ux-designer.md +0 -47
  50. package/codex.md +0 -72
  51. package/commands/rpi/add-todo.md +0 -83
  52. package/commands/rpi/set-profile.md +0 -124
  53. package/commands/rpi/test.md +0 -198
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
3
3
  "name": "rpi-kit",
4
- "version": "1.4.0",
5
- "description": "Research → Plan → Implement. A systematic feature development workflow with validation gates, multi-role agent teams, and adaptive depth.",
4
+ "version": "2.0.0",
5
+ "description": "Research → Plan → Implement. 7-phase pipeline with 13 named agents, delta specs, party mode, and knowledge compounding.",
6
6
  "owner": {
7
7
  "name": "Daniel Mendes"
8
8
  },
@@ -10,14 +10,17 @@
10
10
  {
11
11
  "name": "rpi-kit",
12
12
  "source": "./",
13
- "description": "Research → Plan → Implement. A systematic feature development workflow for Claude Code and Codex.",
14
- "version": "1.4.0",
13
+ "description": "Research → Plan → Implement. 7-phase pipeline with 13 named agents, delta specs, party mode, and knowledge compounding.",
14
+ "version": "2.0.0",
15
15
  "author": {
16
16
  "name": "Daniel Mendes"
17
17
  },
18
18
  "license": "MIT",
19
- "keywords": ["workflow", "research", "planning", "implementation", "feature-development", "agents"],
20
- "category": "productivity"
19
+ "keywords": ["workflow", "research", "planning", "implementation", "agents", "delta-specs", "knowledge-compounding"],
20
+ "category": "productivity",
21
+ "agents": 13,
22
+ "commands": 14,
23
+ "skills": 2
21
24
  }
22
25
  ]
23
26
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rpi-kit",
3
- "version": "1.4.0",
4
- "description": "Research → Plan → Implement. A systematic feature development workflow with validation gates, multi-role agent teams, and adaptive depth.",
3
+ "version": "2.0.0",
4
+ "description": "Research → Plan → Implement. 7-phase pipeline with 13 named agents, delta specs, party mode, and knowledge compounding.",
5
5
  "author": {
6
6
  "name": "Daniel Mendes",
7
7
  "url": "https://github.com/dmend3z"
@@ -13,8 +13,8 @@
13
13
  "research",
14
14
  "planning",
15
15
  "implementation",
16
- "feature-development",
17
16
  "agents",
18
- "codex"
17
+ "delta-specs",
18
+ "knowledge-compounding"
19
19
  ]
20
20
  }