@interf/compiler 0.7.2 → 0.9.1
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/README.md +141 -99
- package/TRADEMARKS.md +1 -1
- package/agent-skills/interf-actions/SKILL.md +71 -0
- package/agent-skills/interf-actions/references/cli.md +190 -0
- package/apps/compiler-ui/.next/server/app/index.html +1 -0
- package/apps/compiler-ui/.next/static/XWKL548yXD_UOG4ID9G3J/_buildManifest.js +11 -0
- package/apps/compiler-ui/.next/static/XWKL548yXD_UOG4ID9G3J/_clientMiddlewareManifest.js +1 -0
- package/apps/compiler-ui/.next/static/XWKL548yXD_UOG4ID9G3J/_ssgManifest.js +1 -0
- package/apps/compiler-ui/.next/static/chunks/03~yq9q893hmn.js +1 -0
- package/apps/compiler-ui/.next/static/chunks/06z~l3kwb891e.js +1 -0
- package/apps/compiler-ui/.next/static/chunks/08g7lvje.te.u.js +1 -0
- package/apps/compiler-ui/.next/static/chunks/08m7vf5asqlsm.js +91 -0
- package/apps/compiler-ui/.next/static/chunks/0_i-3_5l9t2qe.js +1 -0
- package/apps/compiler-ui/.next/static/chunks/0b-ywny_j0g~0.js +1 -0
- package/apps/compiler-ui/.next/static/chunks/0b52v41o1gixx.js +1 -0
- package/apps/compiler-ui/.next/static/chunks/0fgt_8knmicoz.js +124 -0
- package/apps/compiler-ui/.next/static/chunks/0gpzgsv0w.q~m.js +31 -0
- package/apps/compiler-ui/.next/static/chunks/0ilwfezfvu6~-.js +1 -0
- package/apps/compiler-ui/.next/static/chunks/0n51hrfoufc7g.js +1 -0
- package/apps/compiler-ui/.next/static/chunks/0ti_66mx7~w2-.js +5 -0
- package/apps/compiler-ui/.next/static/chunks/0xxmf45eskdt~.css +1 -0
- package/apps/compiler-ui/.next/static/chunks/0y5z3t-z1c8ks.js.map +5 -0
- package/apps/compiler-ui/.next/static/chunks/13g~4mamjft.c.css +3 -0
- package/apps/compiler-ui/.next/static/chunks/14wtz~vq25~qq.js +1 -0
- package/apps/compiler-ui/.next/static/chunks/turbopack-109rtik40vwh5.js +1 -0
- package/apps/compiler-ui/.next/static/chunks/turbopack-10e~t1yzi4svj.js +1 -0
- package/apps/compiler-ui/.next/static/chunks/turbopack-worker-0sjn--fhq~1cg.js +1 -0
- package/apps/compiler-ui/.next/static/media/GeistMono_Variable.p.17jn9btb_52pq.woff2 +0 -0
- package/apps/compiler-ui/.next/static/media/Geist_Variable-s.p.0-te~ja_gpvcf.woff2 +0 -0
- package/apps/compiler-ui/.next/static/media/worker.102zas1s52_pf.js +109 -0
- package/builtin-workflows/interf/README.md +8 -8
- package/builtin-workflows/interf/compile/stages/shape/SKILL.md +6 -6
- package/builtin-workflows/interf/compile/stages/structure/SKILL.md +1 -1
- package/builtin-workflows/interf/improve/SKILL.md +2 -2
- package/builtin-workflows/interf/use/query/SKILL.md +2 -2
- package/builtin-workflows/interf/workflow.json +9 -9
- package/builtin-workflows/interf/workflow.schema.json +2 -2
- package/dist/cli/commands/check-draft.d.ts +5 -4
- package/dist/cli/commands/check-draft.js +18 -17
- package/dist/cli/commands/compile-controller.d.ts +3 -0
- package/dist/cli/commands/compile-controller.js +53 -45
- package/dist/cli/commands/compile.js +83 -27
- package/dist/cli/commands/compiled-flow.d.ts +3 -0
- package/dist/cli/commands/compiled-flow.js +9 -7
- package/dist/cli/commands/control-path.d.ts +11 -0
- package/dist/cli/commands/control-path.js +72 -0
- package/dist/cli/commands/create-workflow-wizard.d.ts +12 -0
- package/dist/cli/commands/create-workflow-wizard.js +232 -66
- package/dist/cli/commands/create.js +70 -46
- package/dist/cli/commands/default.js +5 -3
- package/dist/cli/commands/doctor.js +5 -5
- package/dist/cli/commands/executor-flow.js +1 -1
- package/dist/cli/commands/init.js +362 -101
- package/dist/cli/commands/list.js +8 -7
- package/dist/cli/commands/preparation-selection.d.ts +6 -0
- package/dist/cli/commands/preparation-selection.js +11 -0
- package/dist/cli/commands/reset.js +3 -3
- package/dist/cli/commands/source-config-wizard.d.ts +4 -4
- package/dist/cli/commands/source-config-wizard.js +175 -200
- package/dist/cli/commands/status.js +116 -8
- package/dist/cli/commands/test-flow.d.ts +1 -1
- package/dist/cli/commands/test-flow.js +35 -33
- package/dist/cli/commands/test.d.ts +4 -0
- package/dist/cli/commands/test.js +95 -58
- package/dist/cli/commands/verify.js +7 -7
- package/dist/cli/commands/web.d.ts +11 -0
- package/dist/cli/commands/web.js +373 -0
- package/dist/cli/index.d.ts +2 -1
- package/dist/cli/index.js +3 -1
- package/dist/index.d.ts +4 -2
- package/dist/index.js +3 -1
- package/dist/packages/agents/lib/execution.js +4 -2
- package/dist/packages/agents/lib/executors.d.ts +1 -0
- package/dist/packages/agents/lib/executors.js +1 -0
- package/dist/packages/agents/lib/render.d.ts +2 -2
- package/dist/packages/agents/lib/render.js +10 -9
- package/dist/packages/agents/lib/shells.d.ts +3 -11
- package/dist/packages/agents/lib/shells.js +58 -106
- package/dist/packages/agents/lib/types.d.ts +1 -0
- package/dist/packages/compiler/compiled-paths.d.ts +4 -1
- package/dist/packages/compiler/compiled-paths.js +8 -2
- package/dist/packages/compiler/compiled-pipeline.d.ts +7 -0
- package/dist/packages/compiler/compiled-pipeline.js +15 -4
- package/dist/packages/compiler/compiled-schema.js +1 -1
- package/dist/packages/compiler/compiled-stage-plan.d.ts +2 -2
- package/dist/packages/compiler/compiled-stage-plan.js +4 -4
- package/dist/packages/compiler/compiled-stage-runner.d.ts +5 -0
- package/dist/packages/compiler/compiled-stage-runner.js +50 -2
- package/dist/packages/compiler/compiled-target.d.ts +1 -1
- package/dist/packages/compiler/compiled-target.js +2 -2
- package/dist/packages/compiler/lib/schema.d.ts +161 -1
- package/dist/packages/compiler/lib/schema.js +87 -1
- package/dist/packages/compiler/raw-snapshot.d.ts +9 -2
- package/dist/packages/compiler/runtime-acceptance.js +1 -1
- package/dist/packages/compiler/runtime-contracts.js +2 -2
- package/dist/packages/compiler/runtime-prompt.js +7 -7
- package/dist/packages/compiler/runtime-reconcile.js +3 -3
- package/dist/packages/compiler/runtime-runs.js +3 -0
- package/dist/packages/compiler/runtime-types.d.ts +1 -0
- package/dist/packages/compiler/state-health.js +1 -1
- package/dist/packages/compiler/state-view.js +2 -2
- package/dist/packages/compiler/validate-compiled.js +11 -9
- package/dist/packages/execution/adapters.d.ts +15 -0
- package/dist/packages/execution/adapters.js +1 -0
- package/dist/packages/execution/events.d.ts +8 -0
- package/dist/packages/execution/events.js +16 -0
- package/dist/packages/execution/index.d.ts +9 -0
- package/dist/packages/execution/index.js +6 -0
- package/dist/packages/execution/lib/schema.d.ts +1554 -0
- package/dist/packages/execution/lib/schema.js +319 -0
- package/dist/packages/local-service/action-values.d.ts +23 -0
- package/dist/packages/local-service/action-values.js +31 -0
- package/dist/packages/local-service/client.d.ts +119 -0
- package/dist/packages/local-service/client.js +356 -0
- package/dist/packages/local-service/index.d.ts +15 -0
- package/dist/packages/local-service/index.js +11 -0
- package/dist/packages/local-service/lib/schema.d.ts +7355 -0
- package/dist/packages/local-service/lib/schema.js +636 -0
- package/dist/packages/local-service/routes.d.ts +27 -0
- package/dist/packages/local-service/routes.js +32 -0
- package/dist/packages/local-service/runtime.d.ts +134 -0
- package/dist/packages/local-service/runtime.js +2841 -0
- package/dist/packages/local-service/server.d.ts +17 -0
- package/dist/packages/local-service/server.js +572 -0
- package/dist/packages/project-model/index.d.ts +2 -1
- package/dist/packages/project-model/index.js +1 -0
- package/dist/packages/project-model/interf-detect.d.ts +6 -2
- package/dist/packages/project-model/interf-detect.js +48 -19
- package/dist/packages/project-model/interf-scaffold.d.ts +1 -0
- package/dist/packages/project-model/interf-scaffold.js +39 -17
- package/dist/packages/project-model/interf.d.ts +2 -2
- package/dist/packages/project-model/interf.js +2 -2
- package/dist/packages/project-model/lib/schema.d.ts +80 -6
- package/dist/packages/project-model/lib/schema.js +29 -19
- package/dist/packages/project-model/project-paths.d.ts +3 -1
- package/dist/packages/project-model/project-paths.js +6 -2
- package/dist/packages/project-model/source-config.d.ts +25 -11
- package/dist/packages/project-model/source-config.js +152 -82
- package/dist/packages/project-model/source-folders.d.ts +11 -0
- package/dist/packages/project-model/source-folders.js +110 -0
- package/dist/packages/testing/test-execution.js +5 -5
- package/dist/packages/testing/test-paths.js +4 -3
- package/dist/packages/workflow-authoring/workflow-authoring.d.ts +4 -6
- package/dist/packages/workflow-authoring/workflow-authoring.js +46 -85
- package/dist/packages/workflow-authoring/workflow-edit-session.d.ts +2 -0
- package/dist/packages/workflow-authoring/workflow-edit-session.js +83 -49
- package/dist/packages/workflow-authoring/workflow-improvement.js +2 -1
- package/dist/packages/workflow-package/context-interface.js +2 -2
- package/dist/packages/workflow-package/interf-workflow-package.d.ts +6 -0
- package/dist/packages/workflow-package/interf-workflow-package.js +115 -8
- package/dist/packages/workflow-package/local-workflows.js +33 -17
- package/dist/packages/workflow-package/workflow-definitions.d.ts +5 -5
- package/dist/packages/workflow-package/workflow-definitions.js +23 -22
- package/dist/packages/workflow-package/workflow-helpers.js +10 -6
- package/dist/packages/workflow-package/workflow-review-paths.js +5 -1
- package/dist/packages/workflow-package/workflow-stage-runner.d.ts +1 -0
- package/dist/packages/workflow-package/workflow-stage-runner.js +2 -0
- package/package.json +18 -4
- package/dist/cli/commands/dataset-selection.d.ts +0 -6
- package/dist/cli/commands/dataset-selection.js +0 -11
- package/dist/lib/agent-args.d.ts +0 -1
- package/dist/lib/agent-args.js +0 -1
- package/dist/lib/agent-constants.d.ts +0 -1
- package/dist/lib/agent-constants.js +0 -1
- package/dist/lib/agent-detection.d.ts +0 -1
- package/dist/lib/agent-detection.js +0 -1
- package/dist/lib/agent-execution.d.ts +0 -1
- package/dist/lib/agent-execution.js +0 -1
- package/dist/lib/agent-logs.d.ts +0 -1
- package/dist/lib/agent-logs.js +0 -1
- package/dist/lib/agent-preflight.d.ts +0 -1
- package/dist/lib/agent-preflight.js +0 -1
- package/dist/lib/agent-render.d.ts +0 -1
- package/dist/lib/agent-render.js +0 -1
- package/dist/lib/agent-shells.d.ts +0 -1
- package/dist/lib/agent-shells.js +0 -1
- package/dist/lib/agent-status.d.ts +0 -1
- package/dist/lib/agent-status.js +0 -1
- package/dist/lib/agent-types.d.ts +0 -1
- package/dist/lib/agent-types.js +0 -1
- package/dist/lib/agents.d.ts +0 -1
- package/dist/lib/agents.js +0 -1
- package/dist/lib/builtin-compiled-workflow.d.ts +0 -1
- package/dist/lib/builtin-compiled-workflow.js +0 -1
- package/dist/lib/chart-guidance.d.ts +0 -1
- package/dist/lib/chart-guidance.js +0 -1
- package/dist/lib/compiled-compile.d.ts +0 -1
- package/dist/lib/compiled-compile.js +0 -1
- package/dist/lib/compiled-paths.d.ts +0 -1
- package/dist/lib/compiled-paths.js +0 -3
- package/dist/lib/compiled-raw.d.ts +0 -1
- package/dist/lib/compiled-raw.js +0 -3
- package/dist/lib/compiled-reset.d.ts +0 -1
- package/dist/lib/compiled-reset.js +0 -3
- package/dist/lib/compiled-schema.d.ts +0 -1
- package/dist/lib/compiled-schema.js +0 -1
- package/dist/lib/discovery.d.ts +0 -1
- package/dist/lib/discovery.js +0 -1
- package/dist/lib/execution-profile.d.ts +0 -1
- package/dist/lib/execution-profile.js +0 -1
- package/dist/lib/executors.d.ts +0 -1
- package/dist/lib/executors.js +0 -1
- package/dist/lib/filesystem.d.ts +0 -1
- package/dist/lib/filesystem.js +0 -1
- package/dist/lib/interf-bootstrap.d.ts +0 -1
- package/dist/lib/interf-bootstrap.js +0 -3
- package/dist/lib/interf-detect.d.ts +0 -1
- package/dist/lib/interf-detect.js +0 -3
- package/dist/lib/interf-scaffold.d.ts +0 -1
- package/dist/lib/interf-scaffold.js +0 -3
- package/dist/lib/interf-workflow-package.d.ts +0 -1
- package/dist/lib/interf-workflow-package.js +0 -1
- package/dist/lib/interf.d.ts +0 -1
- package/dist/lib/interf.js +0 -3
- package/dist/lib/local-workflows.d.ts +0 -1
- package/dist/lib/local-workflows.js +0 -1
- package/dist/lib/logger.d.ts +0 -1
- package/dist/lib/logger.js +0 -1
- package/dist/lib/package-root.d.ts +0 -1
- package/dist/lib/package-root.js +0 -1
- package/dist/lib/parse.d.ts +0 -1
- package/dist/lib/parse.js +0 -1
- package/dist/lib/project-paths.d.ts +0 -1
- package/dist/lib/project-paths.js +0 -3
- package/dist/lib/runtime-acceptance.d.ts +0 -1
- package/dist/lib/runtime-acceptance.js +0 -1
- package/dist/lib/runtime-contracts.d.ts +0 -1
- package/dist/lib/runtime-contracts.js +0 -1
- package/dist/lib/runtime-inventory.d.ts +0 -1
- package/dist/lib/runtime-inventory.js +0 -1
- package/dist/lib/runtime-paths.d.ts +0 -1
- package/dist/lib/runtime-paths.js +0 -1
- package/dist/lib/runtime-prompt.d.ts +0 -1
- package/dist/lib/runtime-prompt.js +0 -1
- package/dist/lib/runtime-reconcile.d.ts +0 -1
- package/dist/lib/runtime-reconcile.js +0 -1
- package/dist/lib/runtime-runs.d.ts +0 -1
- package/dist/lib/runtime-runs.js +0 -1
- package/dist/lib/runtime-types.d.ts +0 -1
- package/dist/lib/runtime-types.js +0 -1
- package/dist/lib/runtime.d.ts +0 -1
- package/dist/lib/runtime.js +0 -1
- package/dist/lib/schema.d.ts +0 -4
- package/dist/lib/schema.js +0 -6
- package/dist/lib/source-config.d.ts +0 -1
- package/dist/lib/source-config.js +0 -3
- package/dist/lib/state-artifacts.d.ts +0 -1
- package/dist/lib/state-artifacts.js +0 -1
- package/dist/lib/state-health.d.ts +0 -1
- package/dist/lib/state-health.js +0 -1
- package/dist/lib/state-io.d.ts +0 -1
- package/dist/lib/state-io.js +0 -1
- package/dist/lib/state-paths.d.ts +0 -1
- package/dist/lib/state-paths.js +0 -1
- package/dist/lib/state-view.d.ts +0 -1
- package/dist/lib/state-view.js +0 -1
- package/dist/lib/state.d.ts +0 -1
- package/dist/lib/state.js +0 -1
- package/dist/lib/test-execution.d.ts +0 -1
- package/dist/lib/test-execution.js +0 -3
- package/dist/lib/test-matrices.d.ts +0 -1
- package/dist/lib/test-matrices.js +0 -3
- package/dist/lib/test-paths.d.ts +0 -1
- package/dist/lib/test-paths.js +0 -3
- package/dist/lib/test-profile-presets.d.ts +0 -1
- package/dist/lib/test-profile-presets.js +0 -3
- package/dist/lib/test-sandbox.d.ts +0 -1
- package/dist/lib/test-sandbox.js +0 -3
- package/dist/lib/test-specs.d.ts +0 -1
- package/dist/lib/test-specs.js +0 -3
- package/dist/lib/test-targets.d.ts +0 -1
- package/dist/lib/test-targets.js +0 -3
- package/dist/lib/test-types.d.ts +0 -1
- package/dist/lib/test-types.js +0 -3
- package/dist/lib/test.d.ts +0 -1
- package/dist/lib/test.js +0 -3
- package/dist/lib/util.d.ts +0 -1
- package/dist/lib/util.js +0 -1
- package/dist/lib/validate-compiled.d.ts +0 -1
- package/dist/lib/validate-compiled.js +0 -1
- package/dist/lib/validate-helpers.d.ts +0 -1
- package/dist/lib/validate-helpers.js +0 -1
- package/dist/lib/validate.d.ts +0 -1
- package/dist/lib/validate.js +0 -1
- package/dist/lib/workflow-authoring.d.ts +0 -1
- package/dist/lib/workflow-authoring.js +0 -1
- package/dist/lib/workflow-definitions.d.ts +0 -1
- package/dist/lib/workflow-definitions.js +0 -1
- package/dist/lib/workflow-edit-session.d.ts +0 -1
- package/dist/lib/workflow-edit-session.js +0 -1
- package/dist/lib/workflow-edit-utils.d.ts +0 -1
- package/dist/lib/workflow-edit-utils.js +0 -1
- package/dist/lib/workflow-helpers.d.ts +0 -1
- package/dist/lib/workflow-helpers.js +0 -1
- package/dist/lib/workflow-improvement.d.ts +0 -1
- package/dist/lib/workflow-improvement.js +0 -1
- package/dist/lib/workflow-primitives.d.ts +0 -1
- package/dist/lib/workflow-primitives.js +0 -1
- package/dist/lib/workflow-review-paths.d.ts +0 -1
- package/dist/lib/workflow-review-paths.js +0 -1
- package/dist/lib/workflow-stage-policy.d.ts +0 -1
- package/dist/lib/workflow-stage-policy.js +0 -1
- package/dist/lib/workflow-stage-runner.d.ts +0 -1
- package/dist/lib/workflow-stage-runner.js +0 -1
- package/dist/lib/workflows.d.ts +0 -1
- package/dist/lib/workflows.js +0 -1
|
@@ -3,14 +3,13 @@ import { join } from "node:path";
|
|
|
3
3
|
import { isWorkflowId, listLocalWorkflowDefinitions, loadLocalWorkflowDefinition, loadWorkflowDefinitionFromDir, } from "./local-workflows.js";
|
|
4
4
|
import { warnInterf } from "../shared/logger.js";
|
|
5
5
|
import { workflowPackagePathForCompiled } from "../compiler/compiled-paths.js";
|
|
6
|
+
import { legacyWorkflowPackagePathForCompiled } from "../compiler/compiled-paths.js";
|
|
6
7
|
import { resolveSourceControlPath } from "../project-model/interf.js";
|
|
7
8
|
import { PACKAGE_ROOT } from "./lib/package-root.js";
|
|
8
9
|
import { deriveWorkflowInputsFromContextInterface, } from "./context-interface.js";
|
|
9
10
|
import { mergeStagePolicyNotesForStages } from "./workflow-stage-policy.js";
|
|
10
11
|
let builtinInterfWorkflowCache = null;
|
|
11
|
-
function toWorkflowStages(stages
|
|
12
|
-
if (!stages || stages.length === 0)
|
|
13
|
-
return [...fallbackStages];
|
|
12
|
+
function toWorkflowStages(stages) {
|
|
14
13
|
return stages.map((stage) => ({
|
|
15
14
|
id: stage.id,
|
|
16
15
|
label: stage.label,
|
|
@@ -26,7 +25,7 @@ export function standaloneWorkflowDefinitionFromLocalPackage(local) {
|
|
|
26
25
|
if (!local.stages || local.stages.length === 0) {
|
|
27
26
|
throw new Error(`Workflow package "${local.id}" is missing explicit stages. Compiled-local and portable workflow packages must be standalone.`);
|
|
28
27
|
}
|
|
29
|
-
const stages = toWorkflowStages(local.stages
|
|
28
|
+
const stages = toWorkflowStages(local.stages);
|
|
30
29
|
const contextInterface = local.workflow_schema;
|
|
31
30
|
const inputs = local.inputs?.length
|
|
32
31
|
? [...local.inputs]
|
|
@@ -115,23 +114,25 @@ export function getCompiledWorkflow(workflowId, options = {}) {
|
|
|
115
114
|
const local = resolveCompiledWorkflowFromLocal(workflowId, options.sourcePath);
|
|
116
115
|
if (local)
|
|
117
116
|
return local;
|
|
118
|
-
throw new Error(`No local
|
|
117
|
+
throw new Error(`No local Method package found for "${workflowId}" under ${join(options.sourcePath, "interf", "methods", workflowId)}.`);
|
|
119
118
|
}
|
|
120
119
|
throw new Error(`Workflow "${workflowId}" is not built-in. Provide a source path so Interf can resolve a local workflow package.`);
|
|
121
120
|
}
|
|
122
|
-
export function getActiveCompiledWorkflow(compiledPath
|
|
123
|
-
const workflowPath = workflowPackagePathForCompiled(compiledPath)
|
|
121
|
+
export function getActiveCompiledWorkflow(compiledPath) {
|
|
122
|
+
const workflowPath = existsSync(join(workflowPackagePathForCompiled(compiledPath), "workflow.json"))
|
|
123
|
+
? workflowPackagePathForCompiled(compiledPath)
|
|
124
|
+
: legacyWorkflowPackagePathForCompiled(compiledPath);
|
|
124
125
|
if (existsSync(join(workflowPath, "workflow.json"))) {
|
|
125
126
|
const local = loadWorkflowDefinitionFromDir(workflowPath);
|
|
126
127
|
if (!local) {
|
|
127
|
-
throw new Error(`Local
|
|
128
|
+
throw new Error(`Local Method package at ${workflowPath} is missing or invalid. Interf compile runs the local package directly; recreate or reseed this portable context.`);
|
|
128
129
|
}
|
|
129
130
|
if (local.extends) {
|
|
130
|
-
throw new Error(`Local
|
|
131
|
+
throw new Error(`Local Method package at ${workflowPath} still uses legacy extends. Materialize it as a standalone package before compiling this portable context.`);
|
|
131
132
|
}
|
|
132
133
|
return standaloneWorkflowDefinitionFromLocalPackage(local);
|
|
133
134
|
}
|
|
134
|
-
throw new Error(`Missing local
|
|
135
|
+
throw new Error(`Missing local Method package at ${workflowPath}. Interf compile runs the local package directly, so recreate or reseed this portable context under ${resolveSourceControlPath(compiledPath)}.`);
|
|
135
136
|
}
|
|
136
137
|
export function resolveCompiledWorkflowId(value) {
|
|
137
138
|
if (typeof value === "string" && isWorkflowId(value)) {
|
|
@@ -143,12 +144,12 @@ export function resolveCompiledWorkflowFromConfig(config) {
|
|
|
143
144
|
if (!config || typeof config !== "object")
|
|
144
145
|
return null;
|
|
145
146
|
const raw = config;
|
|
146
|
-
return resolveCompiledWorkflowId(raw.workflow);
|
|
147
|
+
return resolveCompiledWorkflowId(raw.method) ?? resolveCompiledWorkflowId(raw.workflow);
|
|
147
148
|
}
|
|
148
149
|
export function resolveRequiredCompiledWorkflowFromConfig(config, label = "compiled config") {
|
|
149
150
|
const workflowId = resolveCompiledWorkflowFromConfig(config);
|
|
150
151
|
if (!workflowId) {
|
|
151
|
-
throw new Error(`Missing or invalid
|
|
152
|
+
throw new Error(`Missing or invalid Method in ${label}.`);
|
|
152
153
|
}
|
|
153
154
|
return workflowId;
|
|
154
155
|
}
|
|
@@ -158,7 +159,7 @@ export function formatCompiledWorkflowStageStep(workflowId, stage, options = {})
|
|
|
158
159
|
function resolveWorkflowDefinitionForStageMetadata(workflowId, sourcePath) {
|
|
159
160
|
if (sourcePath &&
|
|
160
161
|
existsSync(join(workflowPackagePathForCompiled(sourcePath), "workflow.json"))) {
|
|
161
|
-
return getActiveCompiledWorkflow(sourcePath
|
|
162
|
+
return getActiveCompiledWorkflow(sourcePath);
|
|
162
163
|
}
|
|
163
164
|
return getCompiledWorkflow(workflowId, { sourcePath });
|
|
164
165
|
}
|
|
@@ -171,7 +172,7 @@ function formatWorkflowStageStep(workflow, stage) {
|
|
|
171
172
|
if (!stageDefinition) {
|
|
172
173
|
throw new Error(`Stage "${stage}" is not part of the compiled runtime.`);
|
|
173
174
|
}
|
|
174
|
-
return `
|
|
175
|
+
return `Stage ${stageIndex + 1}/${workflow.stages.length} - ${stageDefinition.label}`;
|
|
175
176
|
}
|
|
176
177
|
export function getWorkflowStageDefinition(workflowId, stage, sourcePath) {
|
|
177
178
|
const workflow = resolveWorkflowDefinitionForStageMetadata(workflowId, sourcePath);
|
|
@@ -191,20 +192,20 @@ export function getWorkflowStagePosition(workflowId, stage, sourcePath) {
|
|
|
191
192
|
export function getWorkflowStages(workflowId, sourcePath) {
|
|
192
193
|
return resolveWorkflowDefinitionForStageMetadata(workflowId, sourcePath).stages.map((definition) => definition.id);
|
|
193
194
|
}
|
|
194
|
-
export function getActiveCompiledStages(compiledPath
|
|
195
|
-
return getActiveCompiledWorkflow(compiledPath
|
|
195
|
+
export function getActiveCompiledStages(compiledPath) {
|
|
196
|
+
return getActiveCompiledWorkflow(compiledPath).stages.map((definition) => definition.id);
|
|
196
197
|
}
|
|
197
198
|
export function getWorkflowStagePolicyNotes(workflowId, stage, sourcePath) {
|
|
198
199
|
const workflow = resolveWorkflowDefinitionForStageMetadata(workflowId, sourcePath);
|
|
199
200
|
return [...(workflow.stagePolicyNotes?.[stage] ?? [])];
|
|
200
201
|
}
|
|
201
|
-
export function getActiveCompiledStagePolicyNotes(compiledPath,
|
|
202
|
-
const workflow = getActiveCompiledWorkflow(compiledPath
|
|
202
|
+
export function getActiveCompiledStagePolicyNotes(compiledPath, stage) {
|
|
203
|
+
const workflow = getActiveCompiledWorkflow(compiledPath);
|
|
203
204
|
return [...(workflow.stagePolicyNotes?.[stage] ?? [])];
|
|
204
205
|
}
|
|
205
|
-
export function resolveActiveCompiledStageAcceptance(compiledPath,
|
|
206
|
-
return getActiveCompiledWorkflow(compiledPath
|
|
206
|
+
export function resolveActiveCompiledStageAcceptance(compiledPath, stage) {
|
|
207
|
+
return getActiveCompiledWorkflow(compiledPath).stages.find((candidate) => candidate.id === stage)?.acceptance;
|
|
207
208
|
}
|
|
208
|
-
export function formatActiveCompiledWorkflowStageStep(compiledPath,
|
|
209
|
-
return formatWorkflowStageStep(getActiveCompiledWorkflow(compiledPath
|
|
209
|
+
export function formatActiveCompiledWorkflowStageStep(compiledPath, stage) {
|
|
210
|
+
return formatWorkflowStageStep(getActiveCompiledWorkflow(compiledPath), stage);
|
|
210
211
|
}
|
|
@@ -4,16 +4,16 @@ import { listFilesRecursive } from "../shared/filesystem.js";
|
|
|
4
4
|
import { parseJsonFrontmatter } from "../shared/parse.js";
|
|
5
5
|
import { isMarkdownFile } from "../shared/file-types.js";
|
|
6
6
|
import { getCompiledWorkflow, } from "./workflow-definitions.js";
|
|
7
|
-
import { workflowPackagePathForCompiled } from "../compiler/compiled-paths.js";
|
|
7
|
+
import { COMPILED_METHOD_DIR, workflowPackagePathForCompiled } from "../compiler/compiled-paths.js";
|
|
8
8
|
const LOCAL_SKILL_READ_LIMIT = 50;
|
|
9
9
|
export function workflowQueryDirectory() {
|
|
10
|
-
return
|
|
10
|
+
return `${COMPILED_METHOD_DIR}/use/query`;
|
|
11
11
|
}
|
|
12
12
|
export function workflowImproveDirectory() {
|
|
13
|
-
return
|
|
13
|
+
return `${COMPILED_METHOD_DIR}/improve`;
|
|
14
14
|
}
|
|
15
15
|
export function workflowCompileStageDirectory(stageDir) {
|
|
16
|
-
return
|
|
16
|
+
return `${COMPILED_METHOD_DIR}/compile/stages/${stageDir}`;
|
|
17
17
|
}
|
|
18
18
|
export function emptyLocalSkillContractExtension() {
|
|
19
19
|
return {
|
|
@@ -66,9 +66,13 @@ function collectLocalSkillDocsRelativeTo(rootPath, relativeToPath, directories)
|
|
|
66
66
|
.slice(0, LOCAL_SKILL_READ_LIMIT);
|
|
67
67
|
}
|
|
68
68
|
function resolveAuthoringDirectory(rootPath, directory) {
|
|
69
|
-
if (directory === "workflow") {
|
|
69
|
+
if (directory === COMPILED_METHOD_DIR || directory === "workflow") {
|
|
70
70
|
return workflowPackagePathForCompiled(rootPath);
|
|
71
71
|
}
|
|
72
|
+
if (directory.startsWith(`${COMPILED_METHOD_DIR}${sep}`) || directory.startsWith(`${COMPILED_METHOD_DIR}/`)) {
|
|
73
|
+
const relativeMethodPath = directory.replace(/^method[\\/]/, "");
|
|
74
|
+
return join(workflowPackagePathForCompiled(rootPath), relativeMethodPath);
|
|
75
|
+
}
|
|
72
76
|
if (directory.startsWith(`workflow${sep}`) || directory.startsWith("workflow/")) {
|
|
73
77
|
const relativeWorkflowPath = directory.replace(/^workflow[\\/]/, "");
|
|
74
78
|
return join(workflowPackagePathForCompiled(rootPath), relativeWorkflowPath);
|
|
@@ -80,7 +84,7 @@ function projectWorkflowReadPath(rootPath, relativeToPath, absolutePath) {
|
|
|
80
84
|
const normalizedWorkflowRoot = `${workflowRoot}${sep}`;
|
|
81
85
|
if (absolutePath === workflowRoot || absolutePath.startsWith(normalizedWorkflowRoot)) {
|
|
82
86
|
const relativeWorkflowPath = relative(workflowRoot, absolutePath);
|
|
83
|
-
return relative(relativeToPath, join(rootPath,
|
|
87
|
+
return relative(relativeToPath, join(rootPath, COMPILED_METHOD_DIR, relativeWorkflowPath));
|
|
84
88
|
}
|
|
85
89
|
return relative(relativeToPath, absolutePath);
|
|
86
90
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { existsSync } from "node:fs";
|
|
2
|
+
import { join } from "node:path";
|
|
2
3
|
import { testRootForCompiled, targetTestRunsRootForCompiled, targetTestSandboxesRootForCompiled, stageExecutionShellsRoot, compiledRuntimeRoot, } from "../compiler/compiled-paths.js";
|
|
3
4
|
export function resolveWorkflowImprovementReviewSourcePaths(compiledPath) {
|
|
4
5
|
const compiledRuntime = compiledRuntimeRoot(compiledPath);
|
|
@@ -8,7 +9,10 @@ export function resolveWorkflowImprovementReviewSourcePaths(compiledPath) {
|
|
|
8
9
|
const targetTestSandboxes = targetTestSandboxesRootForCompiled(compiledPath);
|
|
9
10
|
return {
|
|
10
11
|
compiledRuntime: existsSync(compiledRuntime) ? compiledRuntime : null,
|
|
11
|
-
testComparisons: existsSync(testComparisons)
|
|
12
|
+
testComparisons: existsSync(join(testComparisons, "latest.json")) ||
|
|
13
|
+
existsSync(join(testComparisons, "latest.md"))
|
|
14
|
+
? testComparisons
|
|
15
|
+
: null,
|
|
12
16
|
executionShells: existsSync(executionShells) ? executionShells : null,
|
|
13
17
|
targetTestRuns: existsSync(targetTestRuns) ? targetTestRuns : null,
|
|
14
18
|
targetTestSandboxes: existsSync(targetTestSandboxes) ? targetTestSandboxes : null,
|
|
@@ -21,6 +21,7 @@ interface ExecuteValidatedStageOptions<TContractType extends RuntimeContractType
|
|
|
21
21
|
statusLines: string[];
|
|
22
22
|
reporter?: WorkflowReporter;
|
|
23
23
|
completionCheck?: (() => boolean) | null;
|
|
24
|
+
onStatus?: (line: string) => void;
|
|
24
25
|
syncWrites?: (() => void) | null;
|
|
25
26
|
reconcile?: (() => boolean) | null;
|
|
26
27
|
refreshArtifacts?: (() => void) | null;
|
|
@@ -29,6 +29,7 @@ export async function executeValidatedStage(options) {
|
|
|
29
29
|
contract: options.contract,
|
|
30
30
|
buildPrompt: (contractPath) => buildStagePrompt(options.instructions, contractPath, options.statusLines),
|
|
31
31
|
completionCheck,
|
|
32
|
+
onStatus: options.onStatus,
|
|
32
33
|
});
|
|
33
34
|
return finalizeValidatedStage(options, code);
|
|
34
35
|
}
|
|
@@ -54,6 +55,7 @@ export async function executeValidatedSummarizeStage(options) {
|
|
|
54
55
|
contract: options.contract,
|
|
55
56
|
buildPrompt: (contractPath) => buildStagePrompt(options.instructions, contractPath, options.statusLines),
|
|
56
57
|
completionCheck,
|
|
58
|
+
onStatus: options.onStatus,
|
|
57
59
|
startingSummaryCount: options.startingSummaryCount,
|
|
58
60
|
targetCount: options.targetCount,
|
|
59
61
|
});
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@interf/compiler",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.9.1",
|
|
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": {
|
|
7
7
|
"interf": "dist/bin.js"
|
|
@@ -26,6 +26,14 @@
|
|
|
26
26
|
"types": "./dist/packages/workflow-authoring/index.d.ts",
|
|
27
27
|
"import": "./dist/packages/workflow-authoring/index.js"
|
|
28
28
|
},
|
|
29
|
+
"./execution": {
|
|
30
|
+
"types": "./dist/packages/execution/index.d.ts",
|
|
31
|
+
"import": "./dist/packages/execution/index.js"
|
|
32
|
+
},
|
|
33
|
+
"./local-service": {
|
|
34
|
+
"types": "./dist/packages/local-service/index.d.ts",
|
|
35
|
+
"import": "./dist/packages/local-service/index.js"
|
|
36
|
+
},
|
|
29
37
|
"./project-model": {
|
|
30
38
|
"types": "./dist/packages/project-model/index.d.ts",
|
|
31
39
|
"import": "./dist/packages/project-model/index.js"
|
|
@@ -43,9 +51,12 @@
|
|
|
43
51
|
"scripts": {
|
|
44
52
|
"build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc && chmod 755 dist/bin.js",
|
|
45
53
|
"dev": "tsc --watch",
|
|
46
|
-
"
|
|
47
|
-
"
|
|
54
|
+
"web:dev": "npm --prefix apps/compiler-ui run dev",
|
|
55
|
+
"web:typecheck": "npm --prefix apps/compiler-ui run typecheck",
|
|
56
|
+
"web:build": "node -e \"require('fs').rmSync('apps/compiler-ui/.next',{recursive:true,force:true})\" && npm --prefix apps/compiler-ui run build",
|
|
48
57
|
"docs:sync-public-test-example": "npm run build && node scripts/docs/sync-public-test-example.mjs",
|
|
58
|
+
"docs:sync-agent-skill-cli-reference": "npm run build && node scripts/docs/sync-agent-skill-cli-reference.mjs",
|
|
59
|
+
"docs:check-agent-skill-cli-reference": "npm run build && node scripts/docs/sync-agent-skill-cli-reference.mjs --check",
|
|
49
60
|
"test:matrix": "npm run build && node scripts/matrix/run.mjs",
|
|
50
61
|
"test:smoke": "npm run build && node --test test/**/*.test.mjs",
|
|
51
62
|
"test": "npm run test:smoke",
|
|
@@ -76,7 +87,10 @@
|
|
|
76
87
|
},
|
|
77
88
|
"files": [
|
|
78
89
|
"dist",
|
|
90
|
+
"apps/compiler-ui/.next/server/app/index.html",
|
|
91
|
+
"apps/compiler-ui/.next/static",
|
|
79
92
|
"builtin-workflows",
|
|
93
|
+
"agent-skills",
|
|
80
94
|
"TRADEMARKS.md"
|
|
81
95
|
],
|
|
82
96
|
"publishConfig": {
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import type { SourceDatasetConfig } from "../../packages/project-model/lib/schema.js";
|
|
2
|
-
export declare function resolveConfiguredDatasetSelection(options: {
|
|
3
|
-
sourcePath: string;
|
|
4
|
-
requestedDatasetName?: string | null;
|
|
5
|
-
hintedDatasetConfig?: SourceDatasetConfig | null;
|
|
6
|
-
}): SourceDatasetConfig | null;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { findSavedCompiledConfig } from "./compiled-flow.js";
|
|
2
|
-
export function resolveConfiguredDatasetSelection(options) {
|
|
3
|
-
if (options.hintedDatasetConfig &&
|
|
4
|
-
(!options.requestedDatasetName || options.hintedDatasetConfig.name === options.requestedDatasetName)) {
|
|
5
|
-
return options.hintedDatasetConfig;
|
|
6
|
-
}
|
|
7
|
-
if (!options.requestedDatasetName) {
|
|
8
|
-
return null;
|
|
9
|
-
}
|
|
10
|
-
return findSavedCompiledConfig(options.sourcePath, options.requestedDatasetName);
|
|
11
|
-
}
|
package/dist/lib/agent-args.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/args.js";
|
package/dist/lib/agent-args.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/args.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/constants.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/constants.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/detection.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/detection.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/execution.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/execution.js";
|
package/dist/lib/agent-logs.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/logs.js";
|
package/dist/lib/agent-logs.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/logs.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/preflight.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/preflight.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/render.js";
|
package/dist/lib/agent-render.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/render.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/shells.js";
|
package/dist/lib/agent-shells.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/shells.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/status.js";
|
package/dist/lib/agent-status.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/status.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/types.js";
|
package/dist/lib/agent-types.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/types.js";
|
package/dist/lib/agents.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/agents.js";
|
package/dist/lib/agents.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/agents.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/workflow-package/builtin-compiled-workflow.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/workflow-package/builtin-compiled-workflow.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/chart-guidance.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/chart-guidance.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/compiled-compile.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/compiled-compile.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/project-model/compiled-paths.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/project-model/compiled-raw.js";
|
package/dist/lib/compiled-raw.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/project-model/compiled-reset.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/compiled-schema.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/compiled-schema.js";
|
package/dist/lib/discovery.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/discovery.js";
|
package/dist/lib/discovery.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/discovery.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/execution-profile.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/execution-profile.js";
|
package/dist/lib/executors.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/executors.js";
|
package/dist/lib/executors.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/agents/lib/executors.js";
|
package/dist/lib/filesystem.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/shared/filesystem.js";
|
package/dist/lib/filesystem.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/shared/filesystem.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/project-model/interf-bootstrap.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/project-model/interf-detect.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/project-model/interf-scaffold.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/workflow-package/interf-workflow-package.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/workflow-package/interf-workflow-package.js";
|
package/dist/lib/interf.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/project-model/interf.js";
|
package/dist/lib/interf.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/workflow-package/local-workflows.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/workflow-package/local-workflows.js";
|
package/dist/lib/logger.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/shared/logger.js";
|
package/dist/lib/logger.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/shared/logger.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/workflow-package/lib/package-root.js";
|
package/dist/lib/package-root.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/workflow-package/lib/package-root.js";
|
package/dist/lib/parse.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/shared/parse.js";
|
package/dist/lib/parse.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/shared/parse.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/project-model/project-paths.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/runtime-acceptance.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/runtime-acceptance.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/runtime-contracts.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/runtime-contracts.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/runtime-inventory.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/runtime-inventory.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/runtime-paths.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/runtime-paths.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/runtime-prompt.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/runtime-prompt.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/runtime-reconcile.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/runtime-reconcile.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/runtime-runs.js";
|
package/dist/lib/runtime-runs.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/runtime-runs.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/runtime-types.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/runtime-types.js";
|
package/dist/lib/runtime.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/runtime.js";
|
package/dist/lib/runtime.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/compiler/runtime.js";
|
package/dist/lib/schema.d.ts
DELETED
package/dist/lib/schema.js
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
// Compatibility barrel for historical `src/lib/schema.ts` imports.
|
|
2
|
-
// Source-of-truth schemas live in package-owned modules under `src/packages/*/lib/schema.ts`.
|
|
3
|
-
export * from "../packages/compiler/lib/schema.js";
|
|
4
|
-
export * from "../packages/project-model/lib/schema.js";
|
|
5
|
-
export * from "../packages/testing/lib/schema.js";
|
|
6
|
-
export * from "../packages/agents/lib/schema.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../packages/project-model/source-config.js";
|