@deftai/directive-core 0.73.1 → 0.74.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/dist/check/orchestrator.d.ts +3 -0
- package/dist/check/orchestrator.js +2 -1
- package/dist/codebase/map.js +2 -0
- package/dist/doctor/checks.d.ts +9 -0
- package/dist/doctor/checks.js +67 -0
- package/dist/doctor/main.js +2 -1
- package/dist/fs/projection-containment.d.ts +35 -0
- package/dist/fs/projection-containment.js +118 -0
- package/dist/init-deposit/scaffold.d.ts +21 -0
- package/dist/init-deposit/scaffold.js +79 -6
- package/dist/pr-merge-readiness/constants.d.ts +4 -0
- package/dist/pr-merge-readiness/constants.js +4 -0
- package/dist/pr-merge-readiness/evaluate.js +3 -0
- package/dist/pr-merge-readiness/mergeability.d.ts +8 -6
- package/dist/pr-merge-readiness/mergeability.js +15 -10
- package/dist/pr-merge-readiness/output.js +12 -6
- package/dist/pr-merge-readiness/parse.d.ts +1 -0
- package/dist/pr-merge-readiness/parse.js +9 -1
- package/dist/pr-merge-readiness/types.d.ts +2 -0
- package/dist/preflight-cache/evaluate.d.ts +2 -0
- package/dist/preflight-cache/evaluate.js +14 -3
- package/dist/preflight-cache/index.d.ts +1 -1
- package/dist/preflight-cache/index.js +1 -1
- package/dist/release/constants.d.ts +2 -0
- package/dist/release/constants.js +2 -0
- package/dist/release/preflight.d.ts +2 -0
- package/dist/release/preflight.js +14 -1
- package/dist/scope/index.d.ts +1 -0
- package/dist/scope/index.js +1 -0
- package/dist/scope/main.js +24 -1
- package/dist/scope/open-umbrella-warning.d.ts +12 -0
- package/dist/scope/open-umbrella-warning.js +403 -0
- package/dist/triage/bootstrap/gitignore.d.ts +1 -1
- package/dist/triage/bootstrap/gitignore.js +69 -58
- package/dist/vbrief-reconcile/umbrellas.js +12 -11
- package/dist/xbrief-migrate/migrate-project.js +9 -0
- package/package.json +3 -3
|
@@ -8,7 +8,7 @@ export declare function gitignoreTriageCacheEntries(projectRoot: string): readon
|
|
|
8
8
|
export declare function gitattributesTriageCacheGlob(projectRoot: string): string;
|
|
9
9
|
export declare const GITATTRIBUTES_EVAL_RULE = "vbrief/.triage-cache/*.jsonl merge=union";
|
|
10
10
|
export declare const FORBIDDEN_BLANKET_EVAL_LINES: readonly string[];
|
|
11
|
-
export declare const EVAL_README_BODY = "# `vbrief/.triage-cache/`
|
|
11
|
+
export declare const EVAL_README_BODY = "# `vbrief/.triage-cache/` \u2014 triage working-set files\n\nThis directory holds JSON-lines logs and scratch files that Deft triage and\nslicing workflows emit. Deft configures your repo's `.gitignore` and\n`.gitattributes` so some files stay local while team-shared records can be\ncommitted.\n\n## What lives here\n\n| File | Committed? | Notes |\n| --- | --- | --- |\n| `slices.jsonl` | Yes | Team-shared cohort records from slicing skills. New teammates use prior cohort outputs to spot orphans and avoid re-slicing the same scope. |\n| `candidates.jsonl` | No | Your local triage accept / defer / reject stream. Re-create on a fresh clone with `deft triage:bootstrap`. |\n| `summary-history.jsonl` | No | Local history of `deft triage:summary` output; not required for day-to-day work. |\n| `scope-lifecycle.jsonl` | No | Local audit trail for scope demotions (`deft scope:demote`). Each operator's stream stays on their machine. |\n| `decompositions/` | No | Draft story-decomposition scratch. Produced child story xBRIEFs live in lifecycle folders via `deft scope:decompose`. |\n| `doctor-state.json` | No | Per-clone throttle state for `deft doctor` re-probe timing. |\n\nPaths listed as \"No\" above are added to `.gitignore` during bootstrap; anything\nnot listed remains committable by default. The selective ignore entries live in\nthe repo-root `.gitignore` (`vbrief/.triage-cache/candidates.jsonl`,\n`vbrief/.triage-cache/summary-history.jsonl`, `vbrief/.triage-cache/scope-lifecycle.jsonl`,\n`vbrief/.triage-cache/decompositions/`, and `vbrief/.triage-cache/doctor-state.json`).\n\n## Fresh clone\n\nIf `candidates.jsonl` is missing, run:\n\n```\ndeft triage:bootstrap\n```\n\nBootstrap rebuilds the local candidates log without altering committed\n`slices.jsonl`.\n\n## Merge behavior for `*.jsonl`\n\nThe repo-root `.gitattributes` may declare:\n\n```\nvbrief/.triage-cache/*.jsonl merge=union\n```\n\nThe `union` merge driver concatenates both sides' appended lines on auto-merge,\nso parallel append-only edits to the same JSON-lines file rebase without manual\nconflict surgery. It does not dedupe semantically similar records \u2014 downstream\nreaders should tolerate duplicate-looking entries.\n\n## See also\n\n- `.gitignore` \u2014 selective ignore rules for operator-private files\n- `.gitattributes` \u2014 merge driver for committed JSON-lines logs\n";
|
|
12
12
|
/** Layout-aware triage-cache README body for the active lifecycle tree (#2344 / #2349). */
|
|
13
13
|
export declare function generateTriageCacheReadmeBody(projectRoot: string): string;
|
|
14
14
|
/** Strip an inline `# ...` comment from a gitignore line. */
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { existsSync, mkdirSync, readFileSync, writeFileSync } from "node:fs";
|
|
2
2
|
import { dirname, relative } from "node:path";
|
|
3
|
+
import { assertProjectionContained, ProjectionContainmentError, } from "../../fs/projection-containment.js";
|
|
3
4
|
import { MIGRATED_ARTIFACT_DIR, resolveLifecycleLayout } from "../../layout/resolve.js";
|
|
4
5
|
import { resolveCandidatesLogPath, resolveTriageCachePath, TRIAGE_CACHE_DIR_NAME, triageCacheRelPath, } from "../cache-path.js";
|
|
5
6
|
/** POSIX-style display path for `absPath` relative to `projectRoot` (#2109). */
|
|
@@ -85,78 +86,58 @@ const GITATTRIBUTES_EVAL_RATIONALE = "\n# Append-only JSON-lines logs under vbri
|
|
|
85
86
|
"# without manual conflict surgery. Note: merge=union does NOT dedupe; see\n" +
|
|
86
87
|
"# vbrief/.triage-cache/README.md for the operator-facing semantics.\n";
|
|
87
88
|
const EVAL_ENTRIES_RATIONALE_SENTINEL = "# vbrief/.triage-cache/ tracking governance (#1144, N4 of #1119).";
|
|
88
|
-
export const EVAL_README_BODY = `# \`vbrief/.triage-cache/\`
|
|
89
|
+
export const EVAL_README_BODY = `# \`vbrief/.triage-cache/\` — triage working-set files
|
|
89
90
|
|
|
90
|
-
This directory holds
|
|
91
|
-
slicing
|
|
92
|
-
|
|
91
|
+
This directory holds JSON-lines logs and scratch files that Deft triage and
|
|
92
|
+
slicing workflows emit. Deft configures your repo's \`.gitignore\` and
|
|
93
|
+
\`.gitattributes\` so some files stay local while team-shared records can be
|
|
94
|
+
committed.
|
|
93
95
|
|
|
94
|
-
##
|
|
96
|
+
## What lives here
|
|
95
97
|
|
|
96
|
-
| File |
|
|
98
|
+
| File | Committed? | Notes |
|
|
97
99
|
| --- | --- | --- |
|
|
98
|
-
| \`slices.jsonl\` | Yes
|
|
99
|
-
| \`candidates.jsonl\` | No
|
|
100
|
-
| \`summary-history.jsonl\` | No
|
|
101
|
-
| \`scope-lifecycle.jsonl\` | No
|
|
102
|
-
| \`decompositions/\` | No
|
|
103
|
-
| \`doctor-state.json\` | No
|
|
100
|
+
| \`slices.jsonl\` | Yes | Team-shared cohort records from slicing skills. New teammates use prior cohort outputs to spot orphans and avoid re-slicing the same scope. |
|
|
101
|
+
| \`candidates.jsonl\` | No | Your local triage accept / defer / reject stream. Re-create on a fresh clone with \`deft triage:bootstrap\`. |
|
|
102
|
+
| \`summary-history.jsonl\` | No | Local history of \`deft triage:summary\` output; not required for day-to-day work. |
|
|
103
|
+
| \`scope-lifecycle.jsonl\` | No | Local audit trail for scope demotions (\`deft scope:demote\`). Each operator's stream stays on their machine. |
|
|
104
|
+
| \`decompositions/\` | No | Draft story-decomposition scratch. Produced child story xBRIEFs live in lifecycle folders via \`deft scope:decompose\`. |
|
|
105
|
+
| \`doctor-state.json\` | No | Per-clone throttle state for \`deft doctor\` re-probe timing. |
|
|
104
106
|
|
|
105
|
-
|
|
107
|
+
Paths listed as "No" above are added to \`.gitignore\` during bootstrap; anything
|
|
108
|
+
not listed remains committable by default. The selective ignore entries live in
|
|
109
|
+
the repo-root \`.gitignore\` (\`vbrief/.triage-cache/candidates.jsonl\`,
|
|
106
110
|
\`vbrief/.triage-cache/summary-history.jsonl\`, \`vbrief/.triage-cache/scope-lifecycle.jsonl\`,
|
|
107
|
-
\`vbrief/.triage-cache/decompositions/\`, and \`vbrief/.triage-cache/doctor-state.json\`).
|
|
108
|
-
not listed above remain committed by default.
|
|
111
|
+
\`vbrief/.triage-cache/decompositions/\`, and \`vbrief/.triage-cache/doctor-state.json\`).
|
|
109
112
|
|
|
110
|
-
## Fresh
|
|
113
|
+
## Fresh clone
|
|
111
114
|
|
|
112
|
-
|
|
113
|
-
is absent. Regenerate it with:
|
|
115
|
+
If \`candidates.jsonl\` is missing, run:
|
|
114
116
|
|
|
115
117
|
\`\`\`
|
|
116
|
-
|
|
118
|
+
deft triage:bootstrap
|
|
117
119
|
\`\`\`
|
|
118
120
|
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
\`slices.jsonl\`; cohort records remain a team-shared resource.
|
|
121
|
+
Bootstrap rebuilds the local candidates log without altering committed
|
|
122
|
+
\`slices.jsonl\`.
|
|
122
123
|
|
|
123
|
-
##
|
|
124
|
+
## Merge behavior for \`*.jsonl\`
|
|
124
125
|
|
|
125
|
-
The repo-root \`.gitattributes\`
|
|
126
|
+
The repo-root \`.gitattributes\` may declare:
|
|
126
127
|
|
|
127
128
|
\`\`\`
|
|
128
129
|
vbrief/.triage-cache/*.jsonl merge=union
|
|
129
130
|
\`\`\`
|
|
130
131
|
|
|
131
|
-
The \`union\` merge driver concatenates both sides' appended lines on
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
- **Concatenation, not set-union.** When two branches append DIFFERENT
|
|
137
|
-
records to the file, the merge driver concatenates both sides' lines
|
|
138
|
-
-- there is no smart deduplication of "semantically similar" records.
|
|
139
|
-
(Identical line-for-line appends collapse because git's three-way
|
|
140
|
-
merge sees them as the same change, but distinct records always
|
|
141
|
-
survive verbatim, even if a downstream reader would consider them
|
|
142
|
-
redundant.) The append-only writers in \`scripts/candidates_log.py\`
|
|
143
|
-
mint a fresh \`decision_id\` per call, so genuinely duplicate records
|
|
144
|
-
are not the expected case, but downstream readers MUST tolerate
|
|
145
|
-
multiple records describing the same logical decision.
|
|
146
|
-
- **Single-operator scope only.** This is the foundational rebase
|
|
147
|
-
ergonomic for the single-operator case (operator A rebases their
|
|
148
|
-
feature branch onto a master that grew while they were AFK).
|
|
149
|
-
Multi-operator merge-conflict resolution is explicitly out of scope per
|
|
150
|
-
#1119 R4 (tracked separately as M1-M4 in #1183).
|
|
132
|
+
The \`union\` merge driver concatenates both sides' appended lines on auto-merge,
|
|
133
|
+
so parallel append-only edits to the same JSON-lines file rebase without manual
|
|
134
|
+
conflict surgery. It does not dedupe semantically similar records — downstream
|
|
135
|
+
readers should tolerate duplicate-looking entries.
|
|
151
136
|
|
|
152
137
|
## See also
|
|
153
138
|
|
|
154
|
-
-
|
|
155
|
-
|
|
156
|
-
- \`.gitignore\` -- selective gitignore entries for the operator-private
|
|
157
|
-
files.
|
|
158
|
-
- \`.gitattributes\` -- the \`merge=union\` rule.
|
|
159
|
-
- \`scripts/candidates_log.py\` -- the writer for \`candidates.jsonl\`.
|
|
139
|
+
- \`.gitignore\` — selective ignore rules for operator-private files
|
|
140
|
+
- \`.gitattributes\` — merge driver for committed JSON-lines logs
|
|
160
141
|
`;
|
|
161
142
|
/** Layout-aware triage-cache README body for the active lifecycle tree (#2344 / #2349). */
|
|
162
143
|
export function generateTriageCacheReadmeBody(projectRoot) {
|
|
@@ -173,6 +154,12 @@ export function generateTriageCacheReadmeBody(projectRoot) {
|
|
|
173
154
|
function stepOutcome(name, ok, message, details = {}, error = null) {
|
|
174
155
|
return { name, ok, message, error, details };
|
|
175
156
|
}
|
|
157
|
+
function containmentFailure(stepName, err) {
|
|
158
|
+
const message = err instanceof ProjectionContainmentError
|
|
159
|
+
? err.message
|
|
160
|
+
: `projection path containment refused: ${String(err)}`;
|
|
161
|
+
return stepOutcome(stepName, false, message, {}, message);
|
|
162
|
+
}
|
|
176
163
|
/** Strip an inline `# ...` comment from a gitignore line. */
|
|
177
164
|
export function stripGitignoreInlineComment(line) {
|
|
178
165
|
const stripped = line.trim();
|
|
@@ -198,7 +185,13 @@ function isCommentedGitignoreLine(raw, gitignoreLine) {
|
|
|
198
185
|
body = body.slice(1);
|
|
199
186
|
return body === gitignoreLine;
|
|
200
187
|
}
|
|
201
|
-
function ensureGitignoreLine(gitignorePath, line, stepName, createIfMissing, rationaleBlock, optInMessage) {
|
|
188
|
+
function ensureGitignoreLine(projectRoot, gitignorePath, line, stepName, createIfMissing, rationaleBlock, optInMessage) {
|
|
189
|
+
try {
|
|
190
|
+
assertProjectionContained(projectRoot, gitignorePath);
|
|
191
|
+
}
|
|
192
|
+
catch (err) {
|
|
193
|
+
return containmentFailure(stepName, err);
|
|
194
|
+
}
|
|
202
195
|
if (!existsSync(gitignorePath)) {
|
|
203
196
|
if (!createIfMissing) {
|
|
204
197
|
return stepOutcome(stepName, false, `.gitignore not present after the prior gitignore step; ${line} not written -- re-run bootstrap to retry`, { created: false, appended: false, skipped: "no-gitignore" }, "prior gitignore step did not create .gitignore");
|
|
@@ -251,7 +244,7 @@ function ensureGitignoreLine(gitignorePath, line, stepName, createIfMissing, rat
|
|
|
251
244
|
}
|
|
252
245
|
/** Append `.deft-cache/` to `.gitignore` when absent. */
|
|
253
246
|
export function stepEnsureGitignoreEntry(projectRoot) {
|
|
254
|
-
return ensureGitignoreLine(`${projectRoot}/.gitignore`, GITIGNORE_LINE, "ensure_gitignore_entry", true, DEFT_CACHE_RATIONALE, `${GITIGNORE_LINE} is commented out (operator has opted in to commit the cache per docs/privacy-nfr.md NFR-2; not re-adding)`);
|
|
247
|
+
return ensureGitignoreLine(projectRoot, `${projectRoot}/.gitignore`, GITIGNORE_LINE, "ensure_gitignore_entry", true, DEFT_CACHE_RATIONALE, `${GITIGNORE_LINE} is commented out (operator has opted in to commit the cache per docs/privacy-nfr.md NFR-2; not re-adding)`);
|
|
255
248
|
}
|
|
256
249
|
function formatBlanketWarning(blanketPresent) {
|
|
257
250
|
if (!blanketPresent)
|
|
@@ -274,7 +267,14 @@ function gitattributesHasEvalMergeUnion(body, glob) {
|
|
|
274
267
|
}
|
|
275
268
|
return false;
|
|
276
269
|
}
|
|
277
|
-
function ensureGitignoreSelectiveEntries(
|
|
270
|
+
function ensureGitignoreSelectiveEntries(projectRoot, stepName, entries) {
|
|
271
|
+
const gitignorePath = `${projectRoot}/.gitignore`;
|
|
272
|
+
try {
|
|
273
|
+
assertProjectionContained(projectRoot, gitignorePath);
|
|
274
|
+
}
|
|
275
|
+
catch (err) {
|
|
276
|
+
return containmentFailure(stepName, err);
|
|
277
|
+
}
|
|
278
278
|
let existing;
|
|
279
279
|
try {
|
|
280
280
|
existing = readFileSync(gitignorePath, { encoding: "utf8" });
|
|
@@ -316,7 +316,14 @@ function ensureGitignoreSelectiveEntries(gitignorePath, stepName, entries) {
|
|
|
316
316
|
rationale_already_present: rationaleAlreadyPresent,
|
|
317
317
|
});
|
|
318
318
|
}
|
|
319
|
-
function ensureGitattributesMergeUnion(
|
|
319
|
+
function ensureGitattributesMergeUnion(projectRoot, stepName, glob, ruleLine) {
|
|
320
|
+
const gitattributesPath = `${projectRoot}/.gitattributes`;
|
|
321
|
+
try {
|
|
322
|
+
assertProjectionContained(projectRoot, gitattributesPath);
|
|
323
|
+
}
|
|
324
|
+
catch (err) {
|
|
325
|
+
return containmentFailure(stepName, err);
|
|
326
|
+
}
|
|
320
327
|
if (existsSync(gitattributesPath)) {
|
|
321
328
|
let existing;
|
|
322
329
|
try {
|
|
@@ -358,6 +365,12 @@ function ensureGitattributesMergeUnion(gitattributesPath, stepName, glob, ruleLi
|
|
|
358
365
|
}
|
|
359
366
|
function ensureEvalReadme(options) {
|
|
360
367
|
const { projectRoot, readmePath, readmeRel, stepName } = options;
|
|
368
|
+
try {
|
|
369
|
+
assertProjectionContained(projectRoot, readmePath);
|
|
370
|
+
}
|
|
371
|
+
catch (err) {
|
|
372
|
+
return containmentFailure(stepName, err);
|
|
373
|
+
}
|
|
361
374
|
try {
|
|
362
375
|
readFileSync(readmePath, { encoding: "utf8" });
|
|
363
376
|
return stepOutcome(stepName, true, `${readmeRel} already present (no-op)`, {
|
|
@@ -381,8 +394,6 @@ function ensureEvalReadme(options) {
|
|
|
381
394
|
}
|
|
382
395
|
/** Ensure the #1144 hybrid policy is encoded in the repo (idempotent). */
|
|
383
396
|
export function stepEnsureGitignoreEvalEntries(projectRoot) {
|
|
384
|
-
const gitignorePath = `${projectRoot}/.gitignore`;
|
|
385
|
-
const gitattributesPath = `${projectRoot}/.gitattributes`;
|
|
386
397
|
// Layout-aware (#2109): resolve the README under the active lifecycle `.eval`
|
|
387
398
|
// dir (xbrief/ when migrated, else vbrief/) instead of a hardcoded vbrief/ path.
|
|
388
399
|
const readmePath = resolveTriageCachePath(projectRoot, "README.md");
|
|
@@ -392,13 +403,13 @@ export function stepEnsureGitignoreEvalEntries(projectRoot) {
|
|
|
392
403
|
const ruleLine = `${glob} merge=union`;
|
|
393
404
|
const stepName = "ensure_gitignore_eval_entries";
|
|
394
405
|
const details = {};
|
|
395
|
-
const giResult = ensureGitignoreSelectiveEntries(
|
|
406
|
+
const giResult = ensureGitignoreSelectiveEntries(projectRoot, stepName, entries);
|
|
396
407
|
if (!giResult.ok) {
|
|
397
408
|
Object.assign(details, giResult.details);
|
|
398
409
|
return stepOutcome(stepName, false, giResult.message, details, giResult.error ?? null);
|
|
399
410
|
}
|
|
400
411
|
Object.assign(details, giResult.details);
|
|
401
|
-
const gaResult = ensureGitattributesMergeUnion(
|
|
412
|
+
const gaResult = ensureGitattributesMergeUnion(projectRoot, stepName, glob, ruleLine);
|
|
402
413
|
if (!gaResult.ok) {
|
|
403
414
|
Object.assign(details, gaResult.details);
|
|
404
415
|
return stepOutcome(stepName, false, gaResult.message, details, gaResult.error ?? null);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { existsSync, readdirSync, readFileSync } from "node:fs";
|
|
2
2
|
import { basename, join, resolve } from "node:path";
|
|
3
3
|
import { referenceTypeMatches } from "@deftai/directive-types";
|
|
4
|
+
import { createIssueComment, editIssueCommentBody, GitHubBodyError, } from "../intake/github-body.js";
|
|
4
5
|
import { hasArtifactSuffix, resolveLifecycleRoot, stripArtifactSuffix } from "../layout/resolve.js";
|
|
5
6
|
import { call } from "../scm/call.js";
|
|
6
7
|
import { extractIssueRef } from "../triage/reconcile/parse-uri.js";
|
|
@@ -229,22 +230,22 @@ export class ScmUmbrellaClient {
|
|
|
229
230
|
return comments;
|
|
230
231
|
}
|
|
231
232
|
editComment(repo, commentId, body) {
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
233
|
+
try {
|
|
234
|
+
editIssueCommentBody(repo, commentId, { body });
|
|
235
|
+
}
|
|
236
|
+
catch (exc) {
|
|
237
|
+
const message = exc instanceof GitHubBodyError ? exc.message : String(exc);
|
|
238
|
+
throw new UmbrellaScmError(`edit comment ${commentId} (${repo}) failed: ${message}`);
|
|
235
239
|
}
|
|
236
240
|
}
|
|
237
241
|
createComment(repo, issueNumber, body) {
|
|
238
|
-
const proc = call(SCM_SOURCE, "api", ["-X", "POST", `repos/${repo}/issues/${issueNumber}/comments`, "--input", "-"], { input: JSON.stringify({ body }) });
|
|
239
|
-
if (proc.returncode !== 0) {
|
|
240
|
-
throw new UmbrellaScmError(`create comment #${issueNumber} (${repo}) failed: ${(proc.stderr || "").trim()}`);
|
|
241
|
-
}
|
|
242
242
|
try {
|
|
243
|
-
const
|
|
244
|
-
return typeof
|
|
243
|
+
const created = createIssueComment(repo, issueNumber, { body });
|
|
244
|
+
return typeof created.id === "number" ? created.id : null;
|
|
245
245
|
}
|
|
246
|
-
catch {
|
|
247
|
-
|
|
246
|
+
catch (exc) {
|
|
247
|
+
const message = exc instanceof GitHubBodyError ? exc.message : String(exc);
|
|
248
|
+
throw new UmbrellaScmError(`create comment #${issueNumber} (${repo}) failed: ${message}`);
|
|
248
249
|
}
|
|
249
250
|
}
|
|
250
251
|
}
|
|
@@ -205,6 +205,15 @@ export function runXbriefMigration(args, _io) {
|
|
|
205
205
|
};
|
|
206
206
|
}
|
|
207
207
|
if (!isDirectory(legacyDir)) {
|
|
208
|
+
// Already on canonical xbrief/ with no vbrief/ tree — residual markers (e.g. a
|
|
209
|
+
// stale deposited v0.6 schema under xbrief/schemas/) are refreshed by update,
|
|
210
|
+
// not migrate:xbrief (#2368).
|
|
211
|
+
if (convergence.xbriefHasContent && !convergence.vbriefPresent) {
|
|
212
|
+
return {
|
|
213
|
+
kind: "noop",
|
|
214
|
+
message: "Project is already on the xbrief layout — residual legacy markers (e.g. a stale deposited schema) cannot be cleared by migrate:xbrief when no vbrief/ tree remains. Run `directive update` to refresh deposited schema files.",
|
|
215
|
+
};
|
|
216
|
+
}
|
|
208
217
|
return {
|
|
209
218
|
kind: "config",
|
|
210
219
|
message: `Legacy markers detected but '${LEGACY_ARTIFACT_DIR}/' directory is missing.`,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deftai/directive-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.74.0",
|
|
4
4
|
"description": "TypeScript engine core for the Directive framework.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -281,8 +281,8 @@
|
|
|
281
281
|
"provenance": true
|
|
282
282
|
},
|
|
283
283
|
"dependencies": {
|
|
284
|
-
"@deftai/directive-content": "^0.
|
|
285
|
-
"@deftai/directive-types": "^0.
|
|
284
|
+
"@deftai/directive-content": "^0.74.0",
|
|
285
|
+
"@deftai/directive-types": "^0.74.0",
|
|
286
286
|
"archiver": "^8.0.0"
|
|
287
287
|
},
|
|
288
288
|
"scripts": {
|