@shumkov/orchestra 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/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@shumkov/orchestra",
3
+ "version": "0.2.0",
4
+ "description": "Drive interactive Claude Code CLI sessions: spawn, inject messages via the MCP channels bridge, observe turns, recover. The transport-agnostic session engine extracted from polygram, shared by polygram (Telegram) and water (WhatsApp).",
5
+ "type": "commonjs",
6
+ "main": "index.js",
7
+ "files": [
8
+ "index.js",
9
+ "lib/",
10
+ "docs/",
11
+ "README.md"
12
+ ],
13
+ "scripts": {
14
+ "test": "node --test --test-force-exit tests/*.test.js"
15
+ },
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "engines": {
20
+ "node": ">=22"
21
+ },
22
+ "dependencies": {
23
+ "@modelcontextprotocol/sdk": "^1.29.0",
24
+ "zod": "^4.0.0"
25
+ },
26
+ "keywords": [
27
+ "claude",
28
+ "claude-code",
29
+ "claude-cli",
30
+ "channels",
31
+ "mcp",
32
+ "session-pool",
33
+ "tmux",
34
+ "polygram",
35
+ "water"
36
+ ],
37
+ "author": "Ivan Shumkov <ivanshumkov@gmail.com>",
38
+ "license": "MIT",
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "git+https://github.com/shumkov/orchestra.git"
42
+ },
43
+ "optionalDependencies": {
44
+ "@anthropic-ai/claude-agent-sdk": "0.2.123"
45
+ }
46
+ }