@interf/compiler 0.13.0 → 0.18.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/LICENSE.md +1 -0
- package/README.md +50 -7
- package/TRADEMARKS.md +4 -4
- package/agent-skills/interf-actions/SKILL.md +51 -5
- package/agent-skills/interf-actions/references/cli.md +82 -82
- package/builtin-methods/interf-default/README.md +6 -7
- package/builtin-methods/interf-default/method.json +7 -68
- package/builtin-methods/interf-default/method.schema.json +52 -50
- package/dist/cli/commands/agents.d.ts +2 -0
- package/dist/cli/commands/agents.js +213 -0
- package/dist/cli/commands/compile.js +10 -1
- package/dist/cli/commands/doctor.js +1 -1
- package/dist/cli/commands/login.js +1 -1
- package/dist/cli/commands/logout.js +1 -1
- package/dist/cli/commands/mcp.d.ts +42 -0
- package/dist/cli/commands/mcp.js +239 -0
- package/dist/cli/commands/method.js +1 -1
- package/dist/cli/commands/prep.js +81 -7
- package/dist/cli/commands/reset.js +1 -1
- package/dist/cli/commands/runs.js +1 -1
- package/dist/cli/commands/status.js +1 -1
- package/dist/cli/commands/verify.d.ts +10 -0
- package/dist/cli/commands/{test.js → verify.js} +30 -15
- package/dist/cli/commands/web.js +71 -18
- package/dist/cli/commands/wizard.js +462 -107
- package/dist/cli/index.d.ts +4 -2
- package/dist/cli/index.js +7 -3
- package/dist/compiler-ui/404.html +1 -1
- package/dist/compiler-ui/__next.__PAGE__.txt +2 -2
- package/dist/compiler-ui/__next._full.txt +3 -3
- package/dist/compiler-ui/__next._head.txt +1 -1
- package/dist/compiler-ui/__next._index.txt +2 -2
- package/dist/compiler-ui/__next._tree.txt +2 -2
- package/dist/compiler-ui/_next/static/chunks/{045gole2ojo3g.css → 0_c_tvh-cukjz.css} +1 -1
- package/dist/compiler-ui/_next/static/chunks/0f_geuwdesg_c.js +114 -0
- package/dist/compiler-ui/_not-found/__next._full.txt +2 -2
- package/dist/compiler-ui/_not-found/__next._head.txt +1 -1
- package/dist/compiler-ui/_not-found/__next._index.txt +2 -2
- package/dist/compiler-ui/_not-found/__next._not-found.__PAGE__.txt +1 -1
- package/dist/compiler-ui/_not-found/__next._not-found.txt +1 -1
- package/dist/compiler-ui/_not-found/__next._tree.txt +2 -2
- package/dist/compiler-ui/_not-found.html +1 -1
- package/dist/compiler-ui/_not-found.txt +2 -2
- package/dist/compiler-ui/index.html +1 -1
- package/dist/compiler-ui/index.txt +3 -3
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/packages/contracts/index.d.ts +2 -1
- package/dist/packages/contracts/index.js +1 -0
- package/dist/packages/contracts/lib/schema.d.ts +324 -31
- package/dist/packages/contracts/lib/schema.js +281 -21
- package/dist/packages/{local-service → engine}/action-definitions.js +9 -2
- package/dist/packages/{local-service → engine}/action-planner.d.ts +1 -1
- package/dist/packages/{local-service → engine}/action-planner.js +1 -1
- package/dist/packages/{agents → engine/agents}/index.d.ts +3 -0
- package/dist/packages/{agents → engine/agents}/index.js +3 -0
- package/dist/packages/{agents → engine/agents}/lib/compiled-bootstrap.js +2 -2
- package/dist/packages/engine/agents/lib/detection.d.ts +13 -0
- package/dist/packages/{agents → engine/agents}/lib/detection.js +11 -0
- package/dist/packages/{agents → engine/agents}/lib/executors.d.ts +2 -2
- package/dist/packages/{agents → engine/agents}/lib/shells.d.ts +14 -6
- package/dist/packages/{agents → engine/agents}/lib/shells.js +133 -126
- package/dist/packages/{agents → engine/agents}/lib/user-config.js +2 -2
- package/dist/packages/engine/agents/registry.d.ts +91 -0
- package/dist/packages/engine/agents/registry.js +321 -0
- package/dist/packages/engine/agents/role-executors.d.ts +35 -0
- package/dist/packages/engine/agents/role-executors.js +88 -0
- package/dist/packages/engine/agents/role-router.d.ts +66 -0
- package/dist/packages/engine/agents/role-router.js +73 -0
- package/dist/packages/{local-service → engine}/client.d.ts +9 -9
- package/dist/packages/{local-service → engine}/client.js +11 -11
- package/dist/packages/engine/cloud-seams.d.ts +115 -0
- package/dist/packages/engine/cloud-seams.js +84 -0
- package/dist/packages/engine/compile/artifact-counts.d.ts +1 -0
- package/dist/packages/{compiler → engine/compile}/artifact-counts.js +4 -4
- package/dist/packages/engine/compile/artifact-status.d.ts +41 -0
- package/dist/packages/engine/compile/artifact-status.js +166 -0
- package/dist/packages/engine/compile/billing-events.d.ts +89 -0
- package/dist/packages/engine/compile/billing-events.js +74 -0
- package/dist/packages/engine/compile/check-evaluator.d.ts +66 -0
- package/dist/packages/engine/compile/check-evaluator.js +298 -0
- package/dist/packages/{compiler → engine/compile}/compiled-pipeline.d.ts +12 -1
- package/dist/packages/{compiler → engine/compile}/compiled-pipeline.js +16 -6
- package/dist/packages/engine/compile/compiled-schema.d.ts +21 -0
- package/dist/packages/engine/compile/compiled-schema.js +126 -0
- package/dist/packages/{compiler → engine/compile}/compiled-stage-plan.d.ts +2 -1
- package/dist/packages/{compiler → engine/compile}/compiled-stage-plan.js +35 -18
- package/dist/packages/{compiler → engine/compile}/compiled-stage-runner.d.ts +1 -1
- package/dist/packages/{compiler → engine/compile}/compiled-stage-runner.js +4 -4
- package/dist/packages/{compiler → engine/compile}/compiled-target.d.ts +2 -2
- package/dist/packages/{compiler → engine/compile}/compiled-target.js +2 -2
- package/dist/packages/{compiler → engine/compile}/discovery.js +1 -1
- package/dist/packages/{compiler → engine/compile}/index.d.ts +0 -1
- package/dist/packages/{compiler → engine/compile}/index.js +0 -1
- package/dist/packages/{compiler → engine/compile}/lib/schema.d.ts +113 -94
- package/dist/packages/{compiler → engine/compile}/lib/schema.js +35 -39
- package/dist/packages/engine/compile/method-primitives.d.ts +2 -0
- package/dist/packages/{compiler → engine/compile}/method-primitives.js +1 -1
- package/dist/packages/{compiler → engine/compile}/method-runs.d.ts +3 -3
- package/dist/packages/{compiler → engine/compile}/method-runs.js +3 -3
- package/dist/packages/{compiler → engine/compile}/reset.js +4 -4
- package/dist/packages/{compiler → engine/compile}/runtime-contracts.js +2 -1
- package/dist/packages/{compiler → engine/compile}/runtime-prompt.js +3 -2
- package/dist/packages/{compiler → engine/compile}/runtime-reconcile.d.ts +1 -1
- package/dist/packages/{compiler → engine/compile}/runtime-reconcile.js +47 -45
- package/dist/packages/{compiler → engine/compile}/runtime-runs.d.ts +1 -2
- package/dist/packages/{compiler → engine/compile}/runtime-runs.js +3 -44
- package/dist/packages/{compiler → engine/compile}/runtime-types.d.ts +7 -12
- package/dist/packages/engine/compile/runtime.d.ts +5 -0
- package/dist/packages/{compiler → engine/compile}/runtime.js +1 -2
- package/dist/packages/{compiler → engine/compile}/source-files.d.ts +1 -1
- package/dist/packages/{compiler → engine/compile}/source-files.js +3 -3
- package/dist/packages/{compiler → engine/compile}/state-health.js +8 -8
- package/dist/packages/{compiler → engine/compile}/state-io.js +2 -2
- package/dist/packages/{compiler → engine/compile}/state-view.js +9 -8
- package/dist/packages/{compiler → engine/compile}/validate-compiled.js +63 -32
- package/dist/packages/{compiler → engine/compile}/validate.d.ts +1 -1
- package/dist/packages/{compiler → engine/compile}/validate.js +29 -27
- package/dist/packages/{execution → engine/execution}/lib/schema.d.ts +81 -55
- package/dist/packages/{execution → engine/execution}/lib/schema.js +14 -6
- package/dist/packages/engine/index.d.ts +22 -0
- package/dist/packages/engine/index.js +15 -0
- package/dist/packages/{local-service → engine}/lib/schema.d.ts +620 -435
- package/dist/packages/{local-service → engine}/lib/schema.js +103 -63
- package/dist/packages/{local-service → engine}/native-run-handlers.d.ts +7 -5
- package/dist/packages/{local-service → engine}/native-run-handlers.js +81 -29
- package/dist/packages/{local-service → engine}/preparation-store.d.ts +22 -4
- package/dist/packages/{local-service → engine}/preparation-store.js +56 -25
- package/dist/packages/{local-service → engine}/readiness-check-draft.d.ts +2 -2
- package/dist/packages/{local-service → engine}/routes.d.ts +36 -1
- package/dist/packages/{local-service → engine}/routes.js +38 -1
- package/dist/packages/{local-service → engine}/run-observability.d.ts +3 -3
- package/dist/packages/{local-service → engine}/run-observability.js +15 -15
- package/dist/packages/{local-service → engine}/runtime-event-applier.d.ts +1 -1
- package/dist/packages/{local-service → engine}/runtime-event-applier.js +7 -0
- package/dist/packages/{local-service → engine}/runtime-persistence.d.ts +6 -6
- package/dist/packages/{local-service → engine}/runtime-persistence.js +9 -9
- package/dist/packages/{local-service → engine}/runtime-proposal-helpers.d.ts +1 -1
- package/dist/packages/{local-service → engine}/runtime-proposal-helpers.js +5 -5
- package/dist/packages/{local-service → engine}/runtime-resource-builders.d.ts +12 -12
- package/dist/packages/{local-service → engine}/runtime-resource-builders.js +6 -5
- package/dist/packages/{local-service → engine}/runtime.d.ts +147 -56
- package/dist/packages/{local-service → engine}/runtime.js +333 -205
- package/dist/packages/{local-service → engine}/server.d.ts +25 -0
- package/dist/packages/{local-service → engine}/server.js +338 -17
- package/dist/packages/engine/verify/index.d.ts +13 -0
- package/dist/packages/engine/verify/index.js +10 -0
- package/dist/packages/{testing → engine/verify}/lib/schema.d.ts +1 -1
- package/dist/packages/{testing → engine/verify}/lib/schema.js +1 -1
- package/dist/packages/{testing → engine/verify}/readiness-check-run.d.ts +27 -11
- package/dist/packages/{testing → engine/verify}/readiness-check-run.js +72 -60
- package/dist/packages/{testing/test-execution.d.ts → engine/verify/verify-execution.d.ts} +2 -2
- package/dist/packages/{testing/test-execution.js → engine/verify/verify-execution.js} +2 -2
- package/dist/packages/{testing/test-paths.d.ts → engine/verify/verify-paths.d.ts} +1 -1
- package/dist/packages/{testing/test-paths.js → engine/verify/verify-paths.js} +2 -2
- package/dist/packages/{testing/test-sandbox.d.ts → engine/verify/verify-sandbox.d.ts} +1 -1
- package/dist/packages/{testing/test-sandbox.js → engine/verify/verify-sandbox.js} +6 -6
- package/dist/packages/{testing/test-specs.d.ts → engine/verify/verify-specs.d.ts} +1 -1
- package/dist/packages/{testing/test-specs.js → engine/verify/verify-specs.js} +2 -2
- package/dist/packages/{testing/test-targets.d.ts → engine/verify/verify-targets.d.ts} +1 -1
- package/dist/packages/{testing/test-targets.js → engine/verify/verify-targets.js} +3 -3
- package/dist/packages/{testing/test.d.ts → engine/verify/verify.d.ts} +4 -4
- package/dist/packages/{testing/test.js → engine/verify/verify.js} +3 -3
- package/dist/packages/engine/wire-schemas.d.ts +545 -0
- package/dist/packages/engine/wire-schemas.js +59 -0
- package/dist/packages/methods/authoring/method-authoring.d.ts +34 -0
- package/dist/packages/methods/authoring/method-authoring.js +260 -0
- package/dist/packages/{method-authoring → methods/authoring}/method-edit-session.d.ts +2 -2
- package/dist/packages/{method-authoring → methods/authoring}/method-edit-session.js +5 -5
- package/dist/packages/{method-authoring → methods/authoring}/method-improvement.d.ts +4 -4
- package/dist/packages/{method-authoring → methods/authoring}/method-improvement.js +16 -10
- package/dist/packages/{method-package → methods/package}/builtin-compiled-method.d.ts +12 -12
- package/dist/packages/{method-package → methods/package}/builtin-compiled-method.js +27 -24
- package/dist/packages/methods/package/context-interface.d.ts +73 -0
- package/dist/packages/{method-package → methods/package}/context-interface.js +50 -41
- package/dist/packages/{method-package → methods/package}/interf-method-package.js +31 -49
- package/dist/packages/{method-package → methods/package}/lib/package-root.js +2 -2
- package/dist/packages/{method-package → methods/package}/local-methods.d.ts +10 -5
- package/dist/packages/{method-package → methods/package}/local-methods.js +41 -68
- package/dist/packages/{method-package → methods/package}/method-definitions.d.ts +11 -7
- package/dist/packages/{method-package → methods/package}/method-definitions.js +5 -8
- package/dist/packages/{method-package → methods/package}/method-helpers.d.ts +1 -3
- package/dist/packages/{method-package → methods/package}/method-helpers.js +4 -8
- package/dist/packages/{method-package → methods/package}/method-review-paths.d.ts +1 -1
- package/dist/packages/{method-package → methods/package}/method-review-paths.js +1 -1
- package/dist/packages/{method-package → methods/package}/method-stage-runner.d.ts +4 -9
- package/dist/packages/{method-package → methods/package}/method-stage-runner.js +1 -29
- package/dist/packages/{method-package → methods/package}/user-methods.js +2 -2
- package/dist/packages/{project-model → project}/interf-bootstrap.d.ts +1 -1
- package/dist/packages/{project-model → project}/interf-bootstrap.js +1 -1
- package/dist/packages/{project-model → project}/interf-detect.js +4 -4
- package/dist/packages/{project-model → project}/interf-scaffold.js +18 -18
- package/dist/packages/{project-model → project}/lib/schema.d.ts +2 -2
- package/dist/packages/{project-model → project}/lib/schema.js +1 -1
- package/dist/packages/{project-model → project}/source-config.d.ts +1 -1
- package/dist/packages/{project-model → project}/source-config.js +9 -8
- package/dist/packages/{project-model → project}/source-folders.js +2 -2
- package/package.json +7 -16
- package/dist/cli/commands/test.d.ts +0 -9
- package/dist/compiler-ui/_next/static/chunks/17t-lulmyawg5.js +0 -89
- package/dist/packages/agents/lib/detection.d.ts +0 -7
- package/dist/packages/compiler/artifact-counts.d.ts +0 -1
- package/dist/packages/compiler/compiled-schema.d.ts +0 -31
- package/dist/packages/compiler/compiled-schema.js +0 -141
- package/dist/packages/compiler/method-primitives.d.ts +0 -2
- package/dist/packages/compiler/runtime-acceptance.d.ts +0 -9
- package/dist/packages/compiler/runtime-acceptance.js +0 -262
- package/dist/packages/compiler/runtime.d.ts +0 -6
- package/dist/packages/local-service/index.d.ts +0 -22
- package/dist/packages/local-service/index.js +0 -15
- package/dist/packages/method-authoring/method-authoring.d.ts +0 -24
- package/dist/packages/method-authoring/method-authoring.js +0 -116
- package/dist/packages/method-package/context-interface.d.ts +0 -60
- package/dist/packages/testing/index.d.ts +0 -13
- package/dist/packages/testing/index.js +0 -10
- /package/dist/compiler-ui/_next/static/{C6vVfy3aeYuIO3d2AoNvC → 6qyE1u9m_oBUkvAhhoCmO}/_buildManifest.js +0 -0
- /package/dist/compiler-ui/_next/static/{C6vVfy3aeYuIO3d2AoNvC → 6qyE1u9m_oBUkvAhhoCmO}/_clientMiddlewareManifest.js +0 -0
- /package/dist/compiler-ui/_next/static/{C6vVfy3aeYuIO3d2AoNvC → 6qyE1u9m_oBUkvAhhoCmO}/_ssgManifest.js +0 -0
- /package/dist/packages/{shared → contracts/utils}/file-types.d.ts +0 -0
- /package/dist/packages/{shared → contracts/utils}/file-types.js +0 -0
- /package/dist/packages/{shared → contracts/utils}/filesystem.d.ts +0 -0
- /package/dist/packages/{shared → contracts/utils}/filesystem.js +0 -0
- /package/dist/packages/{shared → contracts/utils}/logger.d.ts +0 -0
- /package/dist/packages/{shared → contracts/utils}/logger.js +0 -0
- /package/dist/packages/{shared → contracts/utils}/naming.d.ts +0 -0
- /package/dist/packages/{shared → contracts/utils}/naming.js +0 -0
- /package/dist/packages/{shared → contracts/utils}/parse.d.ts +0 -0
- /package/dist/packages/{shared → contracts/utils}/parse.js +0 -0
- /package/dist/packages/{shared → contracts/utils}/path-guards.d.ts +0 -0
- /package/dist/packages/{shared → contracts/utils}/path-guards.js +0 -0
- /package/dist/packages/{local-service → engine}/action-definitions.d.ts +0 -0
- /package/dist/packages/{local-service → engine}/action-values.d.ts +0 -0
- /package/dist/packages/{local-service → engine}/action-values.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/agents.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/agents.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/args.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/args.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/chart-guidance.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/chart-guidance.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/compiled-bootstrap.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/constants.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/constants.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/execution-profile.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/execution-profile.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/execution.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/execution.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/executors.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/logs.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/logs.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/preflight.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/preflight.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/render.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/render.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/schema.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/schema.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/status.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/status.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/types.d.ts +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/types.js +0 -0
- /package/dist/packages/{agents → engine/agents}/lib/user-config.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/compiled-compile.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/compiled-compile.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/compiled-paths.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/compiled-paths.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/discovery.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/reset.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/runtime-contracts.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/runtime-inventory.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/runtime-inventory.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/runtime-paths.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/runtime-paths.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/runtime-prompt.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/runtime-types.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/state-artifacts.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/state-artifacts.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/state-health.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/state-io.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/state-paths.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/state-paths.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/state-view.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/state.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/state.js +0 -0
- /package/dist/packages/{compiler → engine/compile}/validate-compiled.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/validate-helpers.d.ts +0 -0
- /package/dist/packages/{compiler → engine/compile}/validate-helpers.js +0 -0
- /package/dist/packages/{local-service → engine}/connection-config.d.ts +0 -0
- /package/dist/packages/{local-service → engine}/connection-config.js +0 -0
- /package/dist/packages/{execution → engine/execution}/adapters.d.ts +0 -0
- /package/dist/packages/{execution → engine/execution}/adapters.js +0 -0
- /package/dist/packages/{execution → engine/execution}/events.d.ts +0 -0
- /package/dist/packages/{execution → engine/execution}/events.js +0 -0
- /package/dist/packages/{execution → engine/execution}/index.d.ts +0 -0
- /package/dist/packages/{execution → engine/execution}/index.js +0 -0
- /package/dist/packages/{local-service → engine}/instance-paths.d.ts +0 -0
- /package/dist/packages/{local-service → engine}/instance-paths.js +0 -0
- /package/dist/packages/{local-service → engine}/readiness-check-draft.js +0 -0
- /package/dist/packages/{local-service → engine}/runtime-caches.d.ts +0 -0
- /package/dist/packages/{local-service → engine}/runtime-caches.js +0 -0
- /package/dist/packages/{local-service → engine}/service-registry.d.ts +0 -0
- /package/dist/packages/{local-service → engine}/service-registry.js +0 -0
- /package/dist/packages/{testing/test-profile-presets.d.ts → engine/verify/verify-profile-presets.d.ts} +0 -0
- /package/dist/packages/{testing/test-profile-presets.js → engine/verify/verify-profile-presets.js} +0 -0
- /package/dist/packages/{testing/test-types.d.ts → engine/verify/verify-types.d.ts} +0 -0
- /package/dist/packages/{testing/test-types.js → engine/verify/verify-types.js} +0 -0
- /package/dist/packages/{method-authoring → methods/authoring}/index.d.ts +0 -0
- /package/dist/packages/{method-authoring → methods/authoring}/index.js +0 -0
- /package/dist/packages/{method-authoring → methods/authoring}/lib/method-edit-utils.d.ts +0 -0
- /package/dist/packages/{method-authoring → methods/authoring}/lib/method-edit-utils.js +0 -0
- /package/dist/packages/{method-package → methods/package}/interf-method-package.d.ts +0 -0
- /package/dist/packages/{method-package → methods/package}/lib/package-root.d.ts +0 -0
- /package/dist/packages/{method-package → methods/package}/user-methods.d.ts +0 -0
- /package/dist/packages/{project-model → project}/index.d.ts +0 -0
- /package/dist/packages/{project-model → project}/index.js +0 -0
- /package/dist/packages/{project-model → project}/interf-detect.d.ts +0 -0
- /package/dist/packages/{project-model → project}/interf-scaffold.d.ts +0 -0
- /package/dist/packages/{project-model → project}/interf.d.ts +0 -0
- /package/dist/packages/{project-model → project}/interf.js +0 -0
- /package/dist/packages/{project-model → project}/preparation-entries.d.ts +0 -0
- /package/dist/packages/{project-model → project}/preparation-entries.js +0 -0
- /package/dist/packages/{project-model → project}/source-folders.d.ts +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { existsSync } from "node:fs";
|
|
2
2
|
import { join } from "node:path";
|
|
3
|
-
import { testRootForCompiled, targetTestRunsRootForCompiled, targetTestSandboxesRootForCompiled, stageExecutionShellsRoot, compiledRuntimeRoot, } from "
|
|
3
|
+
import { testRootForCompiled, targetTestRunsRootForCompiled, targetTestSandboxesRootForCompiled, stageExecutionShellsRoot, compiledRuntimeRoot, } from "../../engine/compile/compiled-paths.js";
|
|
4
4
|
export function resolveMethodImprovementReviewSourcePaths(compiledPath) {
|
|
5
5
|
const compiledRuntime = compiledRuntimeRoot(compiledPath);
|
|
6
6
|
const readinessRuns = testRootForCompiled(compiledPath);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { type MethodExecutor } from "
|
|
2
|
-
import { type RuntimeStageInstructions } from "
|
|
3
|
-
import type { RuntimeContractType } from "
|
|
4
|
-
import { type RuntimeStageContractDraft } from "
|
|
1
|
+
import { type MethodExecutor } from "../../engine/agents/lib/executors.js";
|
|
2
|
+
import { type RuntimeStageInstructions } from "../../engine/compile/lib/schema.js";
|
|
3
|
+
import type { RuntimeContractType } from "../../contracts/lib/schema.js";
|
|
4
|
+
import { type RuntimeStageContractDraft } from "../../engine/compile/runtime.js";
|
|
5
5
|
import { type MethodReporter, type MethodStageResult } from "./method-helpers.js";
|
|
6
6
|
interface MethodStageShape<TContractType extends RuntimeContractType> {
|
|
7
7
|
id: string;
|
|
@@ -31,13 +31,8 @@ interface ExecuteValidatedStageOptions<TContractType extends RuntimeContractType
|
|
|
31
31
|
summary: string;
|
|
32
32
|
};
|
|
33
33
|
}
|
|
34
|
-
interface ExecuteValidatedSummarizeStageOptions<TContractType extends RuntimeContractType> extends ExecuteValidatedStageOptions<TContractType> {
|
|
35
|
-
startingSummaryCount: number;
|
|
36
|
-
targetCount: number;
|
|
37
|
-
}
|
|
38
34
|
export declare function findStageByContractType<TStage extends {
|
|
39
35
|
contractType: string;
|
|
40
36
|
}>(stages: TStage[], contractType: TStage["contractType"]): TStage;
|
|
41
37
|
export declare function executeValidatedStage<TContractType extends RuntimeContractType>(options: ExecuteValidatedStageOptions<TContractType>): Promise<MethodStageResult>;
|
|
42
|
-
export declare function executeValidatedSummarizeStage<TContractType extends RuntimeContractType>(options: ExecuteValidatedSummarizeStageOptions<TContractType>): Promise<MethodStageResult>;
|
|
43
38
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { markRuntimeRunSucceededAfterValidation, buildStagePrompt, markRuntimeRunFailedAfterValidation, runExecutorStage,
|
|
1
|
+
import { markRuntimeRunSucceededAfterValidation, buildStagePrompt, markRuntimeRunFailedAfterValidation, runExecutorStage, } from "../../engine/compile/runtime.js";
|
|
2
2
|
import { reportValidationFailure, } from "./method-helpers.js";
|
|
3
3
|
export function findStageByContractType(stages, contractType) {
|
|
4
4
|
const stage = stages.find((candidate) => candidate.contractType === contractType);
|
|
@@ -33,34 +33,6 @@ export async function executeValidatedStage(options) {
|
|
|
33
33
|
});
|
|
34
34
|
return finalizeValidatedStage(options, code);
|
|
35
35
|
}
|
|
36
|
-
export async function executeValidatedSummarizeStage(options) {
|
|
37
|
-
const completionCheck = options.completionCheck
|
|
38
|
-
? () => {
|
|
39
|
-
options.syncWrites?.();
|
|
40
|
-
options.reconcile?.();
|
|
41
|
-
return options.completionCheck?.() === true;
|
|
42
|
-
}
|
|
43
|
-
: undefined;
|
|
44
|
-
const code = await runExecutorSummarizeStage({
|
|
45
|
-
executor: options.executor,
|
|
46
|
-
compiledPath: options.compiledPath,
|
|
47
|
-
executionPath: options.executionPath,
|
|
48
|
-
compiledName: options.targetName,
|
|
49
|
-
method: options.method,
|
|
50
|
-
methodSourcePath: options.methodSourcePath,
|
|
51
|
-
stage: options.stageDefinition.id,
|
|
52
|
-
stageLabel: options.stageDefinition.label,
|
|
53
|
-
contractType: options.stageDefinition.contractType,
|
|
54
|
-
summary: options.summary,
|
|
55
|
-
contract: options.contract,
|
|
56
|
-
buildPrompt: (contractPath) => buildStagePrompt(options.instructions, contractPath, options.statusLines),
|
|
57
|
-
completionCheck,
|
|
58
|
-
onStatus: options.onStatus,
|
|
59
|
-
startingSummaryCount: options.startingSummaryCount,
|
|
60
|
-
targetCount: options.targetCount,
|
|
61
|
-
});
|
|
62
|
-
return finalizeValidatedStage(options, code);
|
|
63
|
-
}
|
|
64
36
|
function finalizeValidatedStage(options, code) {
|
|
65
37
|
const refreshAndValidate = () => {
|
|
66
38
|
options.syncWrites?.();
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { cpSync, existsSync, mkdirSync, readFileSync, readdirSync, rmSync, statSync, writeFileSync, } from "node:fs";
|
|
2
2
|
import { dirname, join, resolve } from "node:path";
|
|
3
|
-
import { warnInterf } from "
|
|
4
|
-
import { userMethodPackagePath, userMethodsRoot, } from "
|
|
3
|
+
import { warnInterf } from "../../contracts/utils/logger.js";
|
|
4
|
+
import { userMethodPackagePath, userMethodsRoot, } from "../../contracts/lib/preparation-paths.js";
|
|
5
5
|
import { loadMethodDefinitionFromDir, } from "./local-methods.js";
|
|
6
6
|
export function userMethodPath(id) {
|
|
7
7
|
return userMethodPackagePath(id);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { refreshCompiledBootstrapGuidance, renderClaudeBootstrap, } from "../agents/lib/compiled-bootstrap.js";
|
|
1
|
+
export { refreshCompiledBootstrapGuidance, renderClaudeBootstrap, } from "../engine/agents/lib/compiled-bootstrap.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { refreshCompiledBootstrapGuidance, renderClaudeBootstrap, } from "../agents/lib/compiled-bootstrap.js";
|
|
1
|
+
export { refreshCompiledBootstrapGuidance, renderClaudeBootstrap, } from "../engine/agents/lib/compiled-bootstrap.js";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { existsSync, readdirSync, statSync, } from "node:fs";
|
|
2
2
|
import { join, resolve } from "node:path";
|
|
3
|
-
import { warnInterf } from "../
|
|
4
|
-
import { readJsonFileUnchecked } from "../
|
|
3
|
+
import { warnInterf } from "../contracts/utils/logger.js";
|
|
4
|
+
import { readJsonFileUnchecked } from "../contracts/utils/parse.js";
|
|
5
5
|
import { asPreparationDataDir, preparationPortableContextPath, } from "../contracts/lib/preparation-paths.js";
|
|
6
|
-
import { resolveSourceControlPathForCompiled, compiledInterfConfigPath, } from "../
|
|
6
|
+
import { resolveSourceControlPathForCompiled, compiledInterfConfigPath, } from "../engine/compile/compiled-paths.js";
|
|
7
7
|
import { InterfConfigSchema, } from "./lib/schema.js";
|
|
8
|
-
import { assertPathWithinRoot } from "../
|
|
8
|
+
import { assertPathWithinRoot } from "../contracts/utils/path-guards.js";
|
|
9
9
|
export const INTERF_CONTAINER_NAME = "interf";
|
|
10
10
|
export const METHOD_CONTAINER_NAME = "methods";
|
|
11
11
|
export const TEST_CONTAINER_NAME = "tests";
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { mkdirSync, existsSync, writeFileSync, } from "node:fs";
|
|
2
2
|
import { basename, join, relative, sep } from "node:path";
|
|
3
|
-
import { getCompiledMethod } from "../
|
|
4
|
-
import { loadMethodDefinitionFromDir, seedLocalDefaultMethod } from "../
|
|
5
|
-
import { initializeCompiledRuntimeState, } from "../
|
|
6
|
-
import { refreshCompiledBootstrapGuidance } from "../agents/lib/compiled-bootstrap.js";
|
|
3
|
+
import { getCompiledMethod } from "../methods/package/method-definitions.js";
|
|
4
|
+
import { loadMethodDefinitionFromDir, seedLocalDefaultMethod } from "../methods/package/local-methods.js";
|
|
5
|
+
import { initializeCompiledRuntimeState, } from "../engine/compile/state.js";
|
|
6
|
+
import { refreshCompiledBootstrapGuidance } from "../engine/agents/lib/compiled-bootstrap.js";
|
|
7
7
|
import { assertCompiledContainer, assertCompiledName, } from "./interf-detect.js";
|
|
8
|
-
import { seedCompiledMethodPackage } from "../
|
|
8
|
+
import { seedCompiledMethodPackage } from "../methods/package/interf-method-package.js";
|
|
9
9
|
import { asPreparationDataDir, preparationPortableContextPath, } from "../contracts/lib/preparation-paths.js";
|
|
10
|
-
import {
|
|
11
|
-
import { findSourcePreparationConfig, loadSourceFolderConfig, methodIdForSourcePreparationConfig, resolveSourcePreparationPath, saveCompiledInterfConfig, } from "./source-config.js";
|
|
12
|
-
import { defaultControlPathForCompiled, testRootForCompiled, methodPackagePathForCompiled } from "../
|
|
10
|
+
import { ensureCompiledArtifactTargets, listCompiledSchemaArtifacts, readCompiledSchemaFile } from "../engine/compile/compiled-schema.js";
|
|
11
|
+
import { findSourcePreparationConfig, loadSourceFolderConfig, methodIdForSourcePreparationConfig, resolveConfiguredSourceFolderPath, resolveSourcePreparationPath, saveCompiledInterfConfig, } from "./source-config.js";
|
|
12
|
+
import { defaultControlPathForCompiled, testRootForCompiled, methodPackagePathForCompiled } from "../engine/compile/compiled-paths.js";
|
|
13
13
|
import { DEFAULT_METHOD_ID } from "../methods/method-resolution.js";
|
|
14
14
|
const DEFAULT_INTERFIGNORE = [
|
|
15
15
|
".claude/",
|
|
@@ -33,11 +33,11 @@ function renderUncompiledCompiledFile(compiledName, relativePath, about) {
|
|
|
33
33
|
}
|
|
34
34
|
function compiledGitignoreEntries(compiledPath) {
|
|
35
35
|
const schema = readCompiledSchemaFile(methodPackagePathForCompiled(compiledPath));
|
|
36
|
-
const
|
|
37
|
-
.filter((
|
|
38
|
-
.map((
|
|
36
|
+
const artifactEntries = (schema ? listCompiledSchemaArtifacts(schema) : [])
|
|
37
|
+
.filter((artifact) => artifact.kind !== "runtime")
|
|
38
|
+
.map((artifact) => artifact.kind === "file" ? artifact.path : `${artifact.path}/`);
|
|
39
39
|
return [
|
|
40
|
-
...
|
|
40
|
+
...artifactEntries,
|
|
41
41
|
".claude/",
|
|
42
42
|
".codex/",
|
|
43
43
|
".agents/",
|
|
@@ -52,14 +52,14 @@ function scaffoldCompiledOutputs(compiledPath, compiledName, about) {
|
|
|
52
52
|
if (!schema) {
|
|
53
53
|
throw new Error(`Missing Method schema at ${methodPackagePathForCompiled(compiledPath)}.`);
|
|
54
54
|
}
|
|
55
|
-
|
|
56
|
-
for (const
|
|
57
|
-
if (!
|
|
55
|
+
ensureCompiledArtifactTargets(compiledPath, schema);
|
|
56
|
+
for (const artifact of listCompiledSchemaArtifacts(schema)) {
|
|
57
|
+
if (!artifact.required || artifact.kind !== "file" || artifact.role !== "output")
|
|
58
58
|
continue;
|
|
59
|
-
const targetPath = join(compiledPath,
|
|
59
|
+
const targetPath = join(compiledPath, artifact.path);
|
|
60
60
|
if (existsSync(targetPath))
|
|
61
61
|
continue;
|
|
62
|
-
writeFileSync(targetPath, renderUncompiledCompiledFile(compiledName,
|
|
62
|
+
writeFileSync(targetPath, renderUncompiledCompiledFile(compiledName, artifact.path, about));
|
|
63
63
|
}
|
|
64
64
|
}
|
|
65
65
|
function localMethodMatches(compiledPath, methodId) {
|
|
@@ -99,7 +99,7 @@ export function createCompiled(name, prepDataDir, methodId = DEFAULT_METHOD_ID,
|
|
|
99
99
|
const compiledPath = ensurePortableContextScaffold(prepDataDir, name, selectedMethod.id);
|
|
100
100
|
const resolvedAbout = about ?? savedCompiled?.about;
|
|
101
101
|
const resolvedSourceFolderPath = savedCompiled
|
|
102
|
-
? resolveSourcePreparationPath(prepDataDir, savedCompiled)
|
|
102
|
+
? resolveConfiguredSourceFolderPath(prepDataDir) ?? resolveSourcePreparationPath(prepDataDir, savedCompiled)
|
|
103
103
|
: sourceFolderPath;
|
|
104
104
|
const sourceRelativePath = relative(compiledPath, resolvedSourceFolderPath).split(sep).join("/") || ".";
|
|
105
105
|
saveCompiledInterfConfig(compiledPath, {
|
|
@@ -38,7 +38,7 @@ export declare const SourcePreparationConfigSchema: z.ZodObject<{
|
|
|
38
38
|
}, z.core.$strict>;
|
|
39
39
|
export declare const SourceFolderBindingSchema: z.ZodObject<{
|
|
40
40
|
path: z.ZodString;
|
|
41
|
-
}, z.core.$
|
|
41
|
+
}, z.core.$loose>;
|
|
42
42
|
export declare const CompiledInterfConfigSchema: z.ZodObject<{
|
|
43
43
|
type: z.ZodLiteral<"compiled">;
|
|
44
44
|
name: z.ZodString;
|
|
@@ -102,7 +102,7 @@ export declare const InterfConfigSchema: z.ZodObject<{
|
|
|
102
102
|
export declare const SourceFolderConfigSchema: z.ZodObject<{
|
|
103
103
|
source_folder: z.ZodOptional<z.ZodObject<{
|
|
104
104
|
path: z.ZodString;
|
|
105
|
-
}, z.core.$
|
|
105
|
+
}, z.core.$loose>>;
|
|
106
106
|
preparations: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
107
107
|
id: z.ZodOptional<z.ZodString>;
|
|
108
108
|
name: z.ZodString;
|
|
@@ -65,7 +65,7 @@ export const SourcePreparationConfigSchema = z.object({
|
|
|
65
65
|
}).strict();
|
|
66
66
|
export const SourceFolderBindingSchema = z.object({
|
|
67
67
|
path: z.string().min(1),
|
|
68
|
-
}).
|
|
68
|
+
}).passthrough();
|
|
69
69
|
export const CompiledInterfConfigSchema = z.object({
|
|
70
70
|
type: z.literal("compiled"),
|
|
71
71
|
name: PreparationNameSchema,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type InterfConfig, type SourceFolderBinding, type SourceReadinessCheck, type SourcePreparationConfig, type SourceFolderConfig } from "./lib/schema.js";
|
|
2
|
-
import type { TestSpec, TestTargetType } from "../
|
|
2
|
+
import type { TestSpec, TestTargetType } from "../engine/verify/lib/schema.js";
|
|
3
3
|
export declare const SOURCE_FOLDER_CONFIG_FILE = "interf.json";
|
|
4
4
|
export declare const SOURCE_FOLDER_CONFIG_PATH = "interf.json";
|
|
5
5
|
export interface LoadedSourceTestSpec extends TestSpec {
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { createHash } from "node:crypto";
|
|
2
2
|
import { existsSync, mkdirSync, writeFileSync } from "node:fs";
|
|
3
3
|
import { isAbsolute, relative, resolve, sep } from "node:path";
|
|
4
|
-
import { refreshCompiledBootstrapGuidance } from "../agents/lib/compiled-bootstrap.js";
|
|
4
|
+
import { refreshCompiledBootstrapGuidance } from "../engine/agents/lib/compiled-bootstrap.js";
|
|
5
5
|
import { readInterfConfig, } from "./interf.js";
|
|
6
|
-
import { seedCompiledMethodPackage } from "../
|
|
7
|
-
import { readJsonFileWithSchema } from "../
|
|
8
|
-
import { getCompiledMethod } from "../
|
|
6
|
+
import { seedCompiledMethodPackage } from "../methods/package/interf-method-package.js";
|
|
7
|
+
import { readJsonFileWithSchema } from "../contracts/utils/parse.js";
|
|
8
|
+
import { getCompiledMethod } from "../methods/package/method-definitions.js";
|
|
9
9
|
import { DEFAULT_METHOD_ID, methodIdForSourcePreparationConfig, } from "../methods/method-resolution.js";
|
|
10
10
|
import { SourceFolderConfigSchema, } from "./lib/schema.js";
|
|
11
|
-
import { slugify } from "../
|
|
12
|
-
import { assertPathWithinRoot, isPathWithinRoot } from "../
|
|
13
|
-
import { defaultControlPathForCompiled, resolveSourceControlPathForCompiled, compiledInterfConfigPath, compiledInterfRoot, } from "../
|
|
11
|
+
import { slugify } from "../contracts/utils/naming.js";
|
|
12
|
+
import { assertPathWithinRoot, isPathWithinRoot } from "../contracts/utils/path-guards.js";
|
|
13
|
+
import { defaultControlPathForCompiled, resolveSourceControlPathForCompiled, compiledInterfConfigPath, compiledInterfRoot, } from "../engine/compile/compiled-paths.js";
|
|
14
14
|
import { asPreparationDataDir, preparationConfigPath, PREPARATION_CONFIG_FILENAME, } from "../contracts/lib/preparation-paths.js";
|
|
15
15
|
export const SOURCE_FOLDER_CONFIG_FILE = PREPARATION_CONFIG_FILENAME;
|
|
16
16
|
export const SOURCE_FOLDER_CONFIG_PATH = SOURCE_FOLDER_CONFIG_FILE;
|
|
@@ -241,7 +241,8 @@ export function saveCompiledInterfConfig(compiledPath, config) {
|
|
|
241
241
|
export function syncCompiledInterfConfigFromSourcePreparationConfig(compiledPath, preparationConfig) {
|
|
242
242
|
const current = readInterfConfig(compiledPath);
|
|
243
243
|
const prepDataDir = resolveSourceControlPathForCompiled(compiledPath);
|
|
244
|
-
const preparationAbsolutePath =
|
|
244
|
+
const preparationAbsolutePath = resolveConfiguredSourceFolderPath(prepDataDir) ??
|
|
245
|
+
resolveSourcePreparationPath(prepDataDir, preparationConfig);
|
|
245
246
|
const preparationRelativePath = relative(compiledPath, preparationAbsolutePath).split(sep).join("/") || ".";
|
|
246
247
|
const methodId = methodIdForSourcePreparationConfig(preparationConfig)
|
|
247
248
|
?? methodIdForSourcePreparationConfig(current)
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { existsSync, readdirSync, statSync } from "node:fs";
|
|
2
2
|
import { isAbsolute, join, relative, sep } from "node:path";
|
|
3
|
-
import { slugify } from "../
|
|
3
|
+
import { slugify } from "../contracts/utils/naming.js";
|
|
4
4
|
import { resolveSourcePreparationPath } from "./source-config.js";
|
|
5
|
-
import { isPathWithinRoot } from "../
|
|
5
|
+
import { isPathWithinRoot } from "../contracts/utils/path-guards.js";
|
|
6
6
|
const DEFAULT_PREPARATION_NAME = "default";
|
|
7
7
|
const IGNORED_SOURCE_FOLDER_ENTRIES = new Set([
|
|
8
8
|
".DS_Store",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@interf/compiler",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.0",
|
|
4
4
|
"description": "Interf prepares data for agent work. It runs locally, processes your files, shows evidence that your data is ready, and writes portable context: a local folder with verifiable outputs agents can use.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -14,18 +14,6 @@
|
|
|
14
14
|
"types": "./dist/index.d.ts",
|
|
15
15
|
"import": "./dist/index.js"
|
|
16
16
|
},
|
|
17
|
-
"./contracts": {
|
|
18
|
-
"types": "./dist/packages/contracts/index.d.ts",
|
|
19
|
-
"import": "./dist/packages/contracts/index.js"
|
|
20
|
-
},
|
|
21
|
-
"./execution": {
|
|
22
|
-
"types": "./dist/packages/execution/index.d.ts",
|
|
23
|
-
"import": "./dist/packages/execution/index.js"
|
|
24
|
-
},
|
|
25
|
-
"./local-service": {
|
|
26
|
-
"types": "./dist/packages/local-service/index.d.ts",
|
|
27
|
-
"import": "./dist/packages/local-service/index.js"
|
|
28
|
-
},
|
|
29
17
|
"./package.json": "./package.json"
|
|
30
18
|
},
|
|
31
19
|
"scripts": {
|
|
@@ -54,6 +42,7 @@
|
|
|
54
42
|
"dist",
|
|
55
43
|
"builtin-methods",
|
|
56
44
|
"agent-skills",
|
|
45
|
+
"LICENSE.md",
|
|
57
46
|
"TRADEMARKS.md"
|
|
58
47
|
],
|
|
59
48
|
"publishConfig": {
|
|
@@ -67,13 +56,14 @@
|
|
|
67
56
|
"claude",
|
|
68
57
|
"codex"
|
|
69
58
|
],
|
|
70
|
-
"license": "
|
|
59
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
60
|
+
"author": "Interf Inc.",
|
|
71
61
|
"repository": {
|
|
72
62
|
"type": "git",
|
|
73
|
-
"url": "git+https://github.com/interf-labs/
|
|
63
|
+
"url": "git+https://github.com/interf-labs/compiler.git"
|
|
74
64
|
},
|
|
75
65
|
"bugs": {
|
|
76
|
-
"url": "https://github.com/interf-labs/
|
|
66
|
+
"url": "https://github.com/interf-labs/compiler/issues"
|
|
77
67
|
},
|
|
78
68
|
"homepage": "https://interf.com",
|
|
79
69
|
"engines": {
|
|
@@ -81,6 +71,7 @@
|
|
|
81
71
|
},
|
|
82
72
|
"dependencies": {
|
|
83
73
|
"@clack/prompts": "^0.9.1",
|
|
74
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
84
75
|
"chalk": "^5.4.1",
|
|
85
76
|
"yargs": "^17.7.2",
|
|
86
77
|
"zod": "^4.3.6"
|