etymd 0.7.0 → 0.9.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.
@@ -33,7 +33,7 @@ async function readConfig(root) {
33
33
  const target = configPath(root);
34
34
  const problems = [];
35
35
  if (!await pathExists(target)) {
36
- return { config: DEFAULT_CONFIG, present: false, problems };
36
+ return { config: DEFAULT_CONFIG, present: false, problems, explicit: { gatesFailOn: false } };
37
37
  }
38
38
  const raw = await readText(target);
39
39
  let parsed;
@@ -43,11 +43,11 @@ async function readConfig(root) {
43
43
  problems.push(
44
44
  `${CONFIG_FILE} exists but is not valid JSON (${err instanceof Error ? err.message : String(err)}) \u2014 defaults used.`
45
45
  );
46
- return { config: DEFAULT_CONFIG, present: true, problems };
46
+ return { config: DEFAULT_CONFIG, present: true, problems, explicit: { gatesFailOn: false } };
47
47
  }
48
48
  if (typeof parsed !== "object" || parsed === null || Array.isArray(parsed)) {
49
49
  problems.push(`${CONFIG_FILE} must contain a JSON object \u2014 defaults used.`);
50
- return { config: DEFAULT_CONFIG, present: true, problems };
50
+ return { config: DEFAULT_CONFIG, present: true, problems, explicit: { gatesFailOn: false } };
51
51
  }
52
52
  const obj = parsed;
53
53
  const instructions = obj.instructions ?? {};
@@ -73,6 +73,7 @@ async function readConfig(root) {
73
73
  return {
74
74
  present: true,
75
75
  problems,
76
+ explicit: { gatesFailOn: failOn !== void 0 },
76
77
  config: {
77
78
  instructions: {
78
79
  include: readGlobList(instructions.include, "instructions.include", problems) ?? DEFAULT_CONFIG.instructions.include,
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  // package.json
3
3
  var package_default = {
4
- version: "0.7.0"};
4
+ version: "0.9.0"};
5
5
 
6
6
  // src/version.ts
7
7
  var VERSION = package_default.version;
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { DEFAULT_CONFIG } from './chunk-K7QBTANO.js';
2
+ import { DEFAULT_CONFIG } from './chunk-D2RI3CCT.js';
3
3
  import { readText, wordCount, approxTokens, pathExists } from './chunk-IV3FYVTS.js';
4
4
  import { promises } from 'node:fs';
5
5
  import path from 'node:path';
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { VERSION } from './chunk-OGIHOTLP.js';
2
+ import { VERSION } from './chunk-E3CVCK5X.js';
3
3
  import { PACK_VERSION } from './chunk-6DUDIVIC.js';
4
4
  import { normalizeRelPath, isDirectory, readJson, git, matchesAnyGlob, pathExists, readText } from './chunk-IV3FYVTS.js';
5
5
  import path from 'node:path';
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { DEFAULT_CONFIG } from './chunk-K7QBTANO.js';
2
+ import { DEFAULT_CONFIG } from './chunk-D2RI3CCT.js';
3
3
  import { PACK_VERSION } from './chunk-6DUDIVIC.js';
4
4
  import { readText, pathExists } from './chunk-IV3FYVTS.js';
5
5
  import path from 'node:path';
@@ -292,6 +292,24 @@ function derivedCommands(facts, existingHook) {
292
292
  }
293
293
  return base;
294
294
  }
295
+ function riskReachability(facts) {
296
+ const reasons = [];
297
+ if (facts.publishRoute !== "none") {
298
+ reasons.push("an instruction file can name a package script that no longer exists");
299
+ }
300
+ if (facts.artifacts.some((a) => a.kind === "state" && a.exists)) {
301
+ reasons.push("a state doc can fall far enough behind the repo to escalate");
302
+ }
303
+ return reasons;
304
+ }
305
+ function deriveFailOn(facts, recorded) {
306
+ const reachable = riskReachability(facts);
307
+ if (recorded.explicit) return { failOn: recorded.failOn, source: "config", reachable };
308
+ if (recorded.failOn === "risk" && reachable.length === 0) {
309
+ return { failOn: "gap", source: "derived", reachable };
310
+ }
311
+ return { failOn: recorded.failOn, source: "default", reachable };
312
+ }
295
313
  async function planWorkflow(root, facts, opts) {
296
314
  const out = [];
297
315
  const add = async (rel, contents, label, executable = false) => {
@@ -346,4 +364,4 @@ async function planWorkflow(root, facts, opts) {
346
364
  return out;
347
365
  }
348
366
 
349
- export { derivedCommands, isSafeGateCommand, planWorkflow, runPrefix };
367
+ export { deriveFailOn, derivedCommands, isSafeGateCommand, planWorkflow, riskReachability, runPrefix };
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { parseFailOnTier, runAudit, meetsFailOn } from './chunk-LXEYYITD.js';
2
+ import { parseFailOnTier, runAudit, meetsFailOn } from './chunk-5P7KZV4W.js';
3
3
  import { print, section, theme, renderLensCoverage, renderFindings, renderLedgerDiff } from './chunk-5BVKFJWM.js';
4
4
 
5
5
  // src/commands/audit.ts
package/dist/cli.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { VERSION } from './chunk-OGIHOTLP.js';
2
+ import { VERSION } from './chunk-E3CVCK5X.js';
3
3
  import path from 'node:path';
4
4
  import { Command } from 'commander';
5
5
  import pc from 'picocolors';
@@ -31,7 +31,7 @@ program.command("audit").description("Verify every instruction claim against the
31
31
  "exit non-zero when findings at/above this tier exist (risk|gap|polish)"
32
32
  ).action(
33
33
  (opts, cmd) => action(async () => {
34
- const { run } = await import('./audit-354X7QN6.js');
34
+ const { run } = await import('./audit-22SOGKLY.js');
35
35
  await run({
36
36
  cwd: resolveCwd(cmd),
37
37
  json: opts.json,
@@ -44,7 +44,7 @@ program.command("audit").description("Verify every instruction claim against the
44
44
  );
45
45
  program.command("init").description("Onboard the truth guard: approve the baseline; scaffold AGENTS.md only if missing").option("-y, --yes", "accept defaults without prompting (never overwrites)").action(
46
46
  (opts, cmd) => action(async () => {
47
- const { run } = await import('./init-52PR24Q4.js');
47
+ const { run } = await import('./init-ROJ6LQX3.js');
48
48
  await run({ cwd: resolveCwd(cmd), yes: opts.yes });
49
49
  })
50
50
  );
@@ -52,31 +52,31 @@ program.command("approve").description(
52
52
  "Re-approve the committed baseline after intentional structural changes (non-interactive)"
53
53
  ).action(
54
54
  (_opts, cmd) => action(async () => {
55
- const { run } = await import('./approve-TXF3MA3G.js');
55
+ const { run } = await import('./approve-H4UMLKRJ.js');
56
56
  await run({ cwd: resolveCwd(cmd) });
57
57
  })
58
58
  );
59
59
  program.command("scan").description("Deterministically reckon the project into a facts index").option("--json", "print the raw facts as JSON").option("--no-save", "do not write the .etymd cache").action(
60
60
  (opts, cmd) => action(async () => {
61
- const { run } = await import('./scan-GSDICQCX.js');
61
+ const { run } = await import('./scan-2ODW52EK.js');
62
62
  await run({ cwd: resolveCwd(cmd), json: opts.json, save: opts.save });
63
63
  })
64
64
  );
65
65
  program.command("doctor").description('Alias for `audit --truth` \u2014 "are the recorded instructions still true?"').option("--json", "print findings as JSON").action(
66
66
  (opts, cmd) => action(async () => {
67
- const { run } = await import('./doctor-2BU6WCI6.js');
67
+ const { run } = await import('./doctor-ITR74ZUE.js');
68
68
  await run({ cwd: resolveCwd(cmd), json: opts.json });
69
69
  })
70
70
  );
71
71
  program.command("context").description("Measure the always-loaded context footprint and flag extraction candidates").option("--json", "print the budget as JSON").action(
72
72
  (opts, cmd) => action(async () => {
73
- const { run } = await import('./context-ZEUI5ESZ.js');
73
+ const { run } = await import('./context-5ANOP2IJ.js');
74
74
  await run({ cwd: resolveCwd(cmd), json: opts.json });
75
75
  })
76
76
  );
77
77
  program.command("brief").description("Emit a grounded briefing for the in-repo agent to complete the semantic layer").option("--human", "write a human onboarding brief instead of the agent briefing").action(
78
78
  (opts, cmd) => action(async () => {
79
- const { run } = await import('./brief-QUYHRWH6.js');
79
+ const { run } = await import('./brief-VKNKPZJF.js');
80
80
  await run({ cwd: resolveCwd(cmd), human: opts.human });
81
81
  })
82
82
  );
@@ -111,7 +111,7 @@ var fleet = program.command("fleet").description(
111
111
  "exit non-zero when findings at/above this tier exist (risk|gap|polish)"
112
112
  ).action(
113
113
  (opts, cmd) => action(async () => {
114
- const { sweep } = await import('./fleet-3UQ65X4Y.js');
114
+ const { sweep } = await import('./fleet-CTBMXRHV.js');
115
115
  await sweep({
116
116
  cwd: resolveCwd(cmd),
117
117
  manifest: opts.manifest,
@@ -126,7 +126,7 @@ var fleet = program.command("fleet").description(
126
126
  );
127
127
  fleet.command("check").description("Validate the manifest pair only \u2014 no lenses: dangling mappings, duplicates, leaks").option("--manifest <file>", "the fleet manifest \u2014 required unless the cwd holds registry.json").option("--json", "print the findings as JSON (EXPERIMENTAL through 0.2.x)").action(
128
128
  (_opts, cmd) => action(async () => {
129
- const { check } = await import('./fleet-3UQ65X4Y.js');
129
+ const { check } = await import('./fleet-CTBMXRHV.js');
130
130
  const opts = cmd.optsWithGlobals();
131
131
  await check({ cwd: resolveCwd(cmd), manifest: opts.manifest, json: opts.json });
132
132
  })
@@ -136,7 +136,7 @@ fleet.command("add").argument("<dir>", "directory of the project to register").d
136
136
  "public-repo | public-bound | private \u2014 mandatory for personal entries"
137
137
  ).option("-y, --yes", "skip prompts; every mandatory value must be passed as a flag").option("--manifest <file>", "the fleet manifest \u2014 required unless the cwd holds registry.json").action(
138
138
  (dir, opts, cmd) => action(async () => {
139
- const { add } = await import('./fleet-3UQ65X4Y.js');
139
+ const { add } = await import('./fleet-CTBMXRHV.js');
140
140
  const shared = cmd.optsWithGlobals();
141
141
  await add({
142
142
  cwd: resolveCwd(cmd),
@@ -159,7 +159,7 @@ fleet.command("dismiss").argument("<name>", "the registered project name").argum
159
159
  "Dismiss a project's finding from any cwd \u2014 corp ledgers persist beside the manifest"
160
160
  ).requiredOption("--reason <text>", "why it is dismissed \u2014 recorded so the decision survives").option("--manifest <file>", "the fleet manifest \u2014 required unless the cwd holds registry.json").action(
161
161
  (name, id, _opts, cmd) => action(async () => {
162
- const { dismiss } = await import('./fleet-3UQ65X4Y.js');
162
+ const { dismiss } = await import('./fleet-CTBMXRHV.js');
163
163
  const opts = cmd.optsWithGlobals();
164
164
  await dismiss({
165
165
  cwd: resolveCwd(cmd),
@@ -174,7 +174,7 @@ fleet.command("accept").argument("<name>", "the registered project name").argume
174
174
  "Accept a project's finding as a known trade-off \u2014 corp ledgers persist beside the manifest"
175
175
  ).option("--reason <text>", "optional note on why the trade-off is accepted").option("--manifest <file>", "the fleet manifest \u2014 required unless the cwd holds registry.json").action(
176
176
  (name, id, _opts, cmd) => action(async () => {
177
- const { accept } = await import('./fleet-3UQ65X4Y.js');
177
+ const { accept } = await import('./fleet-CTBMXRHV.js');
178
178
  const opts = cmd.optsWithGlobals();
179
179
  await accept({ cwd: resolveCwd(cmd), manifest: opts.manifest, name, id, reason: opts.reason });
180
180
  })
@@ -196,7 +196,7 @@ program.command("screen").description(
196
196
  );
197
197
  program.command("gates").description("Install the local git-hook gates (process \u2192 pre-commit, correctness \u2192 pre-push)").option("--ci", "note about the CI review gate (ships later; local gates install now)").option("-y, --yes", "skip prompts; never overwrites a hand-edited hook").action(
198
198
  (opts, cmd) => action(async () => {
199
- const { run } = await import('./gates-MYNOZCON.js');
199
+ const { run } = await import('./gates-X7WY7IRK.js');
200
200
  await run({ cwd: resolveCwd(cmd), ci: opts.ci, yes: opts.yes });
201
201
  })
202
202
  );
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env node
2
- export { CONFIG_FILE, DEFAULT_CONFIG, configPath, readConfig } from './chunk-K7QBTANO.js';
2
+ export { CONFIG_FILE, DEFAULT_CONFIG, configPath, readConfig } from './chunk-D2RI3CCT.js';
3
3
  import './chunk-C7LBUFNU.js';
4
4
  import './chunk-IV3FYVTS.js';
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
- import { measureContext } from './chunk-OKU3HXIH.js';
3
- import { readConfig } from './chunk-K7QBTANO.js';
2
+ import { measureContext } from './chunk-JSUYV26K.js';
3
+ import { readConfig } from './chunk-D2RI3CCT.js';
4
4
  import { print, renderContext } from './chunk-5BVKFJWM.js';
5
5
  import './chunk-C7LBUFNU.js';
6
6
  import './chunk-IV3FYVTS.js';
@@ -1,12 +1,12 @@
1
1
  #!/usr/bin/env node
2
- import { run } from './chunk-7LVCGCHB.js';
3
- import './chunk-LXEYYITD.js';
4
- import './chunk-OKU3HXIH.js';
2
+ import { run } from './chunk-ZA7GVR63.js';
3
+ import './chunk-5P7KZV4W.js';
4
+ import './chunk-JSUYV26K.js';
5
5
  import './chunk-OAFYLBVG.js';
6
- import './chunk-K7QBTANO.js';
6
+ import './chunk-D2RI3CCT.js';
7
7
  import './chunk-5BVKFJWM.js';
8
- import './chunk-XJMN2HMH.js';
9
- import './chunk-OGIHOTLP.js';
8
+ import './chunk-MUNRU2LF.js';
9
+ import './chunk-E3CVCK5X.js';
10
10
  import './chunk-C7LBUFNU.js';
11
11
  import './chunk-6DUDIVIC.js';
12
12
  import './chunk-IV3FYVTS.js';
@@ -1,12 +1,12 @@
1
1
  #!/usr/bin/env node
2
2
  import { dismiss, accept } from './chunk-V2SOHPXF.js';
3
- import { parseFailOnTier, meetsFailOn, runAudit } from './chunk-LXEYYITD.js';
4
- import './chunk-OKU3HXIH.js';
3
+ import { parseFailOnTier, meetsFailOn, runAudit } from './chunk-5P7KZV4W.js';
4
+ import './chunk-JSUYV26K.js';
5
5
  import { readLedger } from './chunk-OAFYLBVG.js';
6
- import { DEFAULT_CONFIG } from './chunk-K7QBTANO.js';
6
+ import { DEFAULT_CONFIG } from './chunk-D2RI3CCT.js';
7
7
  import { print, theme, section, renderFleetRows, renderFleetNotes, renderFindings, TIER_BADGE, glyph } from './chunk-5BVKFJWM.js';
8
- import { scanProject } from './chunk-XJMN2HMH.js';
9
- import './chunk-OGIHOTLP.js';
8
+ import { scanProject } from './chunk-MUNRU2LF.js';
9
+ import './chunk-E3CVCK5X.js';
10
10
  import { ETYMD_DIR } from './chunk-C7LBUFNU.js';
11
11
  import './chunk-6DUDIVIC.js';
12
12
  import { readText, pathExists, git, isDirectory } from './chunk-IV3FYVTS.js';
@@ -687,9 +687,9 @@ async function checkCorpEmails(manifest, findings, disclosures) {
687
687
  }
688
688
  }
689
689
  async function checkGateDrift(manifest, findings, disclosures) {
690
- const { planWorkflow } = await import('./generate-UTKQ4GE6.js');
691
- const { scanProject: scanProject2 } = await import('./scan-M6RKDNYR.js');
692
- const { readConfig } = await import('./config-UJRSCDMD.js');
690
+ const { planWorkflow } = await import('./generate-IPY5QIR5.js');
691
+ const { scanProject: scanProject2 } = await import('./scan-VL4DW5ZT.js');
692
+ const { readConfig } = await import('./config-7WCVZCM6.js');
693
693
  for (const entry of manifest.entries) {
694
694
  const root = entry.resolvedRoot;
695
695
  if (!root || !await isDirectory(root)) continue;
@@ -1,10 +1,10 @@
1
1
  #!/usr/bin/env node
2
2
  import { applyFiles } from './chunk-EF6BPBG6.js';
3
- import { derivedCommands, planWorkflow, runPrefix, isSafeGateCommand } from './chunk-KTIEYKFK.js';
4
- import { readConfig, CONFIG_FILE, configPath } from './chunk-K7QBTANO.js';
3
+ import { deriveFailOn, derivedCommands, planWorkflow, runPrefix, isSafeGateCommand } from './chunk-WENIJMVV.js';
4
+ import { readConfig, CONFIG_FILE, configPath } from './chunk-D2RI3CCT.js';
5
5
  import { section, print, glyph, theme, renderPlan } from './chunk-5BVKFJWM.js';
6
- import { scanProject } from './chunk-XJMN2HMH.js';
7
- import './chunk-OGIHOTLP.js';
6
+ import { scanProject } from './chunk-MUNRU2LF.js';
7
+ import './chunk-E3CVCK5X.js';
8
8
  import './chunk-C7LBUFNU.js';
9
9
  import './chunk-6DUDIVIC.js';
10
10
  import { readText, git } from './chunk-IV3FYVTS.js';
@@ -55,13 +55,30 @@ var PUBLISH_GATE_VALUE = `./${PUBLISH_GATE_SCRIPT}`;
55
55
  function publishGateKey(route) {
56
56
  return route === "vscode" ? "vscode:prepublish" : "prepublishOnly";
57
57
  }
58
- function printGateSummary(gates, facts, source) {
58
+ function printGateSummary(gates, facts, source, tier) {
59
59
  const run2 = runPrefix(facts.packageManager);
60
60
  const shellStep = facts.shell?.scripts ? `shellcheck (${facts.shell.scripts} script${facts.shell.scripts === 1 ? "" : "s"})` : "";
61
61
  const listed = [...gates.commands.map((c) => `${run2} ${c}`), ...shellStep ? [shellStep] : []];
62
62
  const cmds = listed.length ? listed.join(", ") : "none detected";
63
63
  print(` ${glyph.bullet} ${theme.dim("pre-push runs")} ${theme.info(cmds)}`);
64
- print(` ${glyph.bullet} ${theme.dim("audit fails on")} ${theme.info(gates.failOn)}`);
64
+ const origin = tier.source === "config" ? `set in ${CONFIG_FILE}` : tier.source === "derived" ? "derived \u2014 see below" : "default";
65
+ print(
66
+ ` ${glyph.bullet} ${theme.dim("audit fails on")} ${theme.info(gates.failOn)} ${theme.dim(`(${origin})`)}`
67
+ );
68
+ if (tier.reachable.length === 0) {
69
+ print(
70
+ ` ${theme.warn("no risk-tier finding can fire in this repo")} ${theme.dim("(no package manifest to contradict, no state doc to fall behind)")}`
71
+ );
72
+ print(
73
+ ` ${theme.dim(
74
+ gates.failOn === "risk" ? `\`--fail-on risk\` would be a gate that always passes \u2014 change it in ${CONFIG_FILE} under \`gates.failOn\`` : `so the tier was lowered to \`${gates.failOn}\`, which this repo can reach \u2014 pin or override it in ${CONFIG_FILE} under \`gates.failOn\``
75
+ )}`
76
+ );
77
+ } else if (gates.failOn === "risk") {
78
+ print(
79
+ ` ${theme.dim(`reachable at risk here: ${tier.reachable.join("; ")} \u2014 lower the tier in ${CONFIG_FILE} under \`gates.failOn\` to catch more`)}`
80
+ );
81
+ }
65
82
  print(
66
83
  ` ${glyph.bullet} ${theme.dim("publish screen")} ${theme.info(gates.publishGate ? "yes" : "no")}${gates.publishGate && !facts.publishable ? theme.dim(" (overridden)") : ""}`
67
84
  );
@@ -169,10 +186,16 @@ async function run(opts) {
169
186
  }
170
187
  }
171
188
  const existingPrePush = await readText(path.join(opts.cwd, ".githooks", "pre-push"));
172
- const { config, present: hasConfig } = await readConfig(opts.cwd);
189
+ const { config, present: hasConfig, explicit } = await readConfig(opts.cwd);
173
190
  const configSource = { recorded: hasConfig, willRecord: !opts.yes };
191
+ const derivedTier = deriveFailOn(facts, {
192
+ failOn: config.gates.failOn,
193
+ explicit: explicit.gatesFailOn
194
+ });
195
+ let tier = { source: derivedTier.source, reachable: derivedTier.reachable };
174
196
  let gateConfig = {
175
197
  ...config.gates,
198
+ failOn: derivedTier.failOn,
176
199
  commands: config.gates.commands.length ? config.gates.commands : derivedCommands(facts, existingPrePush ?? void 0),
177
200
  publishGate: config.gates.publishGate ?? facts.publishable
178
201
  };
@@ -186,7 +209,7 @@ async function run(opts) {
186
209
  };
187
210
  let gateFiles = await plan();
188
211
  renderPlan(gateFiles, { regeneratesStale: true });
189
- printGateSummary(gateConfig, facts, configSource);
212
+ printGateSummary(gateConfig, facts, configSource, tier);
190
213
  if (!opts.yes) {
191
214
  const choice = await select({
192
215
  message: "Install these gates?",
@@ -208,9 +231,10 @@ async function run(opts) {
208
231
  return;
209
232
  }
210
233
  gateConfig = customized;
234
+ tier = { source: "config", reachable: derivedTier.reachable };
211
235
  gateFiles = await plan();
212
236
  renderPlan(gateFiles);
213
- printGateSummary(gateConfig, facts, configSource);
237
+ printGateSummary(gateConfig, facts, configSource, tier);
214
238
  }
215
239
  await writeGateConfig(opts.cwd, gateConfig);
216
240
  }
@@ -247,6 +271,11 @@ async function run(opts) {
247
271
  }
248
272
  }
249
273
  print(` ${glyph.ok} ${theme.dim("set")} ${theme.code("core.hooksPath = .githooks")}`);
274
+ print(
275
+ ` ${glyph.ok} ${theme.dim("pre-push audit fails on")} ${theme.info(gateConfig.failOn)} ${theme.dim(
276
+ tier.source === "config" ? `(from ${CONFIG_FILE})` : tier.source === "derived" ? `(derived \u2014 no risk-tier finding can fire here; set \`gates.failOn\` in ${CONFIG_FILE} to pin a tier)` : `(default \u2014 set \`gates.failOn\` in ${CONFIG_FILE} to change it)`
277
+ )}`
278
+ );
250
279
  const wrotePublishGate = result.written.includes(PUBLISH_GATE_SCRIPT);
251
280
  if (wrotePublishGate) {
252
281
  const pkgPath = path.join(opts.cwd, "package.json");
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env node
2
+ export { deriveFailOn, derivedCommands, planWorkflow, riskReachability } from './chunk-WENIJMVV.js';
3
+ import './chunk-D2RI3CCT.js';
4
+ import './chunk-C7LBUFNU.js';
5
+ import './chunk-6DUDIVIC.js';
6
+ import './chunk-IV3FYVTS.js';
package/dist/index.d.ts CHANGED
@@ -241,6 +241,15 @@ interface LoadedConfig {
241
241
  present: boolean;
242
242
  /** Malformed or ignored input — surfaced as disclosures, never silently dropped. */
243
243
  problems: string[];
244
+ /**
245
+ * Keys the file actually set, as opposed to keys that collapsed to a default. `gates.failOn`
246
+ * defaults to the same word a user might write deliberately, so the resolved value cannot say
247
+ * which happened — and a derivation may adjust a default it chose while never touching a tier
248
+ * someone decided on.
249
+ */
250
+ explicit: {
251
+ gatesFailOn: boolean;
252
+ };
244
253
  }
245
254
  declare const DEFAULT_CONFIG: EtymdConfig;
246
255
  declare function configPath(root: string): string;
@@ -722,7 +731,9 @@ declare const contextEconomyLens: Lens;
722
731
  * mandatory-field checks apply to files that declared the format, never retroactively to
723
732
  * pre-existing records — old decisions are history, not defects.
724
733
  *
725
- * A file may append `fields=A,B` to require field names of its own choosing on every entry.
734
+ * A file may append `fields=A,B` to require field names of its own choosing on every entry at or
735
+ * after the marker — position is the gate, so a marker moved down the file exempts the history
736
+ * above it and one left at the top governs the whole file.
726
737
  * Etymd ships no vocabulary for those names and attaches no meaning to them: it checks only that
727
738
  * a field the file itself declared is present. A marker with no `fields=` behaves as it always
728
739
  * has, so the attribute is an extension rather than a new format version.