-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.64 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "agent-bridge",
"version": "0.6.2",
"description": "Local-first CLI to read, compare, and hand off context across Codex, Claude, Gemini, and Cursor sessions.",
"keywords": [
"agent-bridge",
"ai-agents",
"codex",
"claude",
"gemini",
"cursor",
"cli",
"session",
"handoff",
"cross-agent",
"local-first",
"context-pack",
"multi-agent",
"cold-start",
"orchestration",
"evidence-based",
"context-engineering"
],
"private": false,
"preferGlobal": true,
"type": "commonjs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cote-star/agent-bridge.git"
},
"homepage": "https://github.com/cote-star/agent-bridge#readme",
"bugs": {
"url": "https://github.com/cote-star/agent-bridge/issues"
},
"engines": {
"node": ">=18"
},
"bin": {
"bridge": "scripts/read_session.cjs",
"bridge-node": "scripts/read_session.cjs"
},
"files": [
"scripts/read_session.cjs",
"scripts/adapters",
"scripts/context_pack",
"docs/architecture.svg",
"LICENSE",
"PROTOCOL.md",
"README.md",
"schemas"
],
"devDependencies": {
"ajv-cli": "^5.0.0"
},
"scripts": {
"conformance": "bash scripts/conformance.sh",
"check:readme": "bash scripts/check_readme_examples.sh",
"check:package": "bash scripts/check_package_contents.sh",
"validate:schemas": "bash scripts/validate_schemas.sh",
"check": "npm run conformance && npm run check:readme && npm run check:package && npm run validate:schemas",
"context-pack:build": "node scripts/context_pack/build.cjs",
"context-pack:sync-main": "node scripts/context_pack/sync_main.cjs",
"context-pack:install-hooks": "node scripts/context_pack/install_hooks.cjs",
"context-pack:check-freshness": "node scripts/context_pack/check_freshness.cjs",
"context-pack:rollback": "node scripts/context_pack/rollback.cjs",
"demo:status": "node scripts/record_demo.js --input fixtures/demo/player-status.html --output docs/demo-status.webp --duration-ms 21000",
"demo:handoff": "node scripts/record_demo.js --input fixtures/demo/player-handoff.html --output docs/demo-handoff.webp --duration-ms 20000",
"demo:setup": "node scripts/record_demo.js --input fixtures/demo/player-setup.html --output docs/demo-setup.webp --duration-ms 20000",
"demo:context-pack": "node scripts/record_demo.js --input fixtures/demo/player-context-pack.html --output docs/demo-context-pack.webp --duration-ms 20000",
"demo:trash-talk": "node scripts/record_demo.js --input fixtures/demo/player-trash-talk.html --output docs/demo-trash-talk.webp --duration-ms 17000"
}
}