martin-loop 0.1.2 → 0.1.3

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.
Files changed (57) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +362 -344
  3. package/dist/bin/martin-loop.js +23 -0
  4. package/dist/index.d.ts +22 -0
  5. package/dist/index.js +31 -0
  6. package/dist/vendor/adapters/claude-cli.d.ts +89 -0
  7. package/dist/vendor/adapters/claude-cli.js +555 -0
  8. package/dist/vendor/adapters/cli-bridge.d.ts +28 -0
  9. package/dist/vendor/adapters/cli-bridge.js +127 -0
  10. package/dist/vendor/adapters/direct-provider.d.ts +10 -0
  11. package/dist/vendor/adapters/direct-provider.js +41 -0
  12. package/dist/vendor/adapters/index.d.ts +5 -0
  13. package/dist/vendor/adapters/index.js +5 -0
  14. package/dist/vendor/adapters/runtime-support.d.ts +14 -0
  15. package/dist/vendor/adapters/runtime-support.js +52 -0
  16. package/dist/vendor/adapters/stub-agent-cli.d.ts +8 -0
  17. package/dist/vendor/adapters/stub-agent-cli.js +41 -0
  18. package/dist/vendor/adapters/stub-direct-provider.d.ts +8 -0
  19. package/dist/vendor/adapters/stub-direct-provider.js +10 -0
  20. package/dist/vendor/cli/bin/martin.d.ts +2 -0
  21. package/dist/vendor/cli/bin/martin.js +19 -0
  22. package/dist/vendor/cli/index.d.ts +39 -0
  23. package/dist/vendor/cli/index.js +634 -0
  24. package/dist/vendor/cli/persistence.d.ts +34 -0
  25. package/dist/vendor/cli/persistence.js +71 -0
  26. package/dist/vendor/contracts/governance.d.ts +21 -0
  27. package/dist/vendor/contracts/governance.js +12 -0
  28. package/dist/vendor/contracts/index.d.ts +330 -0
  29. package/dist/vendor/contracts/index.js +203 -0
  30. package/dist/vendor/core/compiler.d.ts +50 -0
  31. package/dist/vendor/core/compiler.js +47 -0
  32. package/dist/vendor/core/grounding.d.ts +37 -0
  33. package/dist/vendor/core/grounding.js +270 -0
  34. package/dist/vendor/core/index.d.ts +145 -0
  35. package/dist/vendor/core/index.js +1099 -0
  36. package/dist/vendor/core/leash.d.ts +48 -0
  37. package/dist/vendor/core/leash.js +408 -0
  38. package/dist/vendor/core/persistence/compiler.d.ts +18 -0
  39. package/dist/vendor/core/persistence/compiler.js +35 -0
  40. package/dist/vendor/core/persistence/index.d.ts +6 -0
  41. package/dist/vendor/core/persistence/index.js +4 -0
  42. package/dist/vendor/core/persistence/ledger.d.ts +23 -0
  43. package/dist/vendor/core/persistence/ledger.js +10 -0
  44. package/dist/vendor/core/persistence/store.d.ts +77 -0
  45. package/dist/vendor/core/persistence/store.js +84 -0
  46. package/dist/vendor/core/policy.d.ts +126 -0
  47. package/dist/vendor/core/policy.js +625 -0
  48. package/dist/vendor/core/rollback.d.ts +11 -0
  49. package/dist/vendor/core/rollback.js +219 -0
  50. package/docs/oss/EXAMPLES.md +126 -126
  51. package/docs/oss/OSS-BOUNDARY-REPORT.json +113 -113
  52. package/docs/oss/OSS-BOUNDARY-REPORT.md +48 -48
  53. package/docs/oss/QUICKSTART.md +135 -135
  54. package/docs/oss/README.md +93 -93
  55. package/docs/oss/RELEASE-SURFACE-REPORT.json +45 -45
  56. package/docs/oss/RELEASE-SURFACE-REPORT.md +35 -35
  57. package/package.json +56 -54
@@ -1,93 +1,93 @@
1
- # Martin OSS Core
2
-
3
- Martin Loop is a governed AI coding-loop runtime. The core runtime is real and verified through the Phase 12 certification gate; the repo is now in Phase 13 release-candidate engineering, which means the focus is reproducibility, OSS boundary cleanup, and pilot readiness rather than new feature invention.
4
-
5
- ## What the OSS core includes today
6
-
7
- - `@martin/contracts`: shared loop, policy, grounding, leash, budget, and rollback types
8
- - `@martin/core`: the runtime controller, persistence layer, grounding scanner, leash engine, patch-truth scoring, and rollback restoration logic
9
- - `@martin/adapters`: normalized Claude CLI, Codex CLI, and direct-provider or stub adapter surfaces
10
- - `@martin/cli`: the local operator CLI for `run`, `inspect`, and `resume`
11
- - `@martin/mcp`: the MCP server surface for `martin_run`, `martin_inspect`, and `martin_status`
12
-
13
- ## What is still outside the initial OSS promise
14
-
15
- - The root workspace now exposes the `martin-loop` public package facade, but registry publication is still a later release step.
16
- - `@martin/contracts`, `@martin/core`, and `@martin/adapters` are still marked `private` in their package manifests.
17
- - The hosted control-plane and local dashboard remain in the repo, but they are not yet the finalized public OSS boundary.
18
- - The benchmark harness remains a workspace-only RC surface under `benchmarks/` and is not part of the publishable CLI boundary yet.
19
- - Final licensing, public package publishing, and managed-product packaging are still gated behind later Phase 13 to Phase 15 work.
20
-
21
- That means this repo is ready for grounded engineering review and RC validation, but it is not yet claiming a finished public OSS release.
22
-
23
- ## Runtime truth the current core enforces
24
-
25
- - Explicit policy phases: `GATHER`, `ADMIT`, `PATCH`, `VERIFY`, `RECOVER`, `ESCALATE`, `ABORT`, `HANDOFF`
26
- - Grounding scans against repo anatomy before success is accepted
27
- - Blocking leash behavior for unsafe verifier commands, file-scope violations, approval-boundary changes, and secret handling
28
- - Provenance-aware accounting using `actual`, `estimated`, and `unavailable`
29
- - Persisted attempt artifacts under `~/.martin/runs/<runId>/artifacts/attempt-XXX/`
30
- - Patch-truth scoring plus rollback boundary and restore outcome artifacts for discarded or blocked repo-backed attempts
31
-
32
- ## Trust profiles
33
-
34
- Martin currently exposes these execution profiles:
35
-
36
- - `strict_local`: safest default for local repo work
37
- - `ci_safe`: tighter CI-oriented behavior
38
- - `staging_controlled`: controlled outbound or network allowances with approvals
39
- - `research_untrusted`: looser network posture for research-oriented runs while still enforcing approval boundaries
40
-
41
- ## Accounting labels
42
-
43
- Martin keeps cost provenance explicit:
44
-
45
- - `actual`: reported directly by the provider or adapter settlement
46
- - `estimated`: derived from pricing logic or modeled usage
47
- - `unavailable`: the adapter could not produce a trustworthy number
48
-
49
- Do not collapse those labels when building dashboards, docs, or public claims.
50
-
51
- ## Frozen public launch target
52
-
53
- The current engineering memo freezes these public-launch targets for release planning:
54
-
55
- - install target: `npm install martin-loop`
56
- - CLI target: `npx martin-loop ...`
57
- - SDK target: `import { MartinLoop } from "martin-loop"`
58
-
59
- Those targets are now implemented in the root package facade and verified through a clean-install smoke test. During the current RC phase, the honest operator path still includes the repo-local workflow documented below and in the quickstart, because public registry publication and broader release packaging remain later steps.
60
-
61
- ## Reproducibility
62
-
63
- From the repo root:
64
-
65
- ```bash
66
- pnpm install
67
- pnpm build
68
- pnpm rc:validate
69
- ```
70
-
71
- `pnpm rc:validate` runs the current RC matrix in an isolated temp home so fresh-home behavior is checked instead of depending on warmed `~/.martin` state. Use `pnpm rc:validate:install` when you also want the RC run to perform a clean `pnpm install --frozen-lockfile` first.
72
-
73
- ## RC gate commands
74
-
75
- The current release-candidate gate is:
76
-
77
- - `pnpm oss:validate`
78
- - `pnpm public:smoke`
79
- - `pnpm repo:smoke`
80
- - `pnpm rc:validate`
81
- - `pnpm pilot:prep:validate`
82
- - `pnpm release:matrix:local`
83
-
84
- `pnpm rc:validate` now includes the machine-checked release-surface audit in addition to the existing build, test, benchmark, provider-path, OSS-boundary, and control-plane checks.
85
-
86
- ## Where to go next
87
-
88
- - [`docs/oss/QUICKSTART.md`](./QUICKSTART.md) for clone-to-first-run setup
89
- - [`docs/oss/EXAMPLES.md`](./EXAMPLES.md) for grounded CLI and MCP examples
90
- - [`docs/oss/OSS-BOUNDARY-REPORT.md`](./OSS-BOUNDARY-REPORT.md) for the current machine-checked OSS boundary and public-surface status
91
- - [`docs/oss/RELEASE-SURFACE-REPORT.md`](./RELEASE-SURFACE-REPORT.md) for the current machine-checked release-surface audit
92
- - [`docs/pilot/README.md`](../pilot/README.md) for the pilot-prep package that remains explicitly gated behind Phase 13 completion
93
- - [`../../README.md`](../../README.md) for the repo-level RC status and workspace map
1
+ # Martin OSS Core
2
+
3
+ Martin Loop is a governed AI coding-loop runtime. The core runtime is real and verified through the Phase 12 certification gate; the repo is now in Phase 13 release-candidate engineering, which means the focus is reproducibility, OSS boundary cleanup, and pilot readiness rather than new feature invention.
4
+
5
+ ## What the OSS core includes today
6
+
7
+ - `@martin/contracts`: shared loop, policy, grounding, leash, budget, and rollback types
8
+ - `@martin/core`: the runtime controller, persistence layer, grounding scanner, leash engine, patch-truth scoring, and rollback restoration logic
9
+ - `@martin/adapters`: normalized Claude CLI, Codex CLI, and direct-provider or stub adapter surfaces
10
+ - `@martin/cli`: the local operator CLI for `run`, `inspect`, and `resume`
11
+ - `@martin/mcp`: the MCP server surface for `martin_run`, `martin_inspect`, and `martin_status`
12
+
13
+ ## What is still outside the initial OSS promise
14
+
15
+ - The root workspace now exposes the `martin-loop` public package facade, but registry publication is still a later release step.
16
+ - `@martin/contracts`, `@martin/core`, and `@martin/adapters` are still marked `private` in their package manifests.
17
+ - The hosted control-plane and local dashboard remain in the repo, but they are not yet the finalized public OSS boundary.
18
+ - The benchmark harness remains a workspace-only RC surface under `benchmarks/` and is not part of the publishable CLI boundary yet.
19
+ - Final licensing, public package publishing, and managed-product packaging are still gated behind later Phase 13 to Phase 15 work.
20
+
21
+ That means this repo is ready for grounded engineering review and RC validation, but it is not yet claiming a finished public OSS release.
22
+
23
+ ## Runtime truth the current core enforces
24
+
25
+ - Explicit policy phases: `GATHER`, `ADMIT`, `PATCH`, `VERIFY`, `RECOVER`, `ESCALATE`, `ABORT`, `HANDOFF`
26
+ - Grounding scans against repo anatomy before success is accepted
27
+ - Blocking leash behavior for unsafe verifier commands, file-scope violations, approval-boundary changes, and secret handling
28
+ - Provenance-aware accounting using `actual`, `estimated`, and `unavailable`
29
+ - Persisted attempt artifacts under `~/.martin/runs/<runId>/artifacts/attempt-XXX/`
30
+ - Patch-truth scoring plus rollback boundary and restore outcome artifacts for discarded or blocked repo-backed attempts
31
+
32
+ ## Trust profiles
33
+
34
+ Martin currently exposes these execution profiles:
35
+
36
+ - `strict_local`: safest default for local repo work
37
+ - `ci_safe`: tighter CI-oriented behavior
38
+ - `staging_controlled`: controlled outbound or network allowances with approvals
39
+ - `research_untrusted`: looser network posture for research-oriented runs while still enforcing approval boundaries
40
+
41
+ ## Accounting labels
42
+
43
+ Martin keeps cost provenance explicit:
44
+
45
+ - `actual`: reported directly by the provider or adapter settlement
46
+ - `estimated`: derived from pricing logic or modeled usage
47
+ - `unavailable`: the adapter could not produce a trustworthy number
48
+
49
+ Do not collapse those labels when building dashboards, docs, or public claims.
50
+
51
+ ## Frozen public launch target
52
+
53
+ The current engineering memo freezes these public-launch targets for release planning:
54
+
55
+ - install target: `npm install martin-loop`
56
+ - CLI target: `npx martin-loop ...`
57
+ - SDK target: `import { MartinLoop } from "martin-loop"`
58
+
59
+ Those targets are now implemented in the root package facade and verified through a clean-install smoke test. During the current RC phase, the honest operator path still includes the repo-local workflow documented below and in the quickstart, because public registry publication and broader release packaging remain later steps.
60
+
61
+ ## Reproducibility
62
+
63
+ From the repo root:
64
+
65
+ ```bash
66
+ pnpm install
67
+ pnpm build
68
+ pnpm rc:validate
69
+ ```
70
+
71
+ `pnpm rc:validate` runs the current RC matrix in an isolated temp home so fresh-home behavior is checked instead of depending on warmed `~/.martin` state. Use `pnpm rc:validate:install` when you also want the RC run to perform a clean `pnpm install --frozen-lockfile` first.
72
+
73
+ ## RC gate commands
74
+
75
+ The current release-candidate gate is:
76
+
77
+ - `pnpm oss:validate`
78
+ - `pnpm public:smoke`
79
+ - `pnpm repo:smoke`
80
+ - `pnpm rc:validate`
81
+ - `pnpm pilot:prep:validate`
82
+ - `pnpm release:matrix:local`
83
+
84
+ `pnpm rc:validate` now includes the machine-checked release-surface audit in addition to the existing build, test, benchmark, provider-path, OSS-boundary, and control-plane checks.
85
+
86
+ ## Where to go next
87
+
88
+ - [`docs/oss/QUICKSTART.md`](./QUICKSTART.md) for clone-to-first-run setup
89
+ - [`docs/oss/EXAMPLES.md`](./EXAMPLES.md) for grounded CLI and MCP examples
90
+ - [`docs/oss/OSS-BOUNDARY-REPORT.md`](./OSS-BOUNDARY-REPORT.md) for the current machine-checked OSS boundary and public-surface status
91
+ - [`docs/oss/RELEASE-SURFACE-REPORT.md`](./RELEASE-SURFACE-REPORT.md) for the current machine-checked release-surface audit
92
+ - [`docs/pilot/README.md`](../pilot/README.md) for the pilot-prep package that remains explicitly gated behind Phase 13 completion
93
+ - [`../../README.md`](../../README.md) for the repo-level RC status and workspace map
@@ -1,45 +1,45 @@
1
- {
2
- "generatedAt": "2026-04-21T09:43:03.931Z",
3
- "publicSurface": {
4
- "packageName": "martin-loop",
5
- "installCommand": "npm install martin-loop",
6
- "npxCommand": "npx martin-loop",
7
- "sdkImportStatement": "import { MartinLoop } from \"martin-loop\""
8
- },
9
- "rcGateCommands": [
10
- "pnpm oss:validate",
11
- "pnpm public:smoke",
12
- "pnpm repo:smoke",
13
- "pnpm rc:validate",
14
- "pnpm pilot:prep:validate",
15
- "pnpm release:matrix:local"
16
- ],
17
- "docCoverage": {
18
- "readme": {
19
- "path": "README.md",
20
- "hasPublicSurface": true,
21
- "hasRcGateCommands": true,
22
- "hasRegistryCaution": true
23
- },
24
- "ossReadme": {
25
- "path": "docs\\oss\\README.md",
26
- "hasPublicSurface": true,
27
- "hasAccountingLabels": true,
28
- "hasTrustProfiles": true,
29
- "hasRegistryCaution": true
30
- },
31
- "quickstart": {
32
- "path": "docs\\oss\\QUICKSTART.md",
33
- "hasPublicSurface": true,
34
- "hasRcGateCommands": true,
35
- "hasRegistryCaution": true
36
- },
37
- "examples": {
38
- "path": "docs\\oss\\EXAMPLES.md",
39
- "hasRegistryCaution": true
40
- }
41
- },
42
- "deprecatedFiles": [],
43
- "verdict": "go",
44
- "failures": []
45
- }
1
+ {
2
+ "generatedAt": "2026-04-23T14:55:08.167Z",
3
+ "publicSurface": {
4
+ "packageName": "martin-loop",
5
+ "installCommand": "npm install martin-loop",
6
+ "npxCommand": "npx martin-loop",
7
+ "sdkImportStatement": "import { MartinLoop } from \"martin-loop\""
8
+ },
9
+ "rcGateCommands": [
10
+ "pnpm oss:validate",
11
+ "pnpm public:smoke",
12
+ "pnpm repo:smoke",
13
+ "pnpm rc:validate",
14
+ "pnpm pilot:prep:validate",
15
+ "pnpm release:matrix:local"
16
+ ],
17
+ "docCoverage": {
18
+ "readme": {
19
+ "path": "README.md",
20
+ "hasPublicSurface": true,
21
+ "hasRcGateCommands": true,
22
+ "hasRegistryCaution": true
23
+ },
24
+ "ossReadme": {
25
+ "path": "docs\\oss\\README.md",
26
+ "hasPublicSurface": true,
27
+ "hasAccountingLabels": true,
28
+ "hasTrustProfiles": true,
29
+ "hasRegistryCaution": true
30
+ },
31
+ "quickstart": {
32
+ "path": "docs\\oss\\QUICKSTART.md",
33
+ "hasPublicSurface": true,
34
+ "hasRcGateCommands": true,
35
+ "hasRegistryCaution": true
36
+ },
37
+ "examples": {
38
+ "path": "docs\\oss\\EXAMPLES.md",
39
+ "hasRegistryCaution": true
40
+ }
41
+ },
42
+ "deprecatedFiles": [],
43
+ "verdict": "go",
44
+ "failures": []
45
+ }
@@ -1,35 +1,35 @@
1
- # Martin Loop Phase 13 Release Surface Audit
2
-
3
- Generated: 2026-04-21T09:43:03.931Z
4
-
5
- ## Verdict
6
- **GO**
7
-
8
- ## Public Package Surface
9
- - Package target: martin-loop
10
- - Install target: `npm install martin-loop`
11
- - CLI target: `npx martin-loop`
12
- - SDK target: `import { MartinLoop } from "martin-loop"`
13
-
14
- ## RC Gate Commands
15
- - `pnpm oss:validate`
16
- - `pnpm public:smoke`
17
- - `pnpm repo:smoke`
18
- - `pnpm rc:validate`
19
- - `pnpm pilot:prep:validate`
20
- - `pnpm release:matrix:local`
21
-
22
- ## Doc Coverage
23
- | Surface | Path | Checks |
24
- |---|---|---|
25
- | Root README | README.md | public surface: yes, RC gate: yes, registry caution: yes |
26
- | OSS README | docs/oss/README.md | public surface: yes, accounting labels: yes, trust profiles: yes, registry caution: yes |
27
- | Quickstart | docs/oss/QUICKSTART.md | public surface: yes, RC gate: yes, registry caution: yes |
28
- | Examples | docs/oss/EXAMPLES.md | registry caution: yes |
29
-
30
- ## Deprecated Files
31
- - None.
32
-
33
- ## Findings
34
- - No release-surface drift detected across the audited RC docs and commands.
35
-
1
+ # Martin Loop Phase 13 Release Surface Audit
2
+
3
+ Generated: 2026-04-23T14:55:08.167Z
4
+
5
+ ## Verdict
6
+ **GO**
7
+
8
+ ## Public Package Surface
9
+ - Package target: martin-loop
10
+ - Install target: `npm install martin-loop`
11
+ - CLI target: `npx martin-loop`
12
+ - SDK target: `import { MartinLoop } from "martin-loop"`
13
+
14
+ ## RC Gate Commands
15
+ - `pnpm oss:validate`
16
+ - `pnpm public:smoke`
17
+ - `pnpm repo:smoke`
18
+ - `pnpm rc:validate`
19
+ - `pnpm pilot:prep:validate`
20
+ - `pnpm release:matrix:local`
21
+
22
+ ## Doc Coverage
23
+ | Surface | Path | Checks |
24
+ |---|---|---|
25
+ | Root README | README.md | public surface: yes, RC gate: yes, registry caution: yes |
26
+ | OSS README | docs/oss/README.md | public surface: yes, accounting labels: yes, trust profiles: yes, registry caution: yes |
27
+ | Quickstart | docs/oss/QUICKSTART.md | public surface: yes, RC gate: yes, registry caution: yes |
28
+ | Examples | docs/oss/EXAMPLES.md | registry caution: yes |
29
+
30
+ ## Deprecated Files
31
+ - None.
32
+
33
+ ## Findings
34
+ - No release-surface drift detected across the audited RC docs and commands.
35
+
package/package.json CHANGED
@@ -1,54 +1,56 @@
1
- {
2
- "name": "martin-loop",
3
- "private": false,
4
- "version": "0.1.2",
5
- "type": "module",
6
- "description": "Martin Loop dual-track monorepo for the OSS runtime and hosted SaaS control plane.",
7
- "packageManager": "pnpm@10.17.1",
8
- "main": "./dist/index.js",
9
- "types": "./dist/index.d.ts",
10
- "bin": {
11
- "martin-loop": "./dist/bin/martin-loop.js",
12
- "martin": "./dist/bin/martin-loop.js"
13
- },
14
- "exports": {
15
- ".": {
16
- "types": "./dist/index.d.ts",
17
- "default": "./dist/index.js"
18
- },
19
- "./package.json": "./package.json"
20
- },
21
- "files": [
22
- "dist",
23
- "README.md",
24
- "docs/oss"
25
- ],
26
- "publishConfig": {
27
- "access": "public"
28
- },
29
- "scripts": {
30
- "build": "pnpm -r build && node ./scripts/build-public-facade.mjs",
31
- "test": "pnpm -r test",
32
- "lint": "pnpm -r lint",
33
- "oss:validate": "node ./scripts/oss-boundary.mjs",
34
- "release:surface:validate": "node ./scripts/release-surface-audit.mjs",
35
- "pilot:prep:validate": "node ./scripts/pilot-prep-audit.mjs",
36
- "public:smoke": "node ./scripts/public-facade-smoke.mjs",
37
- "repo:smoke": "node ./scripts/repo-backed-smoke.mjs",
38
- "rc:validate": "node ./scripts/rc-validation.mjs",
39
- "rc:validate:install": "node ./scripts/rc-validation.mjs --install",
40
- "release:matrix:local": "node ./scripts/release-matrix.mjs",
41
- "dev:control-plane": "pnpm --filter @martin/control-plane dev",
42
- "run:cli": "pnpm --filter @martin/cli dev",
43
- "eval": "pnpm --filter @martin/benchmarks eval",
44
- "dev:dashboard": "node apps/local-dashboard/server.js"
45
- },
46
- "devDependencies": {
47
- "@types/node": "^22.13.10",
48
- "@types/react": "^19.0.12",
49
- "@types/react-dom": "^19.0.5",
50
- "tsx": "^4.19.3",
51
- "typescript": "^5.8.2",
52
- "vitest": "^3.0.8"
53
- }
54
- }
1
+ {
2
+ "name": "martin-loop",
3
+ "private": false,
4
+ "version": "0.1.3",
5
+ "type": "module",
6
+ "description": "Martin Loop dual-track monorepo for the OSS runtime and hosted SaaS control plane.",
7
+ "license": "MIT",
8
+ "packageManager": "pnpm@10.17.1",
9
+ "main": "./dist/index.js",
10
+ "types": "./dist/index.d.ts",
11
+ "bin": {
12
+ "martin-loop": "./dist/bin/martin-loop.js",
13
+ "martin": "./dist/bin/martin-loop.js"
14
+ },
15
+ "exports": {
16
+ ".": {
17
+ "types": "./dist/index.d.ts",
18
+ "default": "./dist/index.js"
19
+ },
20
+ "./package.json": "./package.json"
21
+ },
22
+ "files": [
23
+ "dist",
24
+ "README.md",
25
+ "docs/oss"
26
+ ],
27
+ "publishConfig": {
28
+ "access": "public"
29
+ },
30
+ "scripts": {
31
+ "build": "pnpm -r build && node ./scripts/build-public-facade.mjs",
32
+ "prepublishOnly": "pnpm build",
33
+ "test": "pnpm -r test",
34
+ "lint": "pnpm -r lint",
35
+ "oss:validate": "node ./scripts/oss-boundary.mjs",
36
+ "release:surface:validate": "node ./scripts/release-surface-audit.mjs",
37
+ "pilot:prep:validate": "node ./scripts/pilot-prep-audit.mjs",
38
+ "public:smoke": "node ./scripts/public-facade-smoke.mjs",
39
+ "repo:smoke": "node ./scripts/repo-backed-smoke.mjs",
40
+ "rc:validate": "node ./scripts/rc-validation.mjs",
41
+ "rc:validate:install": "node ./scripts/rc-validation.mjs --install",
42
+ "release:matrix:local": "node ./scripts/release-matrix.mjs",
43
+ "dev:control-plane": "pnpm --filter @martin/control-plane dev",
44
+ "run:cli": "pnpm --filter @martin/cli dev",
45
+ "eval": "pnpm --filter @martin/benchmarks eval",
46
+ "dev:dashboard": "node apps/local-dashboard/server.js"
47
+ },
48
+ "devDependencies": {
49
+ "@types/node": "^22.13.10",
50
+ "@types/react": "^19.0.12",
51
+ "@types/react-dom": "^19.0.5",
52
+ "tsx": "^4.19.3",
53
+ "typescript": "^5.8.2",
54
+ "vitest": "^3.0.8"
55
+ }
56
+ }