@orkestrel/scaffold 0.0.55 → 0.0.56

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.
@@ -3,7 +3,7 @@ import { fillTemplate } from "@orkestrel/template";
3
3
  import { Emitter } from "@orkestrel/emitter";
4
4
  var package_default = {
5
5
  name: "@orkestrel/scaffold",
6
- version: "0.0.55",
6
+ version: "0.0.56",
7
7
  description: "Scaffold workspaces with five commands: new, audit, repair, catalog, and overwrite.",
8
8
  keywords: [
9
9
  "audit",
@@ -205,36 +205,28 @@ var BIN_CONFIGS = Object.freeze(["configs/src/vite.bin.config.ts", "configs/src/
205
205
  /** The executable entry whose presence makes a workspace `bin`. */
206
206
  var BIN_ENTRY_PATH = "src/bin/main.ts";
207
207
  /**
208
- * The paths byte-copied from the vendored data root, frozen.
208
+ * The paths a target receives from the vendored data root, frozen.
209
209
  *
210
210
  * @remarks
211
- * These are the files the fleet shares verbatim: the root instruction
212
- * documents, the licence, the canonical orchestration contract every harness
213
- * bridge points at, the harness directories, the session hook scripts,
214
- * the shared policy register, the byte-identical root dotfiles, and the
215
- * guide mirrors a generated workspace starts from. A directory entry vendors
211
+ * These are the files the fleet shares verbatim and every target holds a copy
212
+ * of: the licence, the harness permission file, the session hook scripts, the
213
+ * shared policy register, the byte-identical root dotfiles, and the guide
214
+ * mirrors a generated workspace starts from. A directory entry vendors
216
215
  * everything beneath it.
217
216
  *
218
217
  * A plan carries the subset its target selects, which is why the list is a
219
218
  * candidate set rather than a plan: a workspace never mirrors its own guide.
219
+ *
220
+ * Neither the instruction canon nor the harness wiring is here. A target reads
221
+ * its rules, its skills, its agent roles, its bench configuration, and its MCP
222
+ * registrations from {@link CANON_PATHS} inside the installed package, so no
223
+ * file scaffold leaves in a target names a path the target does not hold.
224
+ * `nameToHostArtifacts` appends {@link CATALOG_AGENT_PATH} to what this list
225
+ * selects, which is what keeps the list itself disjoint from the canon.
220
226
  */
221
227
  var HOST_PATHS = Object.freeze([
222
- "AGENTS.md",
223
- "CLAUDE.md",
224
228
  "LICENSE",
225
- ".agents/orchestration.md",
226
- ".agents/skills",
227
- ".agents/templates",
228
- ".agents/transports",
229
- ".claude/agents",
230
- ".claude/rules",
231
- ".claude/skills",
232
229
  ".claude/settings.json",
233
- ".codex/agents",
234
- ".codex/config.toml",
235
- ".cursor/mcp.json",
236
- ".cursor/rules",
237
- ".mcp.json",
238
230
  "scripts/deps.sh",
239
231
  "scripts/cursor.sh",
240
232
  "scripts/codex.sh",
@@ -254,6 +246,53 @@ var HOST_PATHS = Object.freeze([
254
246
  "guides/guide.md",
255
247
  "guides/scaffold.md"
256
248
  ]);
249
+ /**
250
+ * The instruction-canon paths staged for reading rather than for a target, frozen.
251
+ *
252
+ * @remarks
253
+ * The root instruction documents, the orchestration contract every harness
254
+ * bridge points at, the rule map's rules, the skills, the templates, the
255
+ * transport contracts, the agent roles each harness dispatches, the bench
256
+ * configuration, and the MCP registrations. A directory entry covers everything
257
+ * beneath it.
258
+ *
259
+ * Staging walks these beside {@link HOST_PATHS}, so a release ships them and a
260
+ * reader reaches them two ways: a scaffold checkout sitting beside the
261
+ * repository, or the `node_modules/@orkestrel/scaffold/dist/host/` root inside
262
+ * the installed package. The `AGENTS.md` and `CLAUDE.md` pointers scaffold plans
263
+ * are what name each location.
264
+ *
265
+ * The lists are disjoint by prefix in either direction: no member of either
266
+ * equals or sits beneath a member of the other. Staging depends on that, because
267
+ * the walk covers the union and a path it discovers twice claims one storage
268
+ * name twice, which refuses the stage.
269
+ *
270
+ * The plan claims paths inside the canon deliberately, and each has a reason.
271
+ * `blueprintToDocumentArtifacts` claims `AGENTS.md` and `CLAUDE.md` as this
272
+ * package's own template pointers. `nameToHostArtifacts` claims
273
+ * {@link CATALOG_AGENT_PATH}, because the catalog verb refuses a target that
274
+ * lacks the file and repair restores its absence.
275
+ *
276
+ * A target therefore holds a file at a canon path only where the plan claims it.
277
+ * That is the rule every verb obeys, and it is what makes a copy found anywhere
278
+ * else superseded.
279
+ */
280
+ var CANON_PATHS = Object.freeze([
281
+ "AGENTS.md",
282
+ "CLAUDE.md",
283
+ ".mcp.json",
284
+ ".agents/orchestration.md",
285
+ ".agents/skills",
286
+ ".agents/templates",
287
+ ".agents/transports",
288
+ ".claude/agents",
289
+ ".claude/rules",
290
+ ".claude/skills",
291
+ ".codex/agents",
292
+ ".codex/config.toml",
293
+ ".cursor/mcp.json",
294
+ ".cursor/rules"
295
+ ]);
257
296
  /** The repository-relative path where the committed vendored-file inventory is served. */
258
297
  var HOST_INVENTORY_PATH = "host.json";
259
298
  /**
@@ -315,9 +354,15 @@ var ORCHESTRATION_PATH_NAMES = Object.freeze([".mcp.json"]);
315
354
  * The agent file whose marker-bounded package table the catalog verb alone owns.
316
355
  *
317
356
  * @remarks
318
- * It is vendored like every other host artifact but claimed by presence rather
319
- * than content, so a consumer's own edits to the file survive every verb and
320
- * only the catalog verb rewrites the region inside the markers.
357
+ * A plan claims it at a canon path, because the catalog verb refuses a target
358
+ * that lacks the file. `nameToHostArtifacts` appends it to the vendored
359
+ * selection, and it reaches a release through the `.claude/agents` directory in
360
+ * {@link CANON_PATHS} rather than through {@link HOST_PATHS}, which is what
361
+ * keeps the two lists disjoint.
362
+ *
363
+ * It is claimed by presence rather than content, so a consumer's own edits to
364
+ * the file survive every verb and only the catalog verb rewrites the region
365
+ * inside the markers.
321
366
  */
322
367
  var CATALOG_AGENT_PATH = ".claude/agents/orkestrel.md";
323
368
  /** The provisioner skeleton a workspace with declared service vendors is given once. */
@@ -2507,7 +2552,8 @@ describe('workspace integration', () => {
2507
2552
  })
2508
2553
  `
2509
2554
  }),
2510
- docs: Object.freeze({ readme: `# {{package}}
2555
+ docs: Object.freeze({
2556
+ readme: `# {{package}}
2511
2557
 
2512
2558
  {{description}}
2513
2559
 
@@ -2517,7 +2563,44 @@ describe('workspace integration', () => {
2517
2563
  npm install
2518
2564
  npm test
2519
2565
  \`\`\`
2520
- ` }),
2566
+ `,
2567
+ agents: `# AGENTS.md
2568
+
2569
+ The \`@orkestrel/scaffold\` package is this repository's coding and orchestration authority. This
2570
+ file points at it and states no law of its own.
2571
+
2572
+ Read these before working: the \`AGENTS.md\` coding contract, the \`.agents/orchestration.md\`
2573
+ agent-operation contract, every applicable rule the contract's rule map names under
2574
+ \`.claude/rules/\`, and the dispatch-named skill under \`.agents/skills/\` with the references it
2575
+ requires.
2576
+
2577
+ Resolve every one of those paths against scaffold, never against this repository:
2578
+
2579
+ - When a scaffold checkout sits beside this repository, read \`../scaffold/AGENTS.md\`, the
2580
+ \`../scaffold/.agents/orchestration.md\` file, the \`../scaffold/.claude/rules/\` directory, and
2581
+ the \`../scaffold/.agents/skills/\` directory.
2582
+ - Otherwise read the installed copy, whose paths drop the dot that opens each segment: the
2583
+ \`node_modules/@orkestrel/scaffold/dist/host/AGENTS.md\` file, the
2584
+ \`node_modules/@orkestrel/scaffold/dist/host/agents/orchestration.md\` file, the
2585
+ \`node_modules/@orkestrel/scaffold/dist/host/claude/rules/\` directory, and the
2586
+ \`node_modules/@orkestrel/scaffold/dist/host/agents/skills/\` directory.
2587
+
2588
+ Every path a scaffold-supplied file names resolves the same way. The files this repository carries
2589
+ — the \`.claude/agents/orkestrel.md\` catalog file, the \`.claude/settings.json\` permission file,
2590
+ and the bench scripts under \`scripts/\` — are this repository's own copies and resolve here.
2591
+
2592
+ Edit none of the scaffold-owned files here. The \`scaffold repair\` command restores them, so a
2593
+ change to one is a commit in the scaffold repository followed by a release.
2594
+ `,
2595
+ claude: `# CLAUDE.md
2596
+
2597
+ Read the \`AGENTS.md\` file in this repository first. It names the coding and orchestration
2598
+ authority and where to read each contract.
2599
+
2600
+ This file imports nothing. An \`@path\` import inlines the imported file into every context that
2601
+ loads it, which is the cost this pointer removes.
2602
+ `
2603
+ }),
2521
2604
  guides: Object.freeze({ readme: `# Guides
2522
2605
 
2523
2606
  ## By concept
@@ -3374,6 +3457,35 @@ function isDeferredPath(path) {
3374
3457
  return path === ".claude/agents/orkestrel.md" || path.startsWith("guides/") && path.endsWith(".md");
3375
3458
  }
3376
3459
  /**
3460
+ * Checks whether a path belongs to the instruction canon a target reads rather than holds.
3461
+ *
3462
+ * @param path - The target-relative path to test.
3463
+ * @returns `true` for a {@link CANON_PATHS} member and for any path beneath a
3464
+ * member that is a directory; `false` otherwise.
3465
+ *
3466
+ * @remarks
3467
+ * The one reading of canon membership, so the live overlay and the executable's
3468
+ * fetch list never disagree about what a path is. The match runs to a segment
3469
+ * boundary, so a sibling whose name opens with a member's name —
3470
+ * `.claude/rulesets` beside `.claude/rules` — stays outside.
3471
+ *
3472
+ * Membership answers where a path's bytes are staged, not whether a plan claims
3473
+ * it. A plan claims `AGENTS.md`, `CLAUDE.md`, and {@link CATALOG_AGENT_PATH} at
3474
+ * canon paths deliberately, so a consumer deciding whether to write, restore, or
3475
+ * remove a path reads the plan rather than this predicate.
3476
+ *
3477
+ * @example
3478
+ * ```ts
3479
+ * import { isCanonPath } from '@orkestrel/scaffold'
3480
+ *
3481
+ * isCanonPath('.claude/rules/names.md') // true
3482
+ * isCanonPath('.claude/settings.json') // false
3483
+ * ```
3484
+ */
3485
+ function isCanonPath(path) {
3486
+ return CANON_PATHS.some((canon) => path === canon || path.startsWith(`${canon}/`));
3487
+ }
3488
+ /**
3377
3489
  * Infer the {@link Group} a path belongs to.
3378
3490
  *
3379
3491
  * @param path - The target-relative path to classify.
@@ -5136,22 +5248,53 @@ function blueprintToGuideArtifacts(blueprint) {
5136
5248
  * Compile the generated workspace's root documentation.
5137
5249
  *
5138
5250
  * @param blueprint - The workspace specification.
5139
- * @returns One birth-owned package front page.
5251
+ * @returns The birth-owned package front page and the content-owned `AGENTS.md`
5252
+ * and `CLAUDE.md` pointers.
5253
+ *
5254
+ * @remarks
5255
+ * The front page is the workspace's own prose, so it is written once and left
5256
+ * alone from then on. The pointers are scaffold's, so they are content-owned and
5257
+ * restored whenever they drift.
5258
+ *
5259
+ * A pointer is planned here rather than vendored because `stageHost` refuses two
5260
+ * vendored paths at one storage name, and `AGENTS.md` and `CLAUDE.md` already
5261
+ * store the canon a release ships. Planning them as this package's own content
5262
+ * leaves each path with one claimant.
5263
+ *
5264
+ * Neither pointer carries a varying span, so neither is filled: a workspace's
5265
+ * name never reaches the text, and the paths a reader follows are the same in
5266
+ * every target.
5140
5267
  */
5141
5268
  function blueprintToDocumentArtifacts(blueprint) {
5142
5269
  const publishes = blueprint.src.length > 0;
5143
5270
  const name = publishes ? `@orkestrel/${blueprint.name}` : blueprint.name;
5144
5271
  const description = blueprint.description ?? (publishes ? `The ${name} package.` : `The ${name} application.`);
5145
- return [{
5146
- path: "README.md",
5147
- group: "docs",
5148
- ownership: "birth",
5149
- origin: "template",
5150
- content: fillTemplate(ARTIFACT_TEMPLATES.docs.readme, {
5151
- package: name,
5152
- description
5153
- })
5154
- }];
5272
+ return [
5273
+ {
5274
+ path: "README.md",
5275
+ group: "docs",
5276
+ ownership: "birth",
5277
+ origin: "template",
5278
+ content: fillTemplate(ARTIFACT_TEMPLATES.docs.readme, {
5279
+ package: name,
5280
+ description
5281
+ })
5282
+ },
5283
+ {
5284
+ path: "AGENTS.md",
5285
+ group: "docs",
5286
+ ownership: "content",
5287
+ origin: "template",
5288
+ content: ARTIFACT_TEMPLATES.docs.agents
5289
+ },
5290
+ {
5291
+ path: "CLAUDE.md",
5292
+ group: "docs",
5293
+ ownership: "content",
5294
+ origin: "template",
5295
+ content: ARTIFACT_TEMPLATES.docs.claude
5296
+ }
5297
+ ];
5155
5298
  }
5156
5299
  /**
5157
5300
  * Compile the blueprint-dependent orchestration artifacts.
@@ -5179,7 +5322,8 @@ function blueprintToOrchestrationArtifacts(blueprint) {
5179
5322
  * Compile the vendored host artifacts a named workspace plans.
5180
5323
  *
5181
5324
  * @param name - The target workspace's own bare package name.
5182
- * @returns One artifact per vendored path, in `HOST_PATHS` order.
5325
+ * @returns One artifact per vendored path in `HOST_PATHS` order, then the
5326
+ * catalog file.
5183
5327
  *
5184
5328
  * @remarks
5185
5329
  * Every artifact is claimed by presence, which is the strongest claim a pure
@@ -5193,16 +5337,26 @@ function blueprintToOrchestrationArtifacts(blueprint) {
5193
5337
  * are classified by one rule and a plan never disagrees with the audit beside
5194
5338
  * it.
5195
5339
  *
5340
+ * {@link CATALOG_AGENT_PATH} is appended rather than listed, and it is the canon
5341
+ * path this compiler claims. The catalog verb refuses a target that lacks the
5342
+ * file, so the plan has to carry it; repair restores its absence from the
5343
+ * staged bytes; and the `.claude/agents` directory in `CANON_PATHS` is what
5344
+ * stages those bytes, so listing the file in `HOST_PATHS` as well would claim one
5345
+ * storage name twice and refuse the stage. The rest of the canon a target reads
5346
+ * from the installed package, at the locations the `AGENTS.md` and `CLAUDE.md`
5347
+ * pointers {@link blueprintToDocumentArtifacts} emits name.
5348
+ *
5196
5349
  * @example
5197
5350
  * ```ts
5198
5351
  * import { nameToHostArtifacts } from '@orkestrel/scaffold'
5199
5352
  *
5200
- * nameToHostArtifacts('router').some((artifact) => artifact.path === 'AGENTS.md') // true
5353
+ * nameToHostArtifacts('router').some((artifact) => artifact.path === '.claude/settings.json') // true
5354
+ * nameToHostArtifacts('router').some((artifact) => artifact.path === '.claude/agents/orkestrel.md') // true
5201
5355
  * nameToHostArtifacts('router').some((artifact) => artifact.path === 'guides/router.md') // false
5202
5356
  * ```
5203
5357
  */
5204
5358
  function nameToHostArtifacts(name) {
5205
- return selectHostPaths(HOST_PATHS, name).map((path) => ({
5359
+ return [...selectHostPaths(HOST_PATHS, name), CATALOG_AGENT_PATH].map((path) => ({
5206
5360
  path,
5207
5361
  group: inferGroup(path),
5208
5362
  ownership: "presence",
@@ -6526,6 +6680,6 @@ var Compiler = class {
6526
6680
  }
6527
6681
  };
6528
6682
  //#endregion
6529
- export { APP_BROWSER_DEV_DEPENDENCIES, APP_DEV_DEPENDENCIES, APP_MATRIX, APP_SERVER_DEV_DEPENDENCIES, ARTIFACT_TEMPLATES, BASE_DEV_DEPENDENCIES, BIN_CONFIGS, BIN_ENTRY_PATH, CATALOG_AGENT_PATH, CONFIG_TEMPLATES, CONFORMANCE_TEST_PATH, CONTROL_CHARACTER_PATTERN, Compiler, DECLARATION_DEV_DEPENDENCIES, DEFAULT_ENGINES, DEFAULT_VERSION, DEPENDENCY_NAME_PATTERN, DISTRIBUTION_TEST_PATH, ENGINES_PATTERN, ENVIRONMENTS, EXECUTABLE_PATHS, EXTRA_RANGE_PATTERN, FLOOR_RANGE_PATTERN, FOREIGN_NAME_PATTERN, GLOBAL_SETUP_PATH, GROUPS, GUIDES_TEST_PATH, HEX_PATTERN, HOST_INVENTORY_PATH, HOST_PATHS, INTEGRATION_TEST_PATH, INVALID_PATH_CHARACTER_PATTERN, MANIFEST_PATH, MAX_ARTIFACT_BYTES, MAX_ARTIFACT_HEX_LENGTH, MAX_AUDIT_FINDINGS, MAX_COLLECTION_ITEMS, MAX_DEPENDENCY_NAME_LENGTH, MAX_MANIFEST_BYTES, MAX_NAME_LENGTH, MAX_PATH_LENGTH, MAX_RANGE_LENGTH, MAX_REGISTRY_BYTES, MAX_SCRIPT_LENGTH, MAX_TOTAL_ARTIFACT_BYTES, MAX_TOTAL_REGISTRY_BYTES, MINIMUM_NODE_VERSION, NAME_PATTERN, ORCHESTRATION_PATH_NAMES, ORCHESTRATION_PATH_PREFIXES, ORKESTREL_RANGE_PATTERN, PRINT_WIDTH, RELEASE_PROOF_COMMAND, SERVICE_SCRIPT_PATH, SERVICE_SETUP_PATH, SERVICE_TEST_INCLUDE, SHOWCASE_CONFIG_PATH, SHOWCASE_DEV_DEPENDENCIES, SOURCE_BROWSER_DEV_DEPENDENCIES, SRC_MATRIX, ScaffoldError, TAB_WIDTH, VERSION_PATTERN, WORKSPACE_OWNED_PATHS, applyOverrides, artifactToFinding, artifactToHex, artifactsToQuestions, blueprintToConfigArtifacts, blueprintToDevDependencies, blueprintToDocumentArtifacts, blueprintToGuideArtifacts, blueprintToMachinery, blueprintToManifest, blueprintToOrchestrationArtifacts, blueprintToQuestions, blueprintToRootTsconfig, blueprintToRootVite, blueprintToScripts, blueprintToSourceArtifacts, blueprintToTestArtifacts, blueprintToWritableScripts, bytesToHex, catalogToLayers, cloneValue, compareVersions, computeBytes, computeHash, contentToHex, createBlueprint, dependenciesToQuestions, extractRangeMajor, extractVersion, inferDrift, inferGroup, isArtifact, isAudit, isBlueprint, isCatalogEntry, isCollection, isCompilerHooks, isCompilerOptions, isContent, isDeferredPath, isDependency, isDependencyName, isEnvironment, isFinding, isGroup, isGroups, isHex, isManifestScript, isMirror, isOverride, isPath, isPlan, isQuestion, isScaffoldError, isSnapshot, manifestToDependencies, manifestToName, matchesDriftReachability, matchesEngines, matchesOrchestrationPath, matchesPrintWidth, matchesRange, nameToGuide, nameToHostArtifacts, nameToRewrite, overridesToQuestions, parseBlueprint, parseCompilerOptions, parseGroups, parseSnapshot, pathToCondition, planToFindings, planToHash, planToSummary, replaceManifestRanges, replaceManifestScripts, replacePlanRanges, selectGroups, selectHostPaths, serializeTypeScriptString, srcToEntry, srcToExports, srcToRoot };
6683
+ export { APP_BROWSER_DEV_DEPENDENCIES, APP_DEV_DEPENDENCIES, APP_MATRIX, APP_SERVER_DEV_DEPENDENCIES, ARTIFACT_TEMPLATES, BASE_DEV_DEPENDENCIES, BIN_CONFIGS, BIN_ENTRY_PATH, CANON_PATHS, CATALOG_AGENT_PATH, CONFIG_TEMPLATES, CONFORMANCE_TEST_PATH, CONTROL_CHARACTER_PATTERN, Compiler, DECLARATION_DEV_DEPENDENCIES, DEFAULT_ENGINES, DEFAULT_VERSION, DEPENDENCY_NAME_PATTERN, DISTRIBUTION_TEST_PATH, ENGINES_PATTERN, ENVIRONMENTS, EXECUTABLE_PATHS, EXTRA_RANGE_PATTERN, FLOOR_RANGE_PATTERN, FOREIGN_NAME_PATTERN, GLOBAL_SETUP_PATH, GROUPS, GUIDES_TEST_PATH, HEX_PATTERN, HOST_INVENTORY_PATH, HOST_PATHS, INTEGRATION_TEST_PATH, INVALID_PATH_CHARACTER_PATTERN, MANIFEST_PATH, MAX_ARTIFACT_BYTES, MAX_ARTIFACT_HEX_LENGTH, MAX_AUDIT_FINDINGS, MAX_COLLECTION_ITEMS, MAX_DEPENDENCY_NAME_LENGTH, MAX_MANIFEST_BYTES, MAX_NAME_LENGTH, MAX_PATH_LENGTH, MAX_RANGE_LENGTH, MAX_REGISTRY_BYTES, MAX_SCRIPT_LENGTH, MAX_TOTAL_ARTIFACT_BYTES, MAX_TOTAL_REGISTRY_BYTES, MINIMUM_NODE_VERSION, NAME_PATTERN, ORCHESTRATION_PATH_NAMES, ORCHESTRATION_PATH_PREFIXES, ORKESTREL_RANGE_PATTERN, PRINT_WIDTH, RELEASE_PROOF_COMMAND, SERVICE_SCRIPT_PATH, SERVICE_SETUP_PATH, SERVICE_TEST_INCLUDE, SHOWCASE_CONFIG_PATH, SHOWCASE_DEV_DEPENDENCIES, SOURCE_BROWSER_DEV_DEPENDENCIES, SRC_MATRIX, ScaffoldError, TAB_WIDTH, VERSION_PATTERN, WORKSPACE_OWNED_PATHS, applyOverrides, artifactToFinding, artifactToHex, artifactsToQuestions, blueprintToConfigArtifacts, blueprintToDevDependencies, blueprintToDocumentArtifacts, blueprintToGuideArtifacts, blueprintToMachinery, blueprintToManifest, blueprintToOrchestrationArtifacts, blueprintToQuestions, blueprintToRootTsconfig, blueprintToRootVite, blueprintToScripts, blueprintToSourceArtifacts, blueprintToTestArtifacts, blueprintToWritableScripts, bytesToHex, catalogToLayers, cloneValue, compareVersions, computeBytes, computeHash, contentToHex, createBlueprint, dependenciesToQuestions, extractRangeMajor, extractVersion, inferDrift, inferGroup, isArtifact, isAudit, isBlueprint, isCanonPath, isCatalogEntry, isCollection, isCompilerHooks, isCompilerOptions, isContent, isDeferredPath, isDependency, isDependencyName, isEnvironment, isFinding, isGroup, isGroups, isHex, isManifestScript, isMirror, isOverride, isPath, isPlan, isQuestion, isScaffoldError, isSnapshot, manifestToDependencies, manifestToName, matchesDriftReachability, matchesEngines, matchesOrchestrationPath, matchesPrintWidth, matchesRange, nameToGuide, nameToHostArtifacts, nameToRewrite, overridesToQuestions, parseBlueprint, parseCompilerOptions, parseGroups, parseSnapshot, pathToCondition, planToFindings, planToHash, planToSummary, replaceManifestRanges, replaceManifestScripts, replacePlanRanges, selectGroups, selectHostPaths, serializeTypeScriptString, srcToEntry, srcToExports, srcToRoot };
6530
6684
 
6531
6685
  //# sourceMappingURL=index.js.map