-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
221 lines (221 loc) · 22.6 KB
/
Copy pathpackage.json
File metadata and controls
221 lines (221 loc) · 22.6 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
{
"name": "rawr-hq-template",
"private": true,
"type": "module",
"packageManager": "bun@1.3.7",
"workspaces": [
"apps/*",
"services/*",
"packages/*",
"packages/runtime/*",
"packages/runtime/harnesses/*",
"plugins/cli/*",
"plugins/agents/*",
"plugins/web/*",
"plugins/server/api/*",
"plugins/async/workflows/*",
"plugins/async/schedules/*"
],
"scripts": {
"dev": "bunx nx run-many -t dev --projects=@rawr/server,@rawr/web --parallel",
"dev:server": "bunx nx run @rawr/server:dev",
"dev:web": "bunx nx run @rawr/web:dev",
"dev:workflows": "bun run --cwd apps/server dev:inngest",
"dev:inngest": "bun run dev:workflows",
"build": "bunx nx run-many -t build --projects=@rawr/agent-config-sync,@rawr/agent-config-sync-node,@rawr/bootgraph,@rawr/chatgpt-corpus,@rawr/cli,@rawr/core,@rawr/dev,@rawr/dev-node,@rawr/example-todo,@rawr/hq-app,@rawr/hq-ops,@rawr/hq-sdk,@rawr/hyperresearch-codex,@rawr/orpc-client,@rawr/plugin-chatgpt-corpus,@rawr/plugin-devops,@rawr/plugin-hello,@rawr/plugin-hyperresearch,@rawr/plugin-plugins,@rawr/plugin-session-tools,@rawr/runtime-context,@rawr/server,@rawr/session-intelligence,@rawr/ui-sdk,@rawr/web",
"build:affected": "bunx nx affected -t build",
"lint": "bunx nx run-many -t lint --projects=@rawr/cli,@rawr/plugin-hq,@rawr/plugin-plugins",
"lint:boundaries": "eslint apps services packages plugins",
"nx:reset": "bunx nx reset",
"nx:doctor": "bun scripts/dev/nx-doctor.mjs",
"sync:check": "bun scripts/phase-03/verify-sync-check.mjs",
"phase-03:gate:session-intelligence-structural": "bun scripts/phase-03/verify-session-intelligence-structural.mjs",
"phase-1:gate:ledger": "bun scripts/phase-1/verify-phase1-ledger.mjs",
"phase-1:gate:no-live-coordination": "bun scripts/phase-1/verify-no-live-coordination.mjs",
"phase-1:gate:no-live-support-example": "bun scripts/phase-1/verify-no-live-support-example.mjs",
"phase-1:gate:agent-marketplace-lane-frozen": "bun scripts/phase-1/verify-agent-marketplace-lane-frozen.mjs",
"phase-1:gate:hq-ops-service-shape": "bun scripts/phase-1/verify-hq-ops-service-shape.mjs",
"phase-1:gate:no-old-operational-packages": "bun scripts/phase-1/verify-no-old-operational-packages.mjs",
"phase-1:gate:no-legacy-hq-imports": "bun scripts/phase-1/verify-no-legacy-hq-imports.mjs",
"phase-1:gate:canonical-plugin-topology": "bun scripts/phase-1/verify-canonical-plugin-topology.mjs",
"phase-1:gate:manifest-purity": "bun scripts/phase-1/verify-manifest-purity.mjs",
"phase-1:gate:entrypoint-thinness": "bun scripts/phase-1/verify-entrypoint-thinness.mjs",
"phase-1:gate:no-legacy-composition-authority": "bun scripts/phase-1/verify-no-legacy-composition-authority.mjs",
"upstream-fallout:gate": "bun scripts/workstream-b/verify-upstream-fallout.mjs",
"phase-1:gate:parked-lane-frozen": "bun scripts/phase-1/verify-parked-lane-frozen.mjs",
"typecheck": "bunx nx run-many -t typecheck --projects=@rawr/agent-config-sync,@rawr/agent-config-sync-node,@rawr/bootgraph,@rawr/chatgpt-corpus,@rawr/cli,@rawr/core,@rawr/dev,@rawr/dev-node,@rawr/example-todo,@rawr/hq-app,@rawr/hq-ops,@rawr/hq-sdk,@rawr/hyperresearch-codex,@rawr/orpc-client,@rawr/plugin-chatgpt-corpus,@rawr/plugin-devops,@rawr/plugin-hello,@rawr/plugin-hyperresearch,@rawr/plugin-plugins,@rawr/plugin-session-tools,@rawr/runtime-context,@rawr/server,@rawr/session-intelligence,@rawr/ui-sdk,@rawr/web",
"typecheck:affected": "bunx nx affected -t typecheck",
"pretest:vitest": "bunx nx run-many -t build --projects=@rawr/agent-config-sync,@rawr/agent-config-sync-node,@rawr/bootgraph,@rawr/chatgpt-corpus,@rawr/cli,@rawr/core,@rawr/dev,@rawr/dev-node,@rawr/example-todo,@rawr/hq-app,@rawr/hq-ops,@rawr/hq-sdk,@rawr/hyperresearch-codex,@rawr/orpc-client,@rawr/plugin-chatgpt-corpus,@rawr/plugin-devops,@rawr/plugin-hello,@rawr/plugin-hyperresearch,@rawr/plugin-plugins,@rawr/plugin-session-tools,@rawr/runtime-context,@rawr/server,@rawr/session-intelligence,@rawr/ui-sdk,@rawr/web",
"test:vitest": "vitest run --config vitest.config.ts",
"test:quick": "bunx vitest run --config vitest.config.ts",
"test:web": "bunx vitest run --project web",
"test": "bun run test:vitest",
"rawr": "bun run --cwd apps/cli rawr",
"architecture:gate:no-old-operational-packages": "bun scripts/architecture/verify-no-old-operational-packages.mjs",
"architecture:gate:no-legacy-hq-imports": "bun scripts/architecture/verify-no-legacy-hq-imports.mjs",
"architecture:gate:canonical-plugin-topology": "bun scripts/architecture/verify-canonical-plugin-topology.mjs",
"architecture:gate:manifest-purity": "bun scripts/architecture/verify-manifest-purity.mjs",
"architecture:gate:hq-ops-service-shape": "bun scripts/architecture/verify-hq-ops-service-shape.mjs",
"architecture:gate:projection-boundaries": "bun scripts/phase-03/verify-projection-boundary-invocation.mjs",
"architecture:gates:permanent": "bun run architecture:gate:no-old-operational-packages && bun run architecture:gate:no-legacy-hq-imports && bun run architecture:gate:canonical-plugin-topology && bun run architecture:gate:manifest-purity && bun run architecture:gate:hq-ops-service-shape && bun run architecture:gate:projection-boundaries && bun run sync:check",
"observability:gate:telemetry-core": "bun scripts/observability/verify-telemetry-contract.mjs && bunx vitest run --project core packages/core/test/telemetry.test.ts",
"observability:gate:host-metrics": "bun scripts/observability/verify-host-metrics-contract.mjs && bunx vitest run --project server apps/server/test/orpc-metrics.test.ts apps/server/test/telemetry-bootstrap.test.ts",
"observability:gate:logging": "bun scripts/observability/verify-logging-boundary.mjs && bunx vitest run --project server apps/server/test/logging-correlation.test.ts && ! rg -n \"from \\\"pino\\\"|from 'pino'\" services/example-todo",
"runtime:gate:hq-lifecycle": "bun scripts/runtime/verify-hq-lifecycle.mjs && bunx vitest run --project cli apps/cli/test/hq.test.ts apps/cli/test/hq-legacy-surface.test.ts",
"runtime-realization:type-env": "bunx nx run runtime-realization-type-env:gate",
"phase-2:gate:u00:no-legacy-cutover": "bun scripts/phase-2/verify-no-legacy-cutover.mjs",
"phase-2:gate:u00:server-role-runtime-path": "bun scripts/phase-2/verify-server-role-runtime-path.mjs",
"phase-2:gate:u00:runtime-public-seams": "bun scripts/phase-2/verify-runtime-public-seams.mjs",
"phase-2:gate:u00:contract": "bun run phase-2:gate:u00:no-legacy-cutover && bun run phase-2:gate:u00:server-role-runtime-path && bun run phase-2:gate:u00:runtime-public-seams",
"phase-2:gate:u00:current-findings": "bun scripts/phase-2/verify-gate-scaffold.mjs && bunx nx run @rawr/hq-app:structural -- --suite=m2-u00-current-findings && bunx nx run @rawr/server:structural -- --suite=m2-u00-current-findings && bunx nx run @rawr/hq-sdk:structural -- --suite=m2-u00-current-findings",
"semantica:setup": "bun tools/semantica-workbench/bin/workbench.mjs setup",
"semantica:check": "bun tools/semantica-workbench/bin/workbench.mjs check",
"semantica:quality": "UV_PROJECT_ENVIRONMENT=\"$PWD/.semantica/venv\" uv run --project tools/semantica-workbench --python 3.12 ruff check tools/semantica-workbench/src tools/semantica-workbench/tests && UV_PROJECT_ENVIRONMENT=\"$PWD/.semantica/venv\" uv run --project tools/semantica-workbench --python 3.12 pyright -p tools/semantica-workbench && UV_PROJECT_ENVIRONMENT=\"$PWD/.semantica/venv\" uv run --project tools/semantica-workbench --python 3.12 pytest tools/semantica-workbench/tests -q",
"semantica:core:validate": "bun tools/semantica-workbench/bin/workbench.mjs core:validate",
"semantica:core:build": "bun tools/semantica-workbench/bin/workbench.mjs core:build",
"semantica:core:export": "bun tools/semantica-workbench/bin/workbench.mjs core:export",
"semantica:core:visualize": "bun tools/semantica-workbench/bin/workbench.mjs core:visualize",
"semantica:core:serve": "bun tools/semantica-workbench/bin/workbench.mjs core:serve",
"semantica:core:query": "bun tools/semantica-workbench/bin/workbench.mjs core:query",
"semantica:doc:diff": "bun tools/semantica-workbench/bin/workbench.mjs doc:diff",
"semantica:doc:triage": "bun tools/semantica-workbench/bin/workbench.mjs doc:triage",
"semantica:doc:extract": "bun tools/semantica-workbench/bin/workbench.mjs doc:extract",
"semantica:doc:compare": "bun tools/semantica-workbench/bin/workbench.mjs doc:compare",
"semantica:doc:frame": "bun tools/semantica-workbench/bin/workbench.mjs doc:frame",
"semantica:doc:proposal-compare": "bun tools/semantica-workbench/bin/workbench.mjs doc:proposal-compare",
"semantica:doc:sweep": "bun tools/semantica-workbench/bin/workbench.mjs doc:sweep",
"semantica:doc:index": "bun tools/semantica-workbench/bin/workbench.mjs doc:index",
"semantica:doc:augment-llm": "bun tools/semantica-workbench/bin/workbench.mjs doc:augment-llm",
"semantica:semantic:capability": "bun tools/semantica-workbench/bin/workbench.mjs semantic:capability",
"semantica:extract": "bun tools/semantica-workbench/bin/workbench.mjs extract",
"semantica:ontology": "bun tools/semantica-workbench/bin/workbench.mjs ontology",
"semantica:diff": "bun tools/semantica-workbench/bin/workbench.mjs diff",
"semantica:report": "bun tools/semantica-workbench/bin/workbench.mjs report",
"semantica:run": "bun tools/semantica-workbench/bin/workbench.mjs run",
"phase-a:gate:metadata-contract": "bun scripts/phase-a/verify-gate-scaffold.mjs metadata-contract && bunx vitest run --project plugin-plugins --testNamePattern='metadata contract gate scaffold'",
"phase-a:gate:import-boundary": "bun scripts/phase-a/verify-gate-scaffold.mjs import-boundary && bunx vitest run --project plugin-plugins --testNamePattern='import boundary gate scaffold'",
"phase-a:gate:manifest-smoke-baseline": "bun scripts/phase-a/manifest-smoke.mjs --mode=baseline",
"phase-a:gate:no-legacy-composition-authority": "bun scripts/architecture/verify-no-legacy-composition-authority.mjs && bunx vitest run --project server --testNamePattern='no legacy composition authority gate scaffold'",
"phase-a:gate:host-composition-guard": "bun run phase-a:gate:no-legacy-composition-authority",
"phase-a:gate:route-negative-assertions": "bunx vitest run --project server apps/server/test/route-boundary-matrix.test.ts",
"phase-a:gate:harness-matrix": "bun scripts/phase-a/verify-harness-matrix.mjs",
"phase-a:gate:observability-contract": "bun scripts/phase-a/verify-gate-scaffold.mjs observability-contract && bunx vitest run --project server --testNamePattern='observability contract gate scaffold'",
"phase-a:gate:manifest-smoke-completion": "bun scripts/phase-a/manifest-smoke.mjs --mode=completion",
"phase-a:gate:legacy-metadata-hard-delete-static-guard": "bun scripts/phase-a/check-forbidden-legacy-metadata-keys.mjs services/hq-ops/src/service/modules/plugin-catalog/helpers/manifest.ts services/hq-ops/src/service/modules/plugin-catalog/entities.ts plugins/cli/plugins/src/commands/plugins/web/enable.ts plugins/cli/plugins/src/commands/plugins/web/enable/all.ts plugins/cli/plugins/src/commands/plugins/cli/install/all.ts plugins/cli/plugins/src/commands/plugins/scaffold/web-plugin.ts plugins/*/*/package.json plugins/*/*/*/package.json && bunx vitest run --project plugin-plugins --testNamePattern='forbidden legacy metadata keys gate scaffold'",
"phase-a:gate:legacy-metadata-hard-delete-static-guard:scaffold": "bun scripts/phase-a/check-forbidden-legacy-metadata-keys.mjs --allow-findings services/hq-ops/src/service/modules/plugin-catalog/helpers/manifest.ts services/hq-ops/src/service/modules/plugin-catalog/entities.ts plugins/cli/plugins/src/commands/plugins/web/enable.ts plugins/cli/plugins/src/commands/plugins/web/enable/all.ts plugins/cli/plugins/src/commands/plugins/cli/install/all.ts plugins/cli/plugins/src/commands/plugins/scaffold/web-plugin.ts plugins/*/*/package.json plugins/*/*/*/package.json && bunx vitest run --project plugin-plugins --testNamePattern='forbidden legacy metadata keys gate scaffold'",
"phase-a:gate:telemetry-contract": "bun scripts/phase-a/verify-gate-scaffold.mjs telemetry",
"phase-a:gates:baseline": "bunx nx run @rawr/hq-ops:structural && bunx nx run @rawr/plugin-plugins:structural -- --suite=phase-a-baseline && bunx nx run @rawr/server:structural -- --suite=phase-a-baseline",
"phase-a:gates:completion": "bunx nx run @rawr/hq-ops:structural && bunx nx run @rawr/plugin-plugins:structural -- --suite=phase-a-completion && bunx nx run @rawr/server:structural -- --suite=phase-a-completion",
"phase-a:gates:exit": "bun run phase-a:gates:completion && bun run phase-a:gate:legacy-metadata-hard-delete-static-guard",
"phase-c:gate:drift-core": "bun run phase-a:gate:metadata-contract && bun run phase-a:gate:import-boundary && bun run phase-a:gate:no-legacy-composition-authority && bun run phase-a:gate:route-negative-assertions && bun run phase-a:gate:harness-matrix && bun run phase-a:gate:manifest-smoke-completion && bun run phase-a:gate:legacy-metadata-hard-delete-static-guard",
"phase-c:gate:c1-storage-lock-static": "bun scripts/phase-c/verify-storage-lock-contract.mjs",
"phase-c:gate:c1-storage-lock-runtime": "bunx vitest run --project server apps/server/test/repo-state-store.concurrent.test.ts apps/server/test/storage-lock-route-guard.test.ts",
"phase-c:c1:quick": "bun run phase-c:gate:drift-core && bun run phase-c:gate:c1-storage-lock-static && bun run phase-c:gate:c1-storage-lock-runtime",
"phase-c:c1:full": "bun run phase-c:c1:quick && bunx vitest run --project server apps/server/test/rawr.test.ts",
"phase-c:gate:c2-telemetry-contract": "bun scripts/phase-c/verify-telemetry-contract.mjs",
"phase-c:gate:c2-telemetry-runtime": "bunx vitest run --project server apps/server/test/ingress-signature-observability.test.ts apps/server/test/logging-correlation.test.ts",
"phase-c:c2:quick": "bun run phase-c:gate:drift-core && bun run phase-c:gate:c2-telemetry-contract && bun run phase-c:gate:c2-telemetry-runtime",
"phase-c:c2:full": "bun run phase-c:c2:quick && bun run phase-a:gate:observability-contract",
"phase-c:gate:c3-distribution-contract": "bun scripts/phase-c/verify-distribution-instance-lifecycle.mjs",
"phase-c:gate:c3-distribution-runtime": "bunx vitest run --project plugin-plugins plugins/cli/plugins/test/instance-alias-isolation.test.ts plugins/cli/plugins/test/distribution-alias-lifecycle.test.ts",
"phase-c:c3:quick": "bun run phase-c:gate:drift-core && bun run phase-c:gate:c3-distribution-contract && bun run phase-c:gate:c3-distribution-runtime",
"phase-c:c3:full": "bun run phase-c:c3:quick && bun run phase-a:gate:legacy-metadata-hard-delete-static-guard",
"phase-d:gate:drift-core": "bun run phase-c:gate:drift-core",
"phase-d:gate:d1-middleware-dedupe-contract": "bun scripts/phase-d/verify-d1-middleware-dedupe-contract.mjs",
"phase-d:gate:d1-middleware-dedupe-runtime": "bunx vitest run --project server apps/server/test/middleware-dedupe.test.ts",
"phase-d:d1:quick": "bun run phase-d:gate:drift-core && bun run phase-d:gate:d1-middleware-dedupe-contract && bun run phase-d:gate:d1-middleware-dedupe-runtime",
"phase-d:d1:full": "bun run phase-d:d1:quick && bunx vitest run --project server apps/server/test/rawr.test.ts",
"phase-d:gate:d2-finished-hook-contract": "bun scripts/phase-d/verify-d2-finished-hook-contract.mjs",
"phase-d:gate:d2-finished-hook-runtime": "bunx vitest run --project hq-app apps/hq/test/runtime-router.test.ts",
"phase-d:d2:quick": "bun run phase-d:gate:drift-core && bun run phase-d:gate:d2-finished-hook-contract && bun run phase-d:gate:d2-finished-hook-runtime",
"phase-d:d2:full": "bun run phase-d:d2:quick && bunx vitest run --project hq-app apps/hq/test/orpc-contract-drift.test.ts && bunx vitest run --project hq-app apps/hq/test/workflow-trigger-contract-drift.test.ts",
"phase-d:gate:d3-ingress-middleware-structural-contract": "bun scripts/phase-d/verify-d3-ingress-middleware-structural-contract.mjs",
"phase-d:gate:d3-ingress-middleware-structural-runtime": "bunx vitest run --project server apps/server/test/route-boundary-matrix.test.ts && bunx vitest run --project server apps/server/test/ingress-signature-observability.test.ts && bunx vitest run --project server apps/server/test/phase-a-gates.test.ts",
"phase-d:d3:quick": "bun run phase-d:gate:drift-core && bun run phase-d:gate:d3-ingress-middleware-structural-contract && bun run phase-d:gate:d3-ingress-middleware-structural-runtime",
"phase-d:d3:full": "bun run phase-d:d3:quick && bun run phase-a:gate:no-legacy-composition-authority && bun run phase-a:gate:route-negative-assertions",
"phase-d:gate:d4-dedupe-scan": "bun scripts/phase-d/verify-d4-dedupe-trigger.mjs",
"phase-d:gate:d4-finished-hook-scan": "bun scripts/phase-d/verify-d4-finished-hook-trigger.mjs",
"phase-d:d4:assess": "bun run phase-d:gate:d4-dedupe-scan && bun run phase-d:gate:d4-finished-hook-scan",
"phase-d:gate:d4-disposition": "bun scripts/phase-d/verify-d4-disposition.mjs",
"phase-e:gate:drift-core": "bun run phase-d:gate:drift-core",
"phase-e:gate:e1-dedupe-policy": "bun scripts/phase-e/verify-e1-dedupe-policy.mjs",
"phase-e:gate:e1-dedupe-runtime": "bunx vitest run --project server apps/server/test/middleware-dedupe.test.ts",
"phase-e:e1:quick": "bun run phase-e:gate:drift-core && bun run phase-e:gate:e1-dedupe-policy && bun run phase-e:gate:e1-dedupe-runtime",
"phase-e:e1:full": "bun run phase-e:e1:quick && bunx vitest run --project server apps/server/test/rawr.test.ts",
"phase-e:gate:e2-finished-hook-policy": "bun scripts/phase-e/verify-e2-finished-hook-policy.mjs",
"phase-e:gate:e2-finished-hook-runtime": "bunx vitest run --project hq-app apps/hq/test/runtime-router.test.ts",
"phase-e:e2:quick": "bun run phase-e:e1:quick && bun run phase-e:gate:e2-finished-hook-policy && bun run phase-e:gate:e2-finished-hook-runtime",
"phase-e:e2:full": "bun run phase-e:e2:quick && bunx vitest run --project hq-app apps/hq/test/orpc-contract-drift.test.ts",
"phase-e:gate:e3-evidence-integrity": "bun scripts/phase-e/verify-e3-evidence-integrity.mjs",
"phase-e:e3:quick": "bun run phase-e:e2:quick && bun run phase-e:gate:e3-evidence-integrity",
"phase-e:e3:full": "bun run phase-e:e3:quick && bun run phase-a:gate:harness-matrix",
"phase-e:gate:e4-disposition": "bun scripts/phase-e/verify-e3-evidence-integrity.mjs --mode=e4-disposition",
"phase-e:gates:exit": "bun run phase-e:e3:full && bun run phase-e:gate:e4-disposition && bun run phase-a:gates:exit",
"phase-f:gate:drift-core": "bun run phase-e:gate:drift-core",
"phase-f:gate:f1-runtime-lifecycle-contract": "bun scripts/phase-f/verify-f1-runtime-lifecycle-contract.mjs",
"phase-f:gate:f1-runtime-lifecycle-runtime": "bunx vitest run --project server apps/server/test/repo-state-store.concurrent.test.ts && bunx vitest run --project server apps/server/test/rawr.test.ts --testNamePattern='no-legacy-composition-authority: keeps runtime authority stable when initialized from alias repo roots' && bunx vitest run --project server apps/server/test/route-boundary-matrix.test.ts && bun run phase-c:gate:c1-storage-lock-runtime",
"phase-f:f1:quick": "bun run phase-f:gate:drift-core && bun run phase-f:gate:f1-runtime-lifecycle-contract && bun run phase-f:gate:f1-runtime-lifecycle-runtime",
"phase-f:f1:full": "bun run phase-f:f1:quick && bun run phase-a:gate:no-legacy-composition-authority",
"phase-f:gate:f2-interface-policy-contract": "bun scripts/phase-f/verify-f2-interface-policy-contract.mjs",
"phase-f:gate:f2-interface-policy-runtime": "bunx vitest run --project hq-app apps/hq/test/orpc-contract-drift.test.ts apps/hq/test/workflow-trigger-contract-drift.test.ts && bunx vitest run --project hq-app apps/hq/test/runtime-router.test.ts",
"phase-f:f2:quick": "bun run phase-f:f1:quick && bun run phase-f:gate:f2-interface-policy-contract && bun run phase-f:gate:f2-interface-policy-runtime",
"phase-f:f2:full": "bun run phase-f:f2:quick && bun run typecheck",
"phase-f:gate:f3-evidence-integrity": "bun scripts/phase-f/verify-f3-evidence-integrity.mjs",
"phase-f:f3:quick": "bun run phase-f:f2:quick && bun run phase-f:gate:f3-evidence-integrity",
"phase-f:f3:full": "bun run phase-f:f3:quick && bun run phase-a:gate:harness-matrix",
"phase-f:gate:f4-assess": "bun scripts/phase-f/verify-f4-trigger-scan.mjs",
"phase-f:gate:f4-disposition": "bun scripts/phase-f/verify-f4-disposition.mjs",
"phase-f:gate:f5-review-closure": "bun scripts/phase-f/verify-f3-evidence-integrity.mjs --mode=f5-review-closure",
"phase-f:gate:f5a-structural-closure": "bun scripts/phase-f/verify-f3-evidence-integrity.mjs --mode=f5a-structural-closure",
"phase-f:gate:f6-cleanup-manifest": "bun scripts/phase-f/verify-f3-evidence-integrity.mjs --mode=f6-cleanup-manifest",
"phase-f:gate:f6-cleanup-integrity": "bun scripts/phase-f/verify-f3-evidence-integrity.mjs --mode=f6-cleanup-integrity",
"phase-f:gate:f7-readiness": "bun scripts/phase-f/verify-f3-evidence-integrity.mjs --mode=f7-readiness",
"phase-f:gates:full": "bun run phase-f:f1:full && bun run phase-f:f2:full && bun run phase-f:f3:full && bun run phase-f:gate:f4-assess && bun run phase-f:gate:f4-disposition",
"phase-f:gates:closure": "bun run phase-f:gate:f5-review-closure && bun run phase-f:gate:f5a-structural-closure && bun run phase-f:gate:f6-cleanup-manifest && bun run phase-f:gate:f6-cleanup-integrity && bun run phase-f:gate:f7-readiness",
"phase-f:gates:exit": "bun run phase-f:gates:full && bun run phase-f:gates:closure && bun run phase-a:gates:exit"
},
"nx": {
"tags": [
"migration-slice:structural-tranche"
],
"includedScripts": [
"lint",
"lint:boundaries",
"sync:check",
"architecture:gates:permanent",
"observability:gate:telemetry-core",
"observability:gate:host-metrics",
"observability:gate:logging",
"runtime:gate:hq-lifecycle",
"pretest:vitest",
"test:vitest"
]
},
"overrides": {
"npm": "11.9.0",
"tar": "7.5.7"
},
"dependencies": {
"@orpc/contract": "^1.13.5",
"@orpc/server": "^1.13.5",
"@rawr/core": "workspace:*",
"@rawr/hq-app": "workspace:*",
"@rawr/hq-sdk": "workspace:*",
"@rawr/runtime-context": "workspace:*",
"elysia": "^1.3.12",
"inngest": "3.51.0",
"typebox": "^1.0.81"
},
"devDependencies": {
"@nx/eslint-plugin": "^22.5.4",
"@types/node": "^22.14.0",
"@typescript-eslint/parser": "^8.57.1",
"@vitest/ui": "^4.0.18",
"cytoscape": "^3.33.2",
"effect": "3.21.2",
"eslint": "^10.0.3",
"nx": "22.5.4",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}