@mobiman/vector 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +117 -0
- package/agents/vector-codebase-mapper.md +770 -0
- package/agents/vector-debugger.md +1338 -0
- package/agents/vector-executor.md +487 -0
- package/agents/vector-integration-checker.md +443 -0
- package/agents/vector-nyquist-auditor.md +176 -0
- package/agents/vector-phase-researcher.md +553 -0
- package/agents/vector-plan-checker.md +706 -0
- package/agents/vector-planner.md +1307 -0
- package/agents/vector-project-researcher.md +629 -0
- package/agents/vector-research-synthesizer.md +247 -0
- package/agents/vector-roadmapper.md +650 -0
- package/agents/vector-ui-auditor.md +439 -0
- package/agents/vector-ui-checker.md +300 -0
- package/agents/vector-ui-researcher.md +353 -0
- package/agents/vector-verifier.md +579 -0
- package/bin/install.cjs +2907 -0
- package/bin/install.cjs.map +1 -0
- package/bin/install.cts +3103 -0
- package/bin/install.d.cts +3 -0
- package/bin/install.d.cts.map +1 -0
- package/commands/vector/add-phase.md +43 -0
- package/commands/vector/add-tests.md +41 -0
- package/commands/vector/add-todo.md +47 -0
- package/commands/vector/audit-milestone.md +36 -0
- package/commands/vector/autonomous.md +41 -0
- package/commands/vector/check-todos.md +45 -0
- package/commands/vector/cleanup.md +18 -0
- package/commands/vector/complete-milestone.md +136 -0
- package/commands/vector/debug.md +168 -0
- package/commands/vector/discuss-phase.md +90 -0
- package/commands/vector/do.md +30 -0
- package/commands/vector/execute-phase.md +41 -0
- package/commands/vector/health.md +22 -0
- package/commands/vector/help.md +22 -0
- package/commands/vector/insert-phase.md +32 -0
- package/commands/vector/join-discord.md +18 -0
- package/commands/vector/list-phase-assumptions.md +46 -0
- package/commands/vector/map-codebase.md +71 -0
- package/commands/vector/new-milestone.md +44 -0
- package/commands/vector/new-project.md +42 -0
- package/commands/vector/pause-work.md +38 -0
- package/commands/vector/plan-milestone-gaps.md +34 -0
- package/commands/vector/plan-phase.md +45 -0
- package/commands/vector/progress.md +24 -0
- package/commands/vector/quick.md +47 -0
- package/commands/vector/reapply-patches.md +123 -0
- package/commands/vector/remove-phase.md +31 -0
- package/commands/vector/research-phase.md +190 -0
- package/commands/vector/resume-work.md +40 -0
- package/commands/vector/set-profile.md +12 -0
- package/commands/vector/settings.md +36 -0
- package/commands/vector/stats.md +18 -0
- package/commands/vector/ui-phase.md +34 -0
- package/commands/vector/ui-review.md +32 -0
- package/commands/vector/update.md +37 -0
- package/commands/vector/validate-phase.md +35 -0
- package/commands/vector/verify-work.md +38 -0
- package/core/bin/lib/commands.cjs +641 -0
- package/core/bin/lib/commands.cjs.map +1 -0
- package/core/bin/lib/commands.cts +712 -0
- package/core/bin/lib/commands.d.cts +23 -0
- package/core/bin/lib/commands.d.cts.map +1 -0
- package/core/bin/lib/config.cjs +281 -0
- package/core/bin/lib/config.cjs.map +1 -0
- package/core/bin/lib/config.cts +301 -0
- package/core/bin/lib/config.d.cts +50 -0
- package/core/bin/lib/config.d.cts.map +1 -0
- package/core/bin/lib/core.cjs +483 -0
- package/core/bin/lib/core.cjs.map +1 -0
- package/core/bin/lib/core.cts +544 -0
- package/core/bin/lib/core.d.cts +96 -0
- package/core/bin/lib/core.d.cts.map +1 -0
- package/core/bin/lib/frontmatter.cjs +341 -0
- package/core/bin/lib/frontmatter.cjs.map +1 -0
- package/core/bin/lib/frontmatter.cts +295 -0
- package/core/bin/lib/frontmatter.d.cts +18 -0
- package/core/bin/lib/frontmatter.d.cts.map +1 -0
- package/core/bin/lib/init.cjs +674 -0
- package/core/bin/lib/init.cjs.map +1 -0
- package/core/bin/lib/init.cts +775 -0
- package/core/bin/lib/init.d.cts +16 -0
- package/core/bin/lib/init.d.cts.map +1 -0
- package/core/bin/lib/milestone.cjs +210 -0
- package/core/bin/lib/milestone.cjs.map +1 -0
- package/core/bin/lib/milestone.cts +241 -0
- package/core/bin/lib/milestone.d.cts +11 -0
- package/core/bin/lib/milestone.d.cts.map +1 -0
- package/core/bin/lib/model-profiles.cjs +62 -0
- package/core/bin/lib/model-profiles.cjs.map +1 -0
- package/core/bin/lib/model-profiles.cts +66 -0
- package/core/bin/lib/model-profiles.d.cts +33 -0
- package/core/bin/lib/model-profiles.d.cts.map +1 -0
- package/core/bin/lib/phase.cjs +713 -0
- package/core/bin/lib/phase.cjs.map +1 -0
- package/core/bin/lib/phase.cts +914 -0
- package/core/bin/lib/phase.d.cts +21 -0
- package/core/bin/lib/phase.d.cts.map +1 -0
- package/core/bin/lib/roadmap.cjs +246 -0
- package/core/bin/lib/roadmap.cjs.map +1 -0
- package/core/bin/lib/roadmap.cts +311 -0
- package/core/bin/lib/roadmap.d.cts +7 -0
- package/core/bin/lib/roadmap.d.cts.map +1 -0
- package/core/bin/lib/state.cjs +709 -0
- package/core/bin/lib/state.cjs.map +1 -0
- package/core/bin/lib/state.cts +718 -0
- package/core/bin/lib/state.d.cts +47 -0
- package/core/bin/lib/state.d.cts.map +1 -0
- package/core/bin/lib/template.cjs +220 -0
- package/core/bin/lib/template.cjs.map +1 -0
- package/core/bin/lib/template.cts +229 -0
- package/core/bin/lib/template.d.cts +15 -0
- package/core/bin/lib/template.d.cts.map +1 -0
- package/core/bin/lib/verify.cjs +824 -0
- package/core/bin/lib/verify.cjs.map +1 -0
- package/core/bin/lib/verify.cts +829 -0
- package/core/bin/lib/verify.d.cts +17 -0
- package/core/bin/lib/verify.d.cts.map +1 -0
- package/core/bin/vector-tools.cjs +641 -0
- package/core/bin/vector-tools.cjs.map +1 -0
- package/core/bin/vector-tools.cts +603 -0
- package/core/bin/vector-tools.d.cts +128 -0
- package/core/bin/vector-tools.d.cts.map +1 -0
- package/core/references/checkpoints.md +776 -0
- package/core/references/continuation-format.md +249 -0
- package/core/references/decimal-phase-calculation.md +65 -0
- package/core/references/git-integration.md +248 -0
- package/core/references/git-planning-commit.md +38 -0
- package/core/references/model-profile-resolution.md +36 -0
- package/core/references/model-profiles.md +101 -0
- package/core/references/phase-argument-parsing.md +61 -0
- package/core/references/planning-config.md +200 -0
- package/core/references/questioning.md +162 -0
- package/core/references/tdd.md +263 -0
- package/core/references/ui-brand.md +160 -0
- package/core/references/verification-patterns.md +612 -0
- package/core/templates/DEBUG.md +164 -0
- package/core/templates/UAT.md +247 -0
- package/core/templates/UI-SPEC.md +100 -0
- package/core/templates/VALIDATION.md +76 -0
- package/core/templates/codebase/architecture.md +255 -0
- package/core/templates/codebase/concerns.md +310 -0
- package/core/templates/codebase/conventions.md +307 -0
- package/core/templates/codebase/integrations.md +280 -0
- package/core/templates/codebase/stack.md +186 -0
- package/core/templates/codebase/structure.md +285 -0
- package/core/templates/codebase/testing.md +480 -0
- package/core/templates/config.json +37 -0
- package/core/templates/context.md +352 -0
- package/core/templates/continue-here.md +78 -0
- package/core/templates/copilot-instructions.md +7 -0
- package/core/templates/debug-subagent-prompt.md +91 -0
- package/core/templates/discovery.md +146 -0
- package/core/templates/milestone-archive.md +123 -0
- package/core/templates/milestone.md +115 -0
- package/core/templates/phase-prompt.md +610 -0
- package/core/templates/planner-subagent-prompt.md +117 -0
- package/core/templates/project.md +184 -0
- package/core/templates/requirements.md +231 -0
- package/core/templates/research-project/ARCHITECTURE.md +204 -0
- package/core/templates/research-project/FEATURES.md +147 -0
- package/core/templates/research-project/PITFALLS.md +200 -0
- package/core/templates/research-project/STACK.md +120 -0
- package/core/templates/research-project/SUMMARY.md +170 -0
- package/core/templates/research.md +552 -0
- package/core/templates/retrospective.md +54 -0
- package/core/templates/roadmap.md +202 -0
- package/core/templates/state.md +176 -0
- package/core/templates/summary-complex.md +59 -0
- package/core/templates/summary-minimal.md +41 -0
- package/core/templates/summary-standard.md +48 -0
- package/core/templates/summary.md +248 -0
- package/core/templates/user-setup.md +311 -0
- package/core/templates/verification-report.md +322 -0
- package/core/workflows/add-phase.md +112 -0
- package/core/workflows/add-tests.md +351 -0
- package/core/workflows/add-todo.md +158 -0
- package/core/workflows/audit-milestone.md +332 -0
- package/core/workflows/autonomous.md +743 -0
- package/core/workflows/check-todos.md +177 -0
- package/core/workflows/cleanup.md +152 -0
- package/core/workflows/complete-milestone.md +766 -0
- package/core/workflows/diagnose-issues.md +219 -0
- package/core/workflows/discovery-phase.md +289 -0
- package/core/workflows/discuss-phase.md +762 -0
- package/core/workflows/do.md +104 -0
- package/core/workflows/execute-phase.md +468 -0
- package/core/workflows/execute-plan.md +483 -0
- package/core/workflows/health.md +159 -0
- package/core/workflows/help.md +513 -0
- package/core/workflows/insert-phase.md +130 -0
- package/core/workflows/list-phase-assumptions.md +178 -0
- package/core/workflows/map-codebase.md +316 -0
- package/core/workflows/new-milestone.md +386 -0
- package/core/workflows/new-project.md +1113 -0
- package/core/workflows/node-repair.md +92 -0
- package/core/workflows/pause-work.md +122 -0
- package/core/workflows/plan-milestone-gaps.md +274 -0
- package/core/workflows/plan-phase.md +666 -0
- package/core/workflows/progress.md +382 -0
- package/core/workflows/quick.md +717 -0
- package/core/workflows/remove-phase.md +155 -0
- package/core/workflows/research-phase.md +74 -0
- package/core/workflows/resume-project.md +307 -0
- package/core/workflows/settings.md +243 -0
- package/core/workflows/stats.md +60 -0
- package/core/workflows/transition.md +544 -0
- package/core/workflows/ui-phase.md +290 -0
- package/core/workflows/ui-review.md +157 -0
- package/core/workflows/update.md +320 -0
- package/core/workflows/validate-phase.md +167 -0
- package/core/workflows/verify-phase.md +243 -0
- package/core/workflows/verify-work.md +584 -0
- package/package.json +55 -0
- package/scripts/build-hooks.cjs +38 -0
- package/scripts/build-hooks.cjs.map +1 -0
- package/scripts/build-hooks.cts +41 -0
- package/scripts/build-hooks.d.cts +6 -0
- package/scripts/build-hooks.d.cts.map +1 -0
- package/scripts/run-tests.cjs +28 -0
- package/scripts/run-tests.cjs.map +1 -0
- package/scripts/run-tests.cts +28 -0
- package/scripts/run-tests.d.cts +3 -0
- package/scripts/run-tests.d.cts.map +1 -0
|
@@ -0,0 +1,341 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Frontmatter — YAML frontmatter parsing, serialization, and CRUD commands
|
|
4
|
+
*/
|
|
5
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
7
|
+
};
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.FRONTMATTER_SCHEMAS = void 0;
|
|
10
|
+
exports.extractFrontmatter = extractFrontmatter;
|
|
11
|
+
exports.reconstructFrontmatter = reconstructFrontmatter;
|
|
12
|
+
exports.spliceFrontmatter = spliceFrontmatter;
|
|
13
|
+
exports.parseMustHavesBlock = parseMustHavesBlock;
|
|
14
|
+
exports.cmdFrontmatterGet = cmdFrontmatterGet;
|
|
15
|
+
exports.cmdFrontmatterSet = cmdFrontmatterSet;
|
|
16
|
+
exports.cmdFrontmatterMerge = cmdFrontmatterMerge;
|
|
17
|
+
exports.cmdFrontmatterValidate = cmdFrontmatterValidate;
|
|
18
|
+
const fs_1 = __importDefault(require("fs"));
|
|
19
|
+
const path_1 = __importDefault(require("path"));
|
|
20
|
+
const core_cjs_1 = require("./core.cjs");
|
|
21
|
+
function extractFrontmatter(content) {
|
|
22
|
+
const frontmatter = {};
|
|
23
|
+
const match = content.match(/^---\n([\s\S]+?)\n---/);
|
|
24
|
+
if (!match)
|
|
25
|
+
return frontmatter;
|
|
26
|
+
const yaml = match[1];
|
|
27
|
+
const lines = yaml.split('\n');
|
|
28
|
+
const stack = [{ obj: frontmatter, key: null, indent: -1 }];
|
|
29
|
+
for (const line of lines) {
|
|
30
|
+
// Skip empty lines
|
|
31
|
+
if (line.trim() === '')
|
|
32
|
+
continue;
|
|
33
|
+
// Calculate indentation (number of leading spaces)
|
|
34
|
+
const indentMatch = line.match(/^(\s*)/);
|
|
35
|
+
const indent = indentMatch ? indentMatch[1].length : 0;
|
|
36
|
+
// Pop stack back to appropriate level
|
|
37
|
+
while (stack.length > 1 && indent <= stack[stack.length - 1].indent) {
|
|
38
|
+
stack.pop();
|
|
39
|
+
}
|
|
40
|
+
const current = stack[stack.length - 1];
|
|
41
|
+
// Check for key: value pattern
|
|
42
|
+
const keyMatch = line.match(/^(\s*)([a-zA-Z0-9_-]+):\s*(.*)/);
|
|
43
|
+
if (keyMatch) {
|
|
44
|
+
const key = keyMatch[2];
|
|
45
|
+
const value = keyMatch[3].trim();
|
|
46
|
+
const currentObj = current.obj;
|
|
47
|
+
if (value === '' || value === '[') {
|
|
48
|
+
// Key with no value or opening bracket — could be nested object or array
|
|
49
|
+
// We'll determine based on next lines, for now create placeholder
|
|
50
|
+
currentObj[key] = value === '[' ? [] : {};
|
|
51
|
+
current.key = null;
|
|
52
|
+
// Push new context for potential nested content
|
|
53
|
+
stack.push({ obj: currentObj[key], key: null, indent });
|
|
54
|
+
}
|
|
55
|
+
else if (value.startsWith('[') && value.endsWith(']')) {
|
|
56
|
+
// Inline array: key: [a, b, c]
|
|
57
|
+
currentObj[key] = value.slice(1, -1).split(',').map(s => s.trim().replace(/^["']|["']$/g, '')).filter(Boolean);
|
|
58
|
+
current.key = null;
|
|
59
|
+
}
|
|
60
|
+
else {
|
|
61
|
+
// Simple key: value
|
|
62
|
+
currentObj[key] = value.replace(/^["']|["']$/g, '');
|
|
63
|
+
current.key = null;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
else if (line.trim().startsWith('- ')) {
|
|
67
|
+
// Array item
|
|
68
|
+
const itemValue = line.trim().slice(2).replace(/^["']|["']$/g, '');
|
|
69
|
+
// If current context is an empty object, convert to array
|
|
70
|
+
if (typeof current.obj === 'object' && !Array.isArray(current.obj) && Object.keys(current.obj).length === 0) {
|
|
71
|
+
// Find the key in parent that points to this object and convert it
|
|
72
|
+
const parent = stack.length > 1 ? stack[stack.length - 2] : null;
|
|
73
|
+
if (parent) {
|
|
74
|
+
const parentObj = parent.obj;
|
|
75
|
+
for (const k of Object.keys(parentObj)) {
|
|
76
|
+
if (parentObj[k] === current.obj) {
|
|
77
|
+
parentObj[k] = [itemValue];
|
|
78
|
+
current.obj = parentObj[k];
|
|
79
|
+
break;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
else if (Array.isArray(current.obj)) {
|
|
85
|
+
current.obj.push(itemValue);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
return frontmatter;
|
|
90
|
+
}
|
|
91
|
+
function reconstructFrontmatter(obj) {
|
|
92
|
+
const lines = [];
|
|
93
|
+
for (const [key, value] of Object.entries(obj)) {
|
|
94
|
+
if (value === null || value === undefined)
|
|
95
|
+
continue;
|
|
96
|
+
if (Array.isArray(value)) {
|
|
97
|
+
if (value.length === 0) {
|
|
98
|
+
lines.push(`${key}: []`);
|
|
99
|
+
}
|
|
100
|
+
else if (value.every(v => typeof v === 'string') && value.length <= 3 && value.join(', ').length < 60) {
|
|
101
|
+
lines.push(`${key}: [${value.join(', ')}]`);
|
|
102
|
+
}
|
|
103
|
+
else {
|
|
104
|
+
lines.push(`${key}:`);
|
|
105
|
+
for (const item of value) {
|
|
106
|
+
lines.push(` - ${typeof item === 'string' && (item.includes(':') || item.includes('#')) ? `"${item}"` : item}`);
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
else if (typeof value === 'object') {
|
|
111
|
+
lines.push(`${key}:`);
|
|
112
|
+
for (const [subkey, subval] of Object.entries(value)) {
|
|
113
|
+
if (subval === null || subval === undefined)
|
|
114
|
+
continue;
|
|
115
|
+
if (Array.isArray(subval)) {
|
|
116
|
+
if (subval.length === 0) {
|
|
117
|
+
lines.push(` ${subkey}: []`);
|
|
118
|
+
}
|
|
119
|
+
else if (subval.every(v => typeof v === 'string') && subval.length <= 3 && subval.join(', ').length < 60) {
|
|
120
|
+
lines.push(` ${subkey}: [${subval.join(', ')}]`);
|
|
121
|
+
}
|
|
122
|
+
else {
|
|
123
|
+
lines.push(` ${subkey}:`);
|
|
124
|
+
for (const item of subval) {
|
|
125
|
+
lines.push(` - ${typeof item === 'string' && (item.includes(':') || item.includes('#')) ? `"${item}"` : item}`);
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
else if (typeof subval === 'object') {
|
|
130
|
+
lines.push(` ${subkey}:`);
|
|
131
|
+
for (const [subsubkey, subsubval] of Object.entries(subval)) {
|
|
132
|
+
if (subsubval === null || subsubval === undefined)
|
|
133
|
+
continue;
|
|
134
|
+
if (Array.isArray(subsubval)) {
|
|
135
|
+
if (subsubval.length === 0) {
|
|
136
|
+
lines.push(` ${subsubkey}: []`);
|
|
137
|
+
}
|
|
138
|
+
else {
|
|
139
|
+
lines.push(` ${subsubkey}:`);
|
|
140
|
+
for (const item of subsubval) {
|
|
141
|
+
lines.push(` - ${item}`);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
else {
|
|
146
|
+
lines.push(` ${subsubkey}: ${subsubval}`);
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
else {
|
|
151
|
+
const sv = String(subval);
|
|
152
|
+
lines.push(` ${subkey}: ${sv.includes(':') || sv.includes('#') ? `"${sv}"` : sv}`);
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
else {
|
|
157
|
+
const sv = String(value);
|
|
158
|
+
if (sv.includes(':') || sv.includes('#') || sv.startsWith('[') || sv.startsWith('{')) {
|
|
159
|
+
lines.push(`${key}: "${sv}"`);
|
|
160
|
+
}
|
|
161
|
+
else {
|
|
162
|
+
lines.push(`${key}: ${sv}`);
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
return lines.join('\n');
|
|
167
|
+
}
|
|
168
|
+
function spliceFrontmatter(content, newObj) {
|
|
169
|
+
const yamlStr = reconstructFrontmatter(newObj);
|
|
170
|
+
const match = content.match(/^---\n[\s\S]+?\n---/);
|
|
171
|
+
if (match) {
|
|
172
|
+
return `---\n${yamlStr}\n---` + content.slice(match[0].length);
|
|
173
|
+
}
|
|
174
|
+
return `---\n${yamlStr}\n---\n\n` + content;
|
|
175
|
+
}
|
|
176
|
+
function parseMustHavesBlock(content, blockName) {
|
|
177
|
+
// Extract a specific block from must_haves in raw frontmatter YAML
|
|
178
|
+
// Handles 3-level nesting: must_haves > artifacts/key_links > [{path, provides, ...}]
|
|
179
|
+
const fmMatch = content.match(/^---\n([\s\S]+?)\n---/);
|
|
180
|
+
if (!fmMatch)
|
|
181
|
+
return [];
|
|
182
|
+
const yaml = fmMatch[1];
|
|
183
|
+
// Find the block (e.g., "truths:", "artifacts:", "key_links:")
|
|
184
|
+
const blockPattern = new RegExp(`^\\s{4}${blockName}:\\s*$`, 'm');
|
|
185
|
+
const blockStart = yaml.search(blockPattern);
|
|
186
|
+
if (blockStart === -1)
|
|
187
|
+
return [];
|
|
188
|
+
const afterBlock = yaml.slice(blockStart);
|
|
189
|
+
const blockLines = afterBlock.split('\n').slice(1); // skip the header line
|
|
190
|
+
const items = [];
|
|
191
|
+
let current = null;
|
|
192
|
+
for (const line of blockLines) {
|
|
193
|
+
// Stop at same or lower indent level (non-continuation)
|
|
194
|
+
if (line.trim() === '')
|
|
195
|
+
continue;
|
|
196
|
+
const indentMatch = line.match(/^(\s*)/);
|
|
197
|
+
const indent = indentMatch ? indentMatch[1].length : 0;
|
|
198
|
+
if (indent <= 4 && line.trim() !== '')
|
|
199
|
+
break; // back to must_haves level or higher
|
|
200
|
+
if (line.match(/^\s{6}-\s+/)) {
|
|
201
|
+
// New list item at 6-space indent
|
|
202
|
+
if (current)
|
|
203
|
+
items.push(current);
|
|
204
|
+
current = {};
|
|
205
|
+
// Check if it's a simple string item
|
|
206
|
+
const simpleMatch = line.match(/^\s{6}-\s+"?([^"]+)"?\s*$/);
|
|
207
|
+
if (simpleMatch && !line.includes(':')) {
|
|
208
|
+
current = simpleMatch[1];
|
|
209
|
+
}
|
|
210
|
+
else {
|
|
211
|
+
// Key-value on same line as dash: "- path: value"
|
|
212
|
+
const kvMatch = line.match(/^\s{6}-\s+(\w+):\s*"?([^"]*)"?\s*$/);
|
|
213
|
+
if (kvMatch) {
|
|
214
|
+
current = {};
|
|
215
|
+
current[kvMatch[1]] = kvMatch[2];
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
else if (current && typeof current === 'object') {
|
|
220
|
+
const currentObj = current;
|
|
221
|
+
// Continuation key-value at 8+ space indent
|
|
222
|
+
const kvMatch = line.match(/^\s{8,}(\w+):\s*"?([^"]*)"?\s*$/);
|
|
223
|
+
if (kvMatch) {
|
|
224
|
+
const val = kvMatch[2];
|
|
225
|
+
// Try to parse as number
|
|
226
|
+
currentObj[kvMatch[1]] = /^\d+$/.test(val) ? parseInt(val, 10) : val;
|
|
227
|
+
}
|
|
228
|
+
// Array items under a key
|
|
229
|
+
const arrMatch = line.match(/^\s{10,}-\s+"?([^"]+)"?\s*$/);
|
|
230
|
+
if (arrMatch) {
|
|
231
|
+
// Find the last key added and convert to array
|
|
232
|
+
const keys = Object.keys(currentObj);
|
|
233
|
+
const lastKey = keys[keys.length - 1];
|
|
234
|
+
if (lastKey && !Array.isArray(currentObj[lastKey])) {
|
|
235
|
+
currentObj[lastKey] = currentObj[lastKey] ? [currentObj[lastKey]] : [];
|
|
236
|
+
}
|
|
237
|
+
if (lastKey)
|
|
238
|
+
currentObj[lastKey].push(arrMatch[1]);
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
if (current)
|
|
243
|
+
items.push(current);
|
|
244
|
+
return items;
|
|
245
|
+
}
|
|
246
|
+
// ─── Frontmatter CRUD commands ────────────────────────────────────────────────
|
|
247
|
+
exports.FRONTMATTER_SCHEMAS = {
|
|
248
|
+
plan: { required: ['phase', 'plan', 'type', 'wave', 'depends_on', 'files_modified', 'autonomous', 'must_haves'] },
|
|
249
|
+
summary: { required: ['phase', 'plan', 'subsystem', 'tags', 'duration', 'completed'] },
|
|
250
|
+
verification: { required: ['phase', 'verified', 'status', 'score'] },
|
|
251
|
+
};
|
|
252
|
+
function cmdFrontmatterGet(cwd, filePath, field, raw) {
|
|
253
|
+
if (!filePath) {
|
|
254
|
+
(0, core_cjs_1.error)('file path required');
|
|
255
|
+
}
|
|
256
|
+
const fullPath = path_1.default.isAbsolute(filePath) ? filePath : path_1.default.join(cwd, filePath);
|
|
257
|
+
const content = (0, core_cjs_1.safeReadFile)(fullPath);
|
|
258
|
+
if (!content) {
|
|
259
|
+
(0, core_cjs_1.output)({ error: 'File not found', path: filePath }, raw);
|
|
260
|
+
return;
|
|
261
|
+
}
|
|
262
|
+
const fm = extractFrontmatter(content);
|
|
263
|
+
if (field) {
|
|
264
|
+
const value = fm[field];
|
|
265
|
+
if (value === undefined) {
|
|
266
|
+
(0, core_cjs_1.output)({ error: 'Field not found', field }, raw);
|
|
267
|
+
return;
|
|
268
|
+
}
|
|
269
|
+
(0, core_cjs_1.output)({ [field]: value }, raw, JSON.stringify(value));
|
|
270
|
+
}
|
|
271
|
+
else {
|
|
272
|
+
(0, core_cjs_1.output)(fm, raw);
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
function cmdFrontmatterSet(cwd, filePath, field, value, raw) {
|
|
276
|
+
if (!filePath || !field || value === undefined) {
|
|
277
|
+
(0, core_cjs_1.error)('file, field, and value required');
|
|
278
|
+
}
|
|
279
|
+
const fullPath = path_1.default.isAbsolute(filePath) ? filePath : path_1.default.join(cwd, filePath);
|
|
280
|
+
if (!fs_1.default.existsSync(fullPath)) {
|
|
281
|
+
(0, core_cjs_1.output)({ error: 'File not found', path: filePath }, raw);
|
|
282
|
+
return;
|
|
283
|
+
}
|
|
284
|
+
const content = fs_1.default.readFileSync(fullPath, 'utf-8');
|
|
285
|
+
const fm = extractFrontmatter(content);
|
|
286
|
+
let parsedValue;
|
|
287
|
+
try {
|
|
288
|
+
parsedValue = JSON.parse(value);
|
|
289
|
+
}
|
|
290
|
+
catch {
|
|
291
|
+
parsedValue = value;
|
|
292
|
+
}
|
|
293
|
+
fm[field] = parsedValue;
|
|
294
|
+
const newContent = spliceFrontmatter(content, fm);
|
|
295
|
+
fs_1.default.writeFileSync(fullPath, newContent, 'utf-8');
|
|
296
|
+
(0, core_cjs_1.output)({ updated: true, field, value: parsedValue }, raw, 'true');
|
|
297
|
+
}
|
|
298
|
+
function cmdFrontmatterMerge(cwd, filePath, data, raw) {
|
|
299
|
+
if (!filePath || !data) {
|
|
300
|
+
(0, core_cjs_1.error)('file and data required');
|
|
301
|
+
}
|
|
302
|
+
const fullPath = path_1.default.isAbsolute(filePath) ? filePath : path_1.default.join(cwd, filePath);
|
|
303
|
+
if (!fs_1.default.existsSync(fullPath)) {
|
|
304
|
+
(0, core_cjs_1.output)({ error: 'File not found', path: filePath }, raw);
|
|
305
|
+
return;
|
|
306
|
+
}
|
|
307
|
+
const content = fs_1.default.readFileSync(fullPath, 'utf-8');
|
|
308
|
+
const fm = extractFrontmatter(content);
|
|
309
|
+
let mergeData;
|
|
310
|
+
try {
|
|
311
|
+
mergeData = JSON.parse(data);
|
|
312
|
+
}
|
|
313
|
+
catch {
|
|
314
|
+
(0, core_cjs_1.error)('Invalid JSON for --data');
|
|
315
|
+
return;
|
|
316
|
+
}
|
|
317
|
+
Object.assign(fm, mergeData);
|
|
318
|
+
const newContent = spliceFrontmatter(content, fm);
|
|
319
|
+
fs_1.default.writeFileSync(fullPath, newContent, 'utf-8');
|
|
320
|
+
(0, core_cjs_1.output)({ merged: true, fields: Object.keys(mergeData) }, raw, 'true');
|
|
321
|
+
}
|
|
322
|
+
function cmdFrontmatterValidate(cwd, filePath, schemaName, raw) {
|
|
323
|
+
if (!filePath || !schemaName) {
|
|
324
|
+
(0, core_cjs_1.error)('file and schema required');
|
|
325
|
+
}
|
|
326
|
+
const schema = exports.FRONTMATTER_SCHEMAS[schemaName];
|
|
327
|
+
if (!schema) {
|
|
328
|
+
(0, core_cjs_1.error)(`Unknown schema: ${schemaName}. Available: ${Object.keys(exports.FRONTMATTER_SCHEMAS).join(', ')}`);
|
|
329
|
+
}
|
|
330
|
+
const fullPath = path_1.default.isAbsolute(filePath) ? filePath : path_1.default.join(cwd, filePath);
|
|
331
|
+
const content = (0, core_cjs_1.safeReadFile)(fullPath);
|
|
332
|
+
if (!content) {
|
|
333
|
+
(0, core_cjs_1.output)({ error: 'File not found', path: filePath }, raw);
|
|
334
|
+
return;
|
|
335
|
+
}
|
|
336
|
+
const fm = extractFrontmatter(content);
|
|
337
|
+
const missing = schema.required.filter(f => fm[f] === undefined);
|
|
338
|
+
const present = schema.required.filter(f => fm[f] !== undefined);
|
|
339
|
+
(0, core_cjs_1.output)({ valid: missing.length === 0, missing, present, schema: schemaName }, raw, missing.length === 0 ? 'valid' : 'invalid');
|
|
340
|
+
}
|
|
341
|
+
//# sourceMappingURL=frontmatter.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"frontmatter.cjs","sourceRoot":"","sources":["frontmatter.cts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,295 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Frontmatter — YAML frontmatter parsing, serialization, and CRUD commands
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import fs from 'fs';
|
|
6
|
+
import path from 'path';
|
|
7
|
+
import { safeReadFile, output, error } from './core.cjs';
|
|
8
|
+
|
|
9
|
+
// ─── Parsing engine ───────────────────────────────────────────────────────────
|
|
10
|
+
|
|
11
|
+
type FrontmatterValue = string | string[] | Record<string, unknown> | boolean | number | null;
|
|
12
|
+
type FrontmatterObject = Record<string, FrontmatterValue>;
|
|
13
|
+
|
|
14
|
+
export function extractFrontmatter(content: string): FrontmatterObject {
|
|
15
|
+
const frontmatter: FrontmatterObject = {};
|
|
16
|
+
const match = content.match(/^---\n([\s\S]+?)\n---/);
|
|
17
|
+
if (!match) return frontmatter;
|
|
18
|
+
|
|
19
|
+
const yaml = match[1];
|
|
20
|
+
const lines = yaml.split('\n');
|
|
21
|
+
|
|
22
|
+
// Stack to track nested objects: [{obj, key, indent}]
|
|
23
|
+
// obj = object to write to, key = current key collecting array items, indent = indentation level
|
|
24
|
+
type StackFrame = { obj: Record<string, unknown> | unknown[]; key: string | null; indent: number };
|
|
25
|
+
const stack: StackFrame[] = [{ obj: frontmatter as Record<string, unknown>, key: null, indent: -1 }];
|
|
26
|
+
|
|
27
|
+
for (const line of lines) {
|
|
28
|
+
// Skip empty lines
|
|
29
|
+
if (line.trim() === '') continue;
|
|
30
|
+
|
|
31
|
+
// Calculate indentation (number of leading spaces)
|
|
32
|
+
const indentMatch = line.match(/^(\s*)/);
|
|
33
|
+
const indent = indentMatch ? indentMatch[1].length : 0;
|
|
34
|
+
|
|
35
|
+
// Pop stack back to appropriate level
|
|
36
|
+
while (stack.length > 1 && indent <= stack[stack.length - 1].indent) {
|
|
37
|
+
stack.pop();
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
const current = stack[stack.length - 1];
|
|
41
|
+
|
|
42
|
+
// Check for key: value pattern
|
|
43
|
+
const keyMatch = line.match(/^(\s*)([a-zA-Z0-9_-]+):\s*(.*)/);
|
|
44
|
+
if (keyMatch) {
|
|
45
|
+
const key = keyMatch[2];
|
|
46
|
+
const value = keyMatch[3].trim();
|
|
47
|
+
const currentObj = current.obj as Record<string, unknown>;
|
|
48
|
+
|
|
49
|
+
if (value === '' || value === '[') {
|
|
50
|
+
// Key with no value or opening bracket — could be nested object or array
|
|
51
|
+
// We'll determine based on next lines, for now create placeholder
|
|
52
|
+
currentObj[key] = value === '[' ? [] : {};
|
|
53
|
+
current.key = null;
|
|
54
|
+
// Push new context for potential nested content
|
|
55
|
+
stack.push({ obj: currentObj[key] as Record<string, unknown> | unknown[], key: null, indent });
|
|
56
|
+
} else if (value.startsWith('[') && value.endsWith(']')) {
|
|
57
|
+
// Inline array: key: [a, b, c]
|
|
58
|
+
currentObj[key] = value.slice(1, -1).split(',').map(s => s.trim().replace(/^["']|["']$/g, '')).filter(Boolean);
|
|
59
|
+
current.key = null;
|
|
60
|
+
} else {
|
|
61
|
+
// Simple key: value
|
|
62
|
+
currentObj[key] = value.replace(/^["']|["']$/g, '');
|
|
63
|
+
current.key = null;
|
|
64
|
+
}
|
|
65
|
+
} else if (line.trim().startsWith('- ')) {
|
|
66
|
+
// Array item
|
|
67
|
+
const itemValue = line.trim().slice(2).replace(/^["']|["']$/g, '');
|
|
68
|
+
|
|
69
|
+
// If current context is an empty object, convert to array
|
|
70
|
+
if (typeof current.obj === 'object' && !Array.isArray(current.obj) && Object.keys(current.obj).length === 0) {
|
|
71
|
+
// Find the key in parent that points to this object and convert it
|
|
72
|
+
const parent = stack.length > 1 ? stack[stack.length - 2] : null;
|
|
73
|
+
if (parent) {
|
|
74
|
+
const parentObj = parent.obj as Record<string, unknown>;
|
|
75
|
+
for (const k of Object.keys(parentObj)) {
|
|
76
|
+
if (parentObj[k] === current.obj) {
|
|
77
|
+
parentObj[k] = [itemValue];
|
|
78
|
+
(current as { obj: unknown[] | Record<string, unknown> }).obj = parentObj[k] as unknown[];
|
|
79
|
+
break;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
} else if (Array.isArray(current.obj)) {
|
|
84
|
+
(current.obj as unknown[]).push(itemValue);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
return frontmatter;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export function reconstructFrontmatter(obj: Record<string, unknown>): string {
|
|
93
|
+
const lines: string[] = [];
|
|
94
|
+
for (const [key, value] of Object.entries(obj)) {
|
|
95
|
+
if (value === null || value === undefined) continue;
|
|
96
|
+
if (Array.isArray(value)) {
|
|
97
|
+
if (value.length === 0) {
|
|
98
|
+
lines.push(`${key}: []`);
|
|
99
|
+
} else if (value.every(v => typeof v === 'string') && value.length <= 3 && (value as string[]).join(', ').length < 60) {
|
|
100
|
+
lines.push(`${key}: [${(value as string[]).join(', ')}]`);
|
|
101
|
+
} else {
|
|
102
|
+
lines.push(`${key}:`);
|
|
103
|
+
for (const item of value) {
|
|
104
|
+
lines.push(` - ${typeof item === 'string' && (item.includes(':') || item.includes('#')) ? `"${item}"` : item}`);
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
} else if (typeof value === 'object') {
|
|
108
|
+
lines.push(`${key}:`);
|
|
109
|
+
for (const [subkey, subval] of Object.entries(value as Record<string, unknown>)) {
|
|
110
|
+
if (subval === null || subval === undefined) continue;
|
|
111
|
+
if (Array.isArray(subval)) {
|
|
112
|
+
if (subval.length === 0) {
|
|
113
|
+
lines.push(` ${subkey}: []`);
|
|
114
|
+
} else if (subval.every(v => typeof v === 'string') && subval.length <= 3 && (subval as string[]).join(', ').length < 60) {
|
|
115
|
+
lines.push(` ${subkey}: [${(subval as string[]).join(', ')}]`);
|
|
116
|
+
} else {
|
|
117
|
+
lines.push(` ${subkey}:`);
|
|
118
|
+
for (const item of subval) {
|
|
119
|
+
lines.push(` - ${typeof item === 'string' && (item.includes(':') || item.includes('#')) ? `"${item}"` : item}`);
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
} else if (typeof subval === 'object') {
|
|
123
|
+
lines.push(` ${subkey}:`);
|
|
124
|
+
for (const [subsubkey, subsubval] of Object.entries(subval as Record<string, unknown>)) {
|
|
125
|
+
if (subsubval === null || subsubval === undefined) continue;
|
|
126
|
+
if (Array.isArray(subsubval)) {
|
|
127
|
+
if (subsubval.length === 0) {
|
|
128
|
+
lines.push(` ${subsubkey}: []`);
|
|
129
|
+
} else {
|
|
130
|
+
lines.push(` ${subsubkey}:`);
|
|
131
|
+
for (const item of subsubval) {
|
|
132
|
+
lines.push(` - ${item}`);
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
} else {
|
|
136
|
+
lines.push(` ${subsubkey}: ${subsubval}`);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
} else {
|
|
140
|
+
const sv = String(subval);
|
|
141
|
+
lines.push(` ${subkey}: ${sv.includes(':') || sv.includes('#') ? `"${sv}"` : sv}`);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
} else {
|
|
145
|
+
const sv = String(value);
|
|
146
|
+
if (sv.includes(':') || sv.includes('#') || sv.startsWith('[') || sv.startsWith('{')) {
|
|
147
|
+
lines.push(`${key}: "${sv}"`);
|
|
148
|
+
} else {
|
|
149
|
+
lines.push(`${key}: ${sv}`);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
return lines.join('\n');
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export function spliceFrontmatter(content: string, newObj: Record<string, unknown>): string {
|
|
157
|
+
const yamlStr = reconstructFrontmatter(newObj);
|
|
158
|
+
const match = content.match(/^---\n[\s\S]+?\n---/);
|
|
159
|
+
if (match) {
|
|
160
|
+
return `---\n${yamlStr}\n---` + content.slice(match[0].length);
|
|
161
|
+
}
|
|
162
|
+
return `---\n${yamlStr}\n---\n\n` + content;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
export function parseMustHavesBlock(content: string, blockName: string): unknown[] {
|
|
166
|
+
// Extract a specific block from must_haves in raw frontmatter YAML
|
|
167
|
+
// Handles 3-level nesting: must_haves > artifacts/key_links > [{path, provides, ...}]
|
|
168
|
+
const fmMatch = content.match(/^---\n([\s\S]+?)\n---/);
|
|
169
|
+
if (!fmMatch) return [];
|
|
170
|
+
|
|
171
|
+
const yaml = fmMatch[1];
|
|
172
|
+
// Find the block (e.g., "truths:", "artifacts:", "key_links:")
|
|
173
|
+
const blockPattern = new RegExp(`^\\s{4}${blockName}:\\s*$`, 'm');
|
|
174
|
+
const blockStart = yaml.search(blockPattern);
|
|
175
|
+
if (blockStart === -1) return [];
|
|
176
|
+
|
|
177
|
+
const afterBlock = yaml.slice(blockStart);
|
|
178
|
+
const blockLines = afterBlock.split('\n').slice(1); // skip the header line
|
|
179
|
+
|
|
180
|
+
const items: unknown[] = [];
|
|
181
|
+
let current: Record<string, unknown> | string | null = null;
|
|
182
|
+
|
|
183
|
+
for (const line of blockLines) {
|
|
184
|
+
// Stop at same or lower indent level (non-continuation)
|
|
185
|
+
if (line.trim() === '') continue;
|
|
186
|
+
const indentMatch = line.match(/^(\s*)/);
|
|
187
|
+
const indent = indentMatch ? indentMatch[1].length : 0;
|
|
188
|
+
if (indent <= 4 && line.trim() !== '') break; // back to must_haves level or higher
|
|
189
|
+
|
|
190
|
+
if (line.match(/^\s{6}-\s+/)) {
|
|
191
|
+
// New list item at 6-space indent
|
|
192
|
+
if (current) items.push(current);
|
|
193
|
+
current = {};
|
|
194
|
+
// Check if it's a simple string item
|
|
195
|
+
const simpleMatch = line.match(/^\s{6}-\s+"?([^"]+)"?\s*$/);
|
|
196
|
+
if (simpleMatch && !line.includes(':')) {
|
|
197
|
+
current = simpleMatch[1];
|
|
198
|
+
} else {
|
|
199
|
+
// Key-value on same line as dash: "- path: value"
|
|
200
|
+
const kvMatch = line.match(/^\s{6}-\s+(\w+):\s*"?([^"]*)"?\s*$/);
|
|
201
|
+
if (kvMatch) {
|
|
202
|
+
current = {};
|
|
203
|
+
(current as Record<string, unknown>)[kvMatch[1]] = kvMatch[2];
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
} else if (current && typeof current === 'object') {
|
|
207
|
+
const currentObj = current as Record<string, unknown>;
|
|
208
|
+
// Continuation key-value at 8+ space indent
|
|
209
|
+
const kvMatch = line.match(/^\s{8,}(\w+):\s*"?([^"]*)"?\s*$/);
|
|
210
|
+
if (kvMatch) {
|
|
211
|
+
const val = kvMatch[2];
|
|
212
|
+
// Try to parse as number
|
|
213
|
+
currentObj[kvMatch[1]] = /^\d+$/.test(val) ? parseInt(val, 10) : val;
|
|
214
|
+
}
|
|
215
|
+
// Array items under a key
|
|
216
|
+
const arrMatch = line.match(/^\s{10,}-\s+"?([^"]+)"?\s*$/);
|
|
217
|
+
if (arrMatch) {
|
|
218
|
+
// Find the last key added and convert to array
|
|
219
|
+
const keys = Object.keys(currentObj);
|
|
220
|
+
const lastKey = keys[keys.length - 1];
|
|
221
|
+
if (lastKey && !Array.isArray(currentObj[lastKey])) {
|
|
222
|
+
currentObj[lastKey] = currentObj[lastKey] ? [currentObj[lastKey]] : [];
|
|
223
|
+
}
|
|
224
|
+
if (lastKey) (currentObj[lastKey] as unknown[]).push(arrMatch[1]);
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
if (current) items.push(current);
|
|
229
|
+
|
|
230
|
+
return items;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
// ─── Frontmatter CRUD commands ────────────────────────────────────────────────
|
|
234
|
+
|
|
235
|
+
export const FRONTMATTER_SCHEMAS: Record<string, { required: string[] }> = {
|
|
236
|
+
plan: { required: ['phase', 'plan', 'type', 'wave', 'depends_on', 'files_modified', 'autonomous', 'must_haves'] },
|
|
237
|
+
summary: { required: ['phase', 'plan', 'subsystem', 'tags', 'duration', 'completed'] },
|
|
238
|
+
verification: { required: ['phase', 'verified', 'status', 'score'] },
|
|
239
|
+
};
|
|
240
|
+
|
|
241
|
+
export function cmdFrontmatterGet(cwd: string, filePath: string | null, field: string | null, raw: boolean): void {
|
|
242
|
+
if (!filePath) { error('file path required'); }
|
|
243
|
+
const fullPath = path.isAbsolute(filePath!) ? filePath! : path.join(cwd, filePath!);
|
|
244
|
+
const content = safeReadFile(fullPath);
|
|
245
|
+
if (!content) { output({ error: 'File not found', path: filePath }, raw); return; }
|
|
246
|
+
const fm = extractFrontmatter(content);
|
|
247
|
+
if (field) {
|
|
248
|
+
const value = fm[field];
|
|
249
|
+
if (value === undefined) { output({ error: 'Field not found', field }, raw); return; }
|
|
250
|
+
output({ [field]: value }, raw, JSON.stringify(value));
|
|
251
|
+
} else {
|
|
252
|
+
output(fm, raw);
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
export function cmdFrontmatterSet(cwd: string, filePath: string | null, field: string | null, value: string | undefined, raw: boolean): void {
|
|
257
|
+
if (!filePath || !field || value === undefined) { error('file, field, and value required'); }
|
|
258
|
+
const fullPath = path.isAbsolute(filePath!) ? filePath! : path.join(cwd, filePath!);
|
|
259
|
+
if (!fs.existsSync(fullPath)) { output({ error: 'File not found', path: filePath }, raw); return; }
|
|
260
|
+
const content = fs.readFileSync(fullPath, 'utf-8');
|
|
261
|
+
const fm = extractFrontmatter(content);
|
|
262
|
+
let parsedValue: unknown;
|
|
263
|
+
try { parsedValue = JSON.parse(value!); } catch { parsedValue = value; }
|
|
264
|
+
fm[field!] = parsedValue as FrontmatterValue;
|
|
265
|
+
const newContent = spliceFrontmatter(content, fm);
|
|
266
|
+
fs.writeFileSync(fullPath, newContent, 'utf-8');
|
|
267
|
+
output({ updated: true, field, value: parsedValue }, raw, 'true');
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
export function cmdFrontmatterMerge(cwd: string, filePath: string | null, data: string | null, raw: boolean): void {
|
|
271
|
+
if (!filePath || !data) { error('file and data required'); }
|
|
272
|
+
const fullPath = path.isAbsolute(filePath!) ? filePath! : path.join(cwd, filePath!);
|
|
273
|
+
if (!fs.existsSync(fullPath)) { output({ error: 'File not found', path: filePath }, raw); return; }
|
|
274
|
+
const content = fs.readFileSync(fullPath, 'utf-8');
|
|
275
|
+
const fm = extractFrontmatter(content);
|
|
276
|
+
let mergeData: Record<string, unknown>;
|
|
277
|
+
try { mergeData = JSON.parse(data!); } catch { error('Invalid JSON for --data'); return; }
|
|
278
|
+
Object.assign(fm, mergeData);
|
|
279
|
+
const newContent = spliceFrontmatter(content, fm);
|
|
280
|
+
fs.writeFileSync(fullPath, newContent, 'utf-8');
|
|
281
|
+
output({ merged: true, fields: Object.keys(mergeData) }, raw, 'true');
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
export function cmdFrontmatterValidate(cwd: string, filePath: string | null, schemaName: string | null, raw: boolean): void {
|
|
285
|
+
if (!filePath || !schemaName) { error('file and schema required'); }
|
|
286
|
+
const schema = FRONTMATTER_SCHEMAS[schemaName!];
|
|
287
|
+
if (!schema) { error(`Unknown schema: ${schemaName}. Available: ${Object.keys(FRONTMATTER_SCHEMAS).join(', ')}`); }
|
|
288
|
+
const fullPath = path.isAbsolute(filePath!) ? filePath! : path.join(cwd, filePath!);
|
|
289
|
+
const content = safeReadFile(fullPath);
|
|
290
|
+
if (!content) { output({ error: 'File not found', path: filePath }, raw); return; }
|
|
291
|
+
const fm = extractFrontmatter(content);
|
|
292
|
+
const missing = schema.required.filter(f => fm[f] === undefined);
|
|
293
|
+
const present = schema.required.filter(f => fm[f] !== undefined);
|
|
294
|
+
output({ valid: missing.length === 0, missing, present, schema: schemaName }, raw, missing.length === 0 ? 'valid' : 'invalid');
|
|
295
|
+
}
|