orkestrate 0.1.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/LICENSE +21 -0
- package/README.md +79 -0
- package/dist/cli.js +1297 -0
- package/dist/cli.js.map +1 -0
- package/package.json +50 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Orkestrate
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# orkestrate
|
|
2
|
+
|
|
3
|
+
**The CLI for [Orkestrate](https://orkestrate.space) — the coordination layer for autonomous AI coding agents.**
|
|
4
|
+
|
|
5
|
+
Connect your AI coding tools (Claude Code, OpenCode, Cursor, Windsurf, Codex) to Orkestrate in seconds.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Install
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
# Global install
|
|
13
|
+
bun install -g orkestrate
|
|
14
|
+
|
|
15
|
+
# Or run without installing
|
|
16
|
+
bunx orkestrate login
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Quick Start
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
# 1. Authenticate
|
|
23
|
+
orkestrate login
|
|
24
|
+
|
|
25
|
+
# 2. Connect your AI tool
|
|
26
|
+
orkestrate connect claude
|
|
27
|
+
|
|
28
|
+
# 3. Done. Start coding.
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Commands
|
|
32
|
+
|
|
33
|
+
| Command | Description |
|
|
34
|
+
|---|---|
|
|
35
|
+
| `orkestrate login` | Authenticate via browser OAuth |
|
|
36
|
+
| `orkestrate logout` | Clear stored credentials |
|
|
37
|
+
| `orkestrate connect <tool>` | Configure MCP for an AI tool |
|
|
38
|
+
| `orkestrate status` | Show team coordination state |
|
|
39
|
+
| `orkestrate workspace list` | List all workspaces |
|
|
40
|
+
| `orkestrate workspace switch <name>` | Switch active workspace |
|
|
41
|
+
| `orkestrate workspace create <name> <repo-url>` | Create new workspace |
|
|
42
|
+
| `orkestrate init` | Initialize Orkestrate in current project |
|
|
43
|
+
| `orkestrate whoami` | Show current auth & config |
|
|
44
|
+
|
|
45
|
+
### Supported Tools
|
|
46
|
+
|
|
47
|
+
- **Claude Code** — `orkestrate connect claude`
|
|
48
|
+
- **OpenCode** — `orkestrate connect opencode`
|
|
49
|
+
- **Cursor** — `orkestrate connect cursor`
|
|
50
|
+
- **Windsurf** — `orkestrate connect windsurf`
|
|
51
|
+
- **Codex** — `orkestrate connect codex`
|
|
52
|
+
|
|
53
|
+
## How It Works
|
|
54
|
+
|
|
55
|
+
1. **`orkestrate login`** opens your browser for OAuth authentication, then stores credentials locally in `~/.config/orkestrate/`.
|
|
56
|
+
|
|
57
|
+
2. **`orkestrate connect <tool>`** auto-detects your AI coding tool and writes the MCP server configuration pointing to `https://orkestrate.space/api/mcp`.
|
|
58
|
+
|
|
59
|
+
3. Your AI tools can now coordinate — sharing state, claiming file scopes, and avoiding collisions — all through the Orkestrate MCP protocol.
|
|
60
|
+
|
|
61
|
+
## What This CLI Does NOT Do
|
|
62
|
+
|
|
63
|
+
- ❌ Not an AI agent — doesn't write or edit code
|
|
64
|
+
- ❌ Not a task runner — doesn't execute prompts
|
|
65
|
+
- ❌ Not a git wrapper — doesn't commit or push
|
|
66
|
+
- ❌ Not a proxy — MCP traffic goes directly from your tool to Orkestrate
|
|
67
|
+
|
|
68
|
+
The CLI is purely **setup, wiring, and observability**. The coordination magic happens through MCP.
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
72
|
+
## Links
|
|
73
|
+
|
|
74
|
+
- **Website**: [orkestrate.space](https://orkestrate.space)
|
|
75
|
+
- **GitHub**: [github.com/system1970/Orkestrate](https://github.com/system1970/Orkestrate)
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
© 2026 Orkestrate. Built for the autonomous age.
|