mcp-agent-foundry 2.2.0 → 2.3.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 (2) hide show
  1. package/README.md +12 -12
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -43,14 +43,14 @@ Install as a Claude Code plugin for slash commands and auto-invoked skills:
43
43
  claude plugin marketplace add github:sashabogi/agent-foundry
44
44
 
45
45
  # Install the plugin
46
- claude plugin install agent-foundry
46
+ claude plugin install hari-seldon
47
47
  ```
48
48
 
49
49
  Restart Claude Code, then use:
50
50
  ```
51
- /agent-foundry:invoke critic "Review my authentication approach"
52
- /agent-foundry:review
53
- /agent-foundry:status
51
+ /hari-seldon:invoke critic "Review my authentication approach"
52
+ /hari-seldon:review
53
+ /hari-seldon:status
54
54
  ```
55
55
 
56
56
  ### Option 2: MCP Server Only
@@ -86,14 +86,14 @@ When installed as a Claude Code plugin, these slash commands are available:
86
86
 
87
87
  | Command | Description | Example |
88
88
  |---------|-------------|---------|
89
- | `/agent-foundry:invoke` | Invoke an agent by role | `/agent-foundry:invoke critic "Review this plan"` |
90
- | `/agent-foundry:review` | Get external code review | `/agent-foundry:review src/auth.ts` |
91
- | `/agent-foundry:critique` | Get plan/architecture critique | `/agent-foundry:critique` |
92
- | `/agent-foundry:compare` | Compare multiple agents | `/agent-foundry:compare coder,reviewer "Implement auth"` |
93
- | `/agent-foundry:status` | Show provider health | `/agent-foundry:status` |
94
- | `/agent-foundry:setup` | Configure providers | `/agent-foundry:setup` |
95
- | `/agent-foundry:pipeline` | Run multi-agent pipeline | `/agent-foundry:pipeline` |
96
- | `/agent-foundry:worktree` | Manage git worktrees | `/agent-foundry:worktree list` |
89
+ | `/hari-seldon:invoke` | Invoke an agent by role | `/hari-seldon:invoke critic "Review this plan"` |
90
+ | `/hari-seldon:review` | Get external code review | `/hari-seldon:review src/auth.ts` |
91
+ | `/hari-seldon:critique` | Get plan/architecture critique | `/hari-seldon:critique` |
92
+ | `/hari-seldon:compare` | Compare multiple agents | `/hari-seldon:compare coder,reviewer "Implement auth"` |
93
+ | `/hari-seldon:status` | Show provider health | `/hari-seldon:status` |
94
+ | `/hari-seldon:setup` | Configure providers | `/hari-seldon:setup` |
95
+ | `/hari-seldon:pipeline` | Run multi-agent pipeline | `/hari-seldon:pipeline` |
96
+ | `/hari-seldon:worktree` | Manage git worktrees | `/hari-seldon:worktree list` |
97
97
 
98
98
  ### Auto-Invoked Skills
99
99
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-agent-foundry",
3
- "version": "2.2.0",
3
+ "version": "2.3.0",
4
4
  "description": "Multi-Agent AI Orchestration with Git Worktree Isolation for Claude Code",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",