sage-team 3.1.0 → 3.1.1
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 +50 -3
- package/dist/cli/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Sage Team v3.
|
|
1
|
+
# Sage Team v3.1
|
|
2
2
|
|
|
3
|
-
> AI-Powered Autonomous Software Company — 11 agents execute real code via Claude Code, with a PixiJS isometric office visualization.
|
|
3
|
+
> AI-Powered Autonomous Software Company — 11 agents execute real code via Claude Code, with a PixiJS isometric office visualization and native Claude Code MCP integration.
|
|
4
4
|
|
|
5
5
|
Sage Team runs a complete AI software company. A **CEO agent** decomposes your goal into a sprint, then **11 specialized agents** execute tasks in parallel using **Claude Code subprocesses** — writing real code, running tests, and creating PRs. Watch it all happen in a **PixiJS isometric office** in your browser.
|
|
6
6
|
|
|
@@ -15,6 +15,36 @@ Sage Team runs a complete AI software company. A **CEO agent** decomposes your g
|
|
|
15
15
|
|
|
16
16
|
## Quick Start
|
|
17
17
|
|
|
18
|
+
### Option A: Inside Claude Code (recommended)
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npm install -g sage-team
|
|
22
|
+
cd your-project
|
|
23
|
+
claude
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Inside Claude, just talk naturally:
|
|
27
|
+
|
|
28
|
+
> "Initialize sage team here"
|
|
29
|
+
> "Start the team with the goal: Build a REST API for a todo app"
|
|
30
|
+
> "How's the sprint going?"
|
|
31
|
+
> "Approve the PR"
|
|
32
|
+
|
|
33
|
+
Claude Code auto-discovers Sage Team via MCP. Set up the `.mcp.json` in your project:
|
|
34
|
+
|
|
35
|
+
```json
|
|
36
|
+
{
|
|
37
|
+
"mcpServers": {
|
|
38
|
+
"sage-team": {
|
|
39
|
+
"command": "sage-team-mcp",
|
|
40
|
+
"args": []
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
### Option B: Standalone CLI
|
|
47
|
+
|
|
18
48
|
```bash
|
|
19
49
|
# Install globally
|
|
20
50
|
npm install -g sage-team
|
|
@@ -48,7 +78,22 @@ sage-team start --goal "Build a REST API for a todo app with authentication"
|
|
|
48
78
|
| 🌀 **River** | Scrum Master | Lounge | Process, blocker removal |
|
|
49
79
|
| 📊 **Atlas** | Data Engineer | Data Lab | Database, data pipelines |
|
|
50
80
|
|
|
51
|
-
##
|
|
81
|
+
## MCP Tools (inside Claude Code)
|
|
82
|
+
|
|
83
|
+
When using Sage Team inside Claude Code, these tools are available:
|
|
84
|
+
|
|
85
|
+
| Tool | Description |
|
|
86
|
+
|------|-------------|
|
|
87
|
+
| `sage_team_init` | Initialize Sage Team in current project |
|
|
88
|
+
| `sage_team_list` | Show all 11 agents with roles and skills |
|
|
89
|
+
| `sage_team_start` | Start a session with a goal |
|
|
90
|
+
| `sage_team_status` | Show sprint progress, tasks, and agent statuses |
|
|
91
|
+
| `sage_team_doctor` | Check system health (Node, Git, Claude Code, API key) |
|
|
92
|
+
| `sage_team_config` | View or update configuration |
|
|
93
|
+
| `sage_team_approve_pr` | Approve and merge a pull request |
|
|
94
|
+
| `sage_team_reject_pr` | Reject a PR with feedback for rework |
|
|
95
|
+
|
|
96
|
+
## CLI Commands
|
|
52
97
|
|
|
53
98
|
```bash
|
|
54
99
|
sage-team init # Initialize .sage-team/ directory
|
|
@@ -130,6 +175,8 @@ sage-team/
|
|
|
130
175
|
│ ├── cli/
|
|
131
176
|
│ │ ├── index.ts # Commander program with 8 commands
|
|
132
177
|
│ │ └── commands/ # init, start, resume, config, team, status, doctor, logs
|
|
178
|
+
│ ├── mcp/
|
|
179
|
+
│ │ └── server.ts # MCP server for Claude Code integration
|
|
133
180
|
│ ├── server/
|
|
134
181
|
│ │ ├── index.ts # Express + WebSocket server
|
|
135
182
|
│ │ └── routes/api.ts # REST API endpoints
|
package/dist/cli/index.js
CHANGED
|
@@ -16,7 +16,7 @@ function buildProgram() {
|
|
|
16
16
|
program
|
|
17
17
|
.name('sage-team')
|
|
18
18
|
.description('AI-powered autonomous software company')
|
|
19
|
-
.version('3.1.
|
|
19
|
+
.version('3.1.1');
|
|
20
20
|
program.addCommand((0, init_1.initCommand)());
|
|
21
21
|
program.addCommand((0, start_1.startCommand)());
|
|
22
22
|
program.addCommand((0, resume_1.resumeCommand)());
|
package/package.json
CHANGED