create-forge-team 0.2.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.
- package/README.md +73 -0
- package/dist/chunk-GOZ3OAFK.js +805 -0
- package/dist/chunk-N62P5WWV.js +108 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +7456 -0
- package/dist/memory-DGOVUFNJ.js +21 -0
- package/dist/openrouter-client-DAUFUMZX.js +8 -0
- package/package.json +54 -0
package/README.md
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# create-forge-team
|
|
2
|
+
|
|
3
|
+
Build a team of AI agents for Claude Code. Describe your situation — Forge interviews you and generates personalized agents with skills that evolve over time.
|
|
4
|
+
|
|
5
|
+
## Prerequisites
|
|
6
|
+
|
|
7
|
+
- **Node.js 20+** (`node --version`)
|
|
8
|
+
- **Claude Code** installed and working
|
|
9
|
+
- **Anthropic API key** set as `ANTHROPIC_API_KEY`
|
|
10
|
+
|
|
11
|
+
## Quick Start
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# 1. Run the interactive team builder
|
|
15
|
+
npx create-forge-team
|
|
16
|
+
|
|
17
|
+
# 2. Use your agents in Claude Code
|
|
18
|
+
# Type /summon-{agent-name} in any Claude Code session
|
|
19
|
+
|
|
20
|
+
# 3. (Optional) Start the dashboard for a browser UI
|
|
21
|
+
forge bridge
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
The concierge interview takes 3-5 minutes. It creates 3-6 agents tailored to your goals, each with a system prompt, skills, and tool connections.
|
|
25
|
+
|
|
26
|
+
## What You Get
|
|
27
|
+
|
|
28
|
+
- **Personalized agents** — each agent has a role, personality, and domain expertise
|
|
29
|
+
- **Persistent memory** — agents remember context across sessions via structured knowledge files
|
|
30
|
+
- **Cross-agent knowledge** — agents learn from each other's work through a shared activity feed
|
|
31
|
+
- **Skills** — slash commands (`/summon-agent`, `/close-agent`) for Claude Code integration
|
|
32
|
+
- **MCP tool connections** — connect calendar, email, databases, or any MCP server
|
|
33
|
+
- **Background knowledge processing** — transcripts are extracted into decisions, facts, and open threads
|
|
34
|
+
|
|
35
|
+
## CLI Commands
|
|
36
|
+
|
|
37
|
+
| Command | Description |
|
|
38
|
+
|---------|-------------|
|
|
39
|
+
| `forge create` | Create a new agent team via conversation |
|
|
40
|
+
| `forge agent list` | List all agents |
|
|
41
|
+
| `forge agent create` | Add a single agent interactively |
|
|
42
|
+
| `forge bridge` | Start the dashboard bridge server |
|
|
43
|
+
| `forge tools list` | Show configured MCP tools |
|
|
44
|
+
| `forge memory setup` | Configure the knowledge system |
|
|
45
|
+
| `forge memory status` | Show knowledge queue and stats |
|
|
46
|
+
| `forge council "query"` | Run a multi-model council query |
|
|
47
|
+
| `forge status` | Show workspace overview |
|
|
48
|
+
|
|
49
|
+
## Dashboard
|
|
50
|
+
|
|
51
|
+
The Forge Dashboard is a browser UI that connects to your local bridge server for chat, tool management, and session history.
|
|
52
|
+
|
|
53
|
+
1. Run `forge bridge` in your terminal
|
|
54
|
+
2. Copy the connection token displayed
|
|
55
|
+
3. Open the dashboard URL and paste the token
|
|
56
|
+
|
|
57
|
+
## Memory System
|
|
58
|
+
|
|
59
|
+
Forge includes an optional memory agent that processes session transcripts into structured knowledge:
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
# One-time setup (needs an OpenRouter API key — free models available)
|
|
63
|
+
forge memory setup
|
|
64
|
+
|
|
65
|
+
# Check knowledge stats
|
|
66
|
+
forge memory status
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
After setup, session transcripts are automatically queued for processing. The memory agent extracts decisions, facts, open threads, and tool data into per-agent knowledge files that are injected into future sessions.
|
|
70
|
+
|
|
71
|
+
## License
|
|
72
|
+
|
|
73
|
+
MIT
|