-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 4.49 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 4.49 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@fyaic/threadmesh",
"version": "0.1.0-alpha.3",
"description": "Local cross-agent workspaces, useful peer messages, and portable checkpoints",
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/fyaic/threadmesh.git"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": "./src/sdk/index.mjs",
"./workspace": "./src/workspace/local-workspace.mjs",
"./pi": "./src/integrations/pi-extension.mjs",
"./coordinator/sqlite": "./src/coordinator/sqlite-coordinator.mjs",
"./demo/attention-router": "./src/demo/attention-router-demo.mjs",
"./inspector/attention-snapshot": "./src/inspector/attention-snapshot.mjs",
"./routing/attention-wake": "./src/routing/attention-wake.mjs",
"./routing/lifecycle-events": "./src/routing/lifecycle-events.mjs"
},
"bin": {
"threadmesh": "./bin/threadmesh.mjs"
},
"files": [
"bin",
"spec/schema",
"src/canonical-json.mjs",
"src/coordinator",
"src/bindings",
"src/workspace",
"src/integrations",
"src/demo",
"src/inspector/attention-snapshot.mjs",
"src/policy",
"src/protocol-validator.mjs",
"src/rendering",
"src/routing",
"src/sdk",
"src/state",
"src/validation/independent-git-verifier.mjs",
"examples",
"plugins/threadmesh-codex",
"README.md",
"LICENSE"
],
"scripts": {
"demo": "node bin/threadmesh.mjs demo",
"demo:assets": "node scripts/build-demo-assets.mjs",
"validate:spec": "node scripts/validate-spec.mjs",
"lint:docs": "markdownlint-cli2 'README*.md' 'docs/**/*.md' 'spec/**/*.md' '*.md'",
"test:unit": "node --test test/*.test.mjs",
"smoke:codex": "node scripts/smoke-codex.mjs",
"smoke:codex:live": "npm run validate:products:live:codex",
"smoke:gemini": "node scripts/smoke-gemini.mjs",
"smoke:gemini:live": "npm run validate:products:live:gemini",
"smoke:kimi": "node scripts/smoke-kimi.mjs",
"smoke:kimi:live": "npm run validate:products:live:kimi",
"validate:products:fake": "node scripts/validate-products-e2e.mjs --fake-all",
"validate:behavior:fake": "node scripts/validate-products-e2e.mjs --fake-behavior",
"validate:attention:fake": "node scripts/validate-products-e2e.mjs --fake-attention",
"validate:proactive:fake": "node scripts/validate-products-e2e.mjs --fake-proactive",
"validate:m5-2:fake": "node scripts/run-live-agent-scenario.mjs --mode dry-run --product fixture",
"validate:m5-2:sigkill-canary": "node scripts/validate-m5-2-sigkill-canary.mjs",
"validate:m5-2:live:codex": "node scripts/run-live-agent-scenario.mjs --mode live --product codex",
"validate:m5-2:live:kimi": "node scripts/run-live-agent-scenario.mjs --mode live --product kimi",
"validate:m5-3:baseline:fake": "node scripts/run-m5-3-manual-threadmesh-baseline.mjs --mode fake",
"validate:m5-3:baseline:live:codex": "node scripts/run-m5-3-manual-threadmesh-baseline.mjs --mode live",
"validate:m5-3:matrix": "node scripts/run-m5-3-closure-matrix.mjs",
"validate:cross-harness:fake": "node --test test/proactive-cross-harness.test.mjs",
"validate:pi-consumer": "node scripts/validate-pi-consumer.mjs",
"validate:pi:live": "node scripts/validate-pi-live.mjs",
"validate:workspace:live": "node scripts/validate-workspace-live.mjs",
"validate:workspace:deepseek": "node scripts/validate-deepseek-workspace.mjs",
"validate:checkpoint:live": "node scripts/validate-checkpoint-live.mjs",
"validate:attention:live:codex": "node scripts/run-live-product-validation.mjs codex-attention",
"validate:proactive:live:codex": "node scripts/run-live-product-validation.mjs codex-proactive",
"validate:products:live:codex": "node scripts/run-live-product-validation.mjs codex",
"validate:products:live:kimi": "node scripts/run-live-product-validation.mjs kimi",
"validate:products:live:gemini": "node scripts/run-live-product-validation.mjs gemini",
"validate:review-gate": "node scripts/verify-external-review-gate.mjs",
"review:hash": "node scripts/review-record-digest.mjs",
"review:source": "node scripts/review-source-metadata.mjs",
"test": "npm run validate:spec && npm run test:unit && npm run lint:docs"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.30.0",
"ajv": "8.20.0",
"ajv-formats": "3.0.1",
"better-sqlite3": "13.0.3"
},
"devDependencies": {
"@agentclientprotocol/sdk": "1.3.0",
"markdownlint-cli2": "0.23.2"
},
"engines": {
"node": ">=22"
}
}