rpi-kit 2.1.0 → 2.1.2

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.
@@ -1,26 +1,60 @@
1
1
  {
2
- "$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
3
2
  "name": "rpi-kit",
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
3
  "owner": {
7
4
  "name": "Daniel Mendes"
8
5
  },
6
+ "metadata": {
7
+ "description": "Research → Plan → Implement. 7-phase pipeline with 13 named agents, delta specs, party mode, and knowledge compounding.",
8
+ "version": "2.1.1"
9
+ },
9
10
  "plugins": [
10
11
  {
11
12
  "name": "rpi-kit",
12
13
  "source": "./",
13
14
  "description": "Research → Plan → Implement. 7-phase pipeline with 13 named agents, delta specs, party mode, and knowledge compounding.",
14
- "version": "2.0.0",
15
+ "version": "2.1.1",
15
16
  "author": {
16
17
  "name": "Daniel Mendes"
17
18
  },
18
19
  "license": "MIT",
19
20
  "keywords": ["workflow", "research", "planning", "implementation", "agents", "delta-specs", "knowledge-compounding"],
20
21
  "category": "productivity",
21
- "agents": 13,
22
- "commands": 14,
23
- "skills": 2
22
+ "commands": [
23
+ "./commands/rpi/archive.md",
24
+ "./commands/rpi/docs.md",
25
+ "./commands/rpi/implement.md",
26
+ "./commands/rpi/init.md",
27
+ "./commands/rpi/learn.md",
28
+ "./commands/rpi/new.md",
29
+ "./commands/rpi/onboarding.md",
30
+ "./commands/rpi/party.md",
31
+ "./commands/rpi/plan.md",
32
+ "./commands/rpi/research.md",
33
+ "./commands/rpi/review.md",
34
+ "./commands/rpi/rpi.md",
35
+ "./commands/rpi/simplify.md",
36
+ "./commands/rpi/status.md",
37
+ "./commands/rpi/update.md"
38
+ ],
39
+ "agents": [
40
+ "./agents/atlas.md",
41
+ "./agents/clara.md",
42
+ "./agents/forge.md",
43
+ "./agents/hawk.md",
44
+ "./agents/luna.md",
45
+ "./agents/mestre.md",
46
+ "./agents/nexus.md",
47
+ "./agents/pixel.md",
48
+ "./agents/quill.md",
49
+ "./agents/razor.md",
50
+ "./agents/sage.md",
51
+ "./agents/scout.md",
52
+ "./agents/shield.md"
53
+ ],
54
+ "skills": [
55
+ "./skills/rpi-agents/SKILL.md",
56
+ "./skills/rpi-workflow/SKILL.md"
57
+ ]
24
58
  }
25
59
  ]
26
60
  }
package/bin/cli.js CHANGED
@@ -32,15 +32,36 @@ function hasGeminiCLI() {
32
32
 
33
33
  function installClaude() {
34
34
  log("Installing RPIKit for Claude Code...");
35
+
36
+ // 1. Ensure marketplace is registered
37
+ const listResult = spawnSync("claude", ["plugin", "marketplace", "list"], { encoding: "utf8", stdio: "pipe" });
38
+ const hasMarketplace = (listResult.stdout || "").includes("rpi-kit");
39
+
40
+ if (!hasMarketplace) {
41
+ log("Adding rpi-kit marketplace...");
42
+ try {
43
+ execFileSync("claude", ["plugin", "marketplace", "add", "dmend3z/rpi-kit"], {
44
+ stdio: silent ? "pipe" : "inherit",
45
+ });
46
+ } catch {
47
+ log("Could not add marketplace. Add manually:");
48
+ log(" claude plugin marketplace add dmend3z/rpi-kit");
49
+ return false;
50
+ }
51
+ }
52
+
53
+ // 2. Install plugin from marketplace
35
54
  try {
36
- execFileSync("claude", ["plugin", "install", PLUGIN_DIR], {
55
+ execFileSync("claude", ["plugin", "install", "rpi-kit"], {
37
56
  stdio: silent ? "pipe" : "inherit",
38
57
  });
39
58
  log("Claude Code: installed.");
40
59
  return true;
41
60
  } catch {
42
- log("Claude Code: could not register plugin automatically.");
43
- log(" Manual install: claude plugin install " + PLUGIN_DIR);
61
+ log("Claude Code: could not install plugin.");
62
+ log(" Manual install:");
63
+ log(" claude plugin marketplace add dmend3z/rpi-kit");
64
+ log(" claude plugin install rpi-kit");
44
65
  return false;
45
66
  }
46
67
  }
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "rpi-kit",
3
+ "owner": {
4
+ "name": "Daniel Mendes"
5
+ },
6
+ "metadata": {
7
+ "description": "Research → Plan → Implement. 7-phase pipeline with 13 named agents, delta specs, party mode, and knowledge compounding.",
8
+ "version": "2.1.1"
9
+ },
10
+ "plugins": [
11
+ {
12
+ "name": "rpi-kit",
13
+ "source": "./",
14
+ "description": "Research → Plan → Implement. 7-phase pipeline with 13 named agents, delta specs, party mode, and knowledge compounding.",
15
+ "version": "2.1.1",
16
+ "author": {
17
+ "name": "Daniel Mendes"
18
+ },
19
+ "license": "MIT",
20
+ "keywords": ["workflow", "research", "planning", "implementation", "agents", "delta-specs", "knowledge-compounding"],
21
+ "category": "productivity",
22
+ "commands": [
23
+ "./commands/rpi/archive.md",
24
+ "./commands/rpi/docs.md",
25
+ "./commands/rpi/implement.md",
26
+ "./commands/rpi/init.md",
27
+ "./commands/rpi/learn.md",
28
+ "./commands/rpi/new.md",
29
+ "./commands/rpi/onboarding.md",
30
+ "./commands/rpi/party.md",
31
+ "./commands/rpi/plan.md",
32
+ "./commands/rpi/research.md",
33
+ "./commands/rpi/review.md",
34
+ "./commands/rpi/rpi.md",
35
+ "./commands/rpi/simplify.md",
36
+ "./commands/rpi/status.md",
37
+ "./commands/rpi/update.md"
38
+ ],
39
+ "agents": [
40
+ "./agents/atlas.md",
41
+ "./agents/clara.md",
42
+ "./agents/forge.md",
43
+ "./agents/hawk.md",
44
+ "./agents/luna.md",
45
+ "./agents/mestre.md",
46
+ "./agents/nexus.md",
47
+ "./agents/pixel.md",
48
+ "./agents/quill.md",
49
+ "./agents/razor.md",
50
+ "./agents/sage.md",
51
+ "./agents/scout.md",
52
+ "./agents/shield.md"
53
+ ],
54
+ "skills": [
55
+ "./skills/rpi-agents/SKILL.md",
56
+ "./skills/rpi-workflow/SKILL.md"
57
+ ]
58
+ }
59
+ ]
60
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rpi-kit",
3
- "version": "2.1.0",
3
+ "version": "2.1.2",
4
4
  "description": "Research → Plan → Implement. AI-assisted feature development with 13 named agents, delta specs, and knowledge compounding.",
5
5
  "license": "MIT",
6
6
  "author": "Daniel Mendes",
@@ -30,7 +30,8 @@
30
30
  "AGENTS.md",
31
31
  "CHANGELOG.md",
32
32
  "README.md",
33
- "LICENSE"
33
+ "LICENSE",
34
+ "marketplace.json"
34
35
  ],
35
36
  "scripts": {
36
37
  "test": "node --test test/cli.test.js test/commands.test.js",