ragarciaruben 1.20.7
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/.github/copilot-context/README.md +313 -0
- package/.github/copilot-context/agents/executor.agent.md +59 -0
- package/.github/copilot-context/agents/planner.agent.md +58 -0
- package/.github/copilot-context/agents/verifier.agent.md +68 -0
- package/.github/copilot-context/hooks/hooks.json +11 -0
- package/.github/copilot-context/hooks/inject-context.js +107 -0
- package/.github/copilot-context/instructions/architecture.instructions.md +33 -0
- package/.github/copilot-context/instructions/concerns.instructions.md +30 -0
- package/.github/copilot-context/instructions/conventions.instructions.md +25 -0
- package/.github/copilot-context/instructions/integrations.instructions.md +30 -0
- package/.github/copilot-context/instructions/stack.instructions.md +30 -0
- package/.github/copilot-context/instructions/structure.instructions.md +32 -0
- package/.github/copilot-context/instructions/testing.instructions.md +25 -0
- package/.github/copilot-context/prompts/execute-phase.prompt.md +148 -0
- package/.github/copilot-context/prompts/map-codebase.prompt.md +115 -0
- package/.github/copilot-context/prompts/new-project.prompt.md +85 -0
- package/.github/copilot-context/prompts/pause-work.prompt.md +104 -0
- package/.github/copilot-context/prompts/plan-phase.prompt.md +137 -0
- package/.github/copilot-context/prompts/progress.prompt.md +69 -0
- package/.github/copilot-context/prompts/resume-work.prompt.md +74 -0
- package/.github/copilot-context/prompts/sync-instructions.prompt.md +86 -0
- package/.github/copilot-context/prompts/verify-work.prompt.md +126 -0
- package/.github/copilot-context/skills/map-codebase/SKILL.md +49 -0
- package/.github/copilot-context/skills/project-history/SKILL.md +46 -0
- package/.github/copilot-instructions.md +68 -0
- package/.planning/PROJECT.md +61 -0
- package/.planning/REQUIREMENTS.md +70 -0
- package/.planning/ROADMAP.md +75 -0
- package/.planning/STATE.md +75 -0
- package/.planning/codebase/ARCHITECTURE.md +76 -0
- package/.planning/codebase/CONCERNS.md +102 -0
- package/.planning/codebase/CONVENTIONS.md +119 -0
- package/.planning/codebase/INTEGRATIONS.md +114 -0
- package/.planning/codebase/STACK.md +78 -0
- package/.planning/codebase/STRUCTURE.md +75 -0
- package/.planning/codebase/TESTING.md +157 -0
- package/.planning/continue-here.md +44 -0
- package/.vscode/settings.json +16 -0
- package/LICENSE +21 -0
- package/README.md +704 -0
- package/agents/gsd-codebase-mapper.md +764 -0
- package/agents/gsd-debugger.md +1246 -0
- package/agents/gsd-executor.md +469 -0
- package/agents/gsd-integration-checker.md +443 -0
- package/agents/gsd-phase-researcher.md +546 -0
- package/agents/gsd-plan-checker.md +690 -0
- package/agents/gsd-planner.md +1275 -0
- package/agents/gsd-project-researcher.md +621 -0
- package/agents/gsd-research-synthesizer.md +239 -0
- package/agents/gsd-roadmapper.md +642 -0
- package/agents/gsd-verifier.md +573 -0
- package/bin/install.js +2091 -0
- package/bin/setup-copilot-context.js +180 -0
- package/commands/gsd/add-phase.md +43 -0
- package/commands/gsd/add-tests.md +41 -0
- package/commands/gsd/add-todo.md +47 -0
- package/commands/gsd/audit-milestone.md +36 -0
- package/commands/gsd/check-todos.md +45 -0
- package/commands/gsd/cleanup.md +18 -0
- package/commands/gsd/complete-milestone.md +136 -0
- package/commands/gsd/debug.md +167 -0
- package/commands/gsd/discuss-phase.md +83 -0
- package/commands/gsd/execute-phase.md +41 -0
- package/commands/gsd/health.md +22 -0
- package/commands/gsd/help.md +22 -0
- package/commands/gsd/insert-phase.md +32 -0
- package/commands/gsd/join-discord.md +18 -0
- package/commands/gsd/list-phase-assumptions.md +46 -0
- package/commands/gsd/map-codebase.md +71 -0
- package/commands/gsd/new-milestone.md +44 -0
- package/commands/gsd/new-project.md +42 -0
- package/commands/gsd/new-project.md.bak +1041 -0
- package/commands/gsd/pause-work.md +38 -0
- package/commands/gsd/plan-milestone-gaps.md +34 -0
- package/commands/gsd/plan-phase.md +45 -0
- package/commands/gsd/progress.md +24 -0
- package/commands/gsd/quick.md +41 -0
- package/commands/gsd/reapply-patches.md +110 -0
- package/commands/gsd/remove-phase.md +31 -0
- package/commands/gsd/research-phase.md +189 -0
- package/commands/gsd/resume-work.md +40 -0
- package/commands/gsd/set-profile.md +34 -0
- package/commands/gsd/settings.md +36 -0
- package/commands/gsd/update.md +37 -0
- package/commands/gsd/verify-work.md +38 -0
- package/get-shit-done/bin/gsd-tools.cjs +585 -0
- package/get-shit-done/bin/lib/commands.cjs +553 -0
- package/get-shit-done/bin/lib/config.cjs +162 -0
- package/get-shit-done/bin/lib/core.cjs +411 -0
- package/get-shit-done/bin/lib/frontmatter.cjs +299 -0
- package/get-shit-done/bin/lib/init.cjs +710 -0
- package/get-shit-done/bin/lib/milestone.cjs +215 -0
- package/get-shit-done/bin/lib/phase.cjs +870 -0
- package/get-shit-done/bin/lib/roadmap.cjs +298 -0
- package/get-shit-done/bin/lib/state.cjs +521 -0
- package/get-shit-done/bin/lib/template.cjs +222 -0
- package/get-shit-done/bin/lib/verify.cjs +772 -0
- package/get-shit-done/references/checkpoints.md +776 -0
- package/get-shit-done/references/continuation-format.md +249 -0
- package/get-shit-done/references/decimal-phase-calculation.md +65 -0
- package/get-shit-done/references/git-integration.md +248 -0
- package/get-shit-done/references/git-planning-commit.md +38 -0
- package/get-shit-done/references/model-profile-resolution.md +34 -0
- package/get-shit-done/references/model-profiles.md +92 -0
- package/get-shit-done/references/phase-argument-parsing.md +61 -0
- package/get-shit-done/references/planning-config.md +196 -0
- package/get-shit-done/references/questioning.md +145 -0
- package/get-shit-done/references/tdd.md +263 -0
- package/get-shit-done/references/ui-brand.md +160 -0
- package/get-shit-done/references/verification-patterns.md +612 -0
- package/get-shit-done/templates/DEBUG.md +164 -0
- package/get-shit-done/templates/UAT.md +247 -0
- package/get-shit-done/templates/VALIDATION.md +76 -0
- package/get-shit-done/templates/codebase/architecture.md +255 -0
- package/get-shit-done/templates/codebase/concerns.md +310 -0
- package/get-shit-done/templates/codebase/conventions.md +307 -0
- package/get-shit-done/templates/codebase/integrations.md +280 -0
- package/get-shit-done/templates/codebase/stack.md +186 -0
- package/get-shit-done/templates/codebase/structure.md +285 -0
- package/get-shit-done/templates/codebase/testing.md +480 -0
- package/get-shit-done/templates/config.json +37 -0
- package/get-shit-done/templates/context.md +283 -0
- package/get-shit-done/templates/continue-here.md +78 -0
- package/get-shit-done/templates/debug-subagent-prompt.md +91 -0
- package/get-shit-done/templates/discovery.md +146 -0
- package/get-shit-done/templates/milestone-archive.md +123 -0
- package/get-shit-done/templates/milestone.md +115 -0
- package/get-shit-done/templates/phase-prompt.md +569 -0
- package/get-shit-done/templates/planner-subagent-prompt.md +117 -0
- package/get-shit-done/templates/project.md +184 -0
- package/get-shit-done/templates/requirements.md +231 -0
- package/get-shit-done/templates/research-project/ARCHITECTURE.md +204 -0
- package/get-shit-done/templates/research-project/FEATURES.md +147 -0
- package/get-shit-done/templates/research-project/PITFALLS.md +200 -0
- package/get-shit-done/templates/research-project/STACK.md +120 -0
- package/get-shit-done/templates/research-project/SUMMARY.md +170 -0
- package/get-shit-done/templates/research.md +552 -0
- package/get-shit-done/templates/retrospective.md +54 -0
- package/get-shit-done/templates/roadmap.md +202 -0
- package/get-shit-done/templates/state.md +176 -0
- package/get-shit-done/templates/summary-complex.md +59 -0
- package/get-shit-done/templates/summary-minimal.md +41 -0
- package/get-shit-done/templates/summary-standard.md +48 -0
- package/get-shit-done/templates/summary.md +248 -0
- package/get-shit-done/templates/user-setup.md +311 -0
- package/get-shit-done/templates/verification-report.md +322 -0
- package/get-shit-done/workflows/add-phase.md +111 -0
- package/get-shit-done/workflows/add-tests.md +350 -0
- package/get-shit-done/workflows/add-todo.md +157 -0
- package/get-shit-done/workflows/audit-milestone.md +297 -0
- package/get-shit-done/workflows/check-todos.md +176 -0
- package/get-shit-done/workflows/cleanup.md +152 -0
- package/get-shit-done/workflows/complete-milestone.md +763 -0
- package/get-shit-done/workflows/diagnose-issues.md +219 -0
- package/get-shit-done/workflows/discovery-phase.md +289 -0
- package/get-shit-done/workflows/discuss-phase.md +542 -0
- package/get-shit-done/workflows/execute-phase.md +449 -0
- package/get-shit-done/workflows/execute-plan.md +448 -0
- package/get-shit-done/workflows/health.md +156 -0
- package/get-shit-done/workflows/help.md +489 -0
- package/get-shit-done/workflows/insert-phase.md +129 -0
- package/get-shit-done/workflows/list-phase-assumptions.md +178 -0
- package/get-shit-done/workflows/map-codebase.md +315 -0
- package/get-shit-done/workflows/new-milestone.md +382 -0
- package/get-shit-done/workflows/new-project.md +1116 -0
- package/get-shit-done/workflows/pause-work.md +122 -0
- package/get-shit-done/workflows/plan-milestone-gaps.md +274 -0
- package/get-shit-done/workflows/plan-phase.md +569 -0
- package/get-shit-done/workflows/progress.md +381 -0
- package/get-shit-done/workflows/quick.md +453 -0
- package/get-shit-done/workflows/remove-phase.md +154 -0
- package/get-shit-done/workflows/research-phase.md +73 -0
- package/get-shit-done/workflows/resume-project.md +306 -0
- package/get-shit-done/workflows/set-profile.md +80 -0
- package/get-shit-done/workflows/settings.md +213 -0
- package/get-shit-done/workflows/transition.md +544 -0
- package/get-shit-done/workflows/update.md +219 -0
- package/get-shit-done/workflows/verify-phase.md +242 -0
- package/get-shit-done/workflows/verify-work.md +569 -0
- package/hooks/dist/gsd-check-update.js +62 -0
- package/hooks/dist/gsd-context-monitor.js +122 -0
- package/hooks/dist/gsd-statusline.js +108 -0
- package/package.json +54 -0
- package/scripts/build-hooks.js +43 -0
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Milestone — Milestone and requirements lifecycle operations
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
const fs = require('fs');
|
|
6
|
+
const path = require('path');
|
|
7
|
+
const { output, error } = require('./core.cjs');
|
|
8
|
+
const { extractFrontmatter } = require('./frontmatter.cjs');
|
|
9
|
+
|
|
10
|
+
function cmdRequirementsMarkComplete(cwd, reqIdsRaw, raw) {
|
|
11
|
+
if (!reqIdsRaw || reqIdsRaw.length === 0) {
|
|
12
|
+
error('requirement IDs required. Usage: requirements mark-complete REQ-01,REQ-02 or REQ-01 REQ-02');
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
// Accept comma-separated, space-separated, or bracket-wrapped: [REQ-01, REQ-02]
|
|
16
|
+
const reqIds = reqIdsRaw
|
|
17
|
+
.join(' ')
|
|
18
|
+
.replace(/[\[\]]/g, '')
|
|
19
|
+
.split(/[,\s]+/)
|
|
20
|
+
.map(r => r.trim())
|
|
21
|
+
.filter(Boolean);
|
|
22
|
+
|
|
23
|
+
if (reqIds.length === 0) {
|
|
24
|
+
error('no valid requirement IDs found');
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
const reqPath = path.join(cwd, '.planning', 'REQUIREMENTS.md');
|
|
28
|
+
if (!fs.existsSync(reqPath)) {
|
|
29
|
+
output({ updated: false, reason: 'REQUIREMENTS.md not found', ids: reqIds }, raw, 'no requirements file');
|
|
30
|
+
return;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
let reqContent = fs.readFileSync(reqPath, 'utf-8');
|
|
34
|
+
const updated = [];
|
|
35
|
+
const notFound = [];
|
|
36
|
+
|
|
37
|
+
for (const reqId of reqIds) {
|
|
38
|
+
let found = false;
|
|
39
|
+
|
|
40
|
+
// Update checkbox: - [ ] **REQ-ID** → - [x] **REQ-ID**
|
|
41
|
+
const checkboxPattern = new RegExp(`(-\\s*\\[)[ ](\\]\\s*\\*\\*${reqId}\\*\\*)`, 'gi');
|
|
42
|
+
if (checkboxPattern.test(reqContent)) {
|
|
43
|
+
reqContent = reqContent.replace(checkboxPattern, '$1x$2');
|
|
44
|
+
found = true;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
// Update traceability table: | REQ-ID | Phase N | Pending | → | REQ-ID | Phase N | Complete |
|
|
48
|
+
const tablePattern = new RegExp(`(\\|\\s*${reqId}\\s*\\|[^|]+\\|)\\s*Pending\\s*(\\|)`, 'gi');
|
|
49
|
+
if (tablePattern.test(reqContent)) {
|
|
50
|
+
// Re-read since test() advances lastIndex for global regex
|
|
51
|
+
reqContent = reqContent.replace(
|
|
52
|
+
new RegExp(`(\\|\\s*${reqId}\\s*\\|[^|]+\\|)\\s*Pending\\s*(\\|)`, 'gi'),
|
|
53
|
+
'$1 Complete $2'
|
|
54
|
+
);
|
|
55
|
+
found = true;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
if (found) {
|
|
59
|
+
updated.push(reqId);
|
|
60
|
+
} else {
|
|
61
|
+
notFound.push(reqId);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
if (updated.length > 0) {
|
|
66
|
+
fs.writeFileSync(reqPath, reqContent, 'utf-8');
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
output({
|
|
70
|
+
updated: updated.length > 0,
|
|
71
|
+
marked_complete: updated,
|
|
72
|
+
not_found: notFound,
|
|
73
|
+
total: reqIds.length,
|
|
74
|
+
}, raw, `${updated.length}/${reqIds.length} requirements marked complete`);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
function cmdMilestoneComplete(cwd, version, options, raw) {
|
|
78
|
+
if (!version) {
|
|
79
|
+
error('version required for milestone complete (e.g., v1.0)');
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
const roadmapPath = path.join(cwd, '.planning', 'ROADMAP.md');
|
|
83
|
+
const reqPath = path.join(cwd, '.planning', 'REQUIREMENTS.md');
|
|
84
|
+
const statePath = path.join(cwd, '.planning', 'STATE.md');
|
|
85
|
+
const milestonesPath = path.join(cwd, '.planning', 'MILESTONES.md');
|
|
86
|
+
const archiveDir = path.join(cwd, '.planning', 'milestones');
|
|
87
|
+
const phasesDir = path.join(cwd, '.planning', 'phases');
|
|
88
|
+
const today = new Date().toISOString().split('T')[0];
|
|
89
|
+
const milestoneName = options.name || version;
|
|
90
|
+
|
|
91
|
+
// Ensure archive directory exists
|
|
92
|
+
fs.mkdirSync(archiveDir, { recursive: true });
|
|
93
|
+
|
|
94
|
+
// Gather stats from phases
|
|
95
|
+
let phaseCount = 0;
|
|
96
|
+
let totalPlans = 0;
|
|
97
|
+
let totalTasks = 0;
|
|
98
|
+
const accomplishments = [];
|
|
99
|
+
|
|
100
|
+
try {
|
|
101
|
+
const entries = fs.readdirSync(phasesDir, { withFileTypes: true });
|
|
102
|
+
const dirs = entries.filter(e => e.isDirectory()).map(e => e.name).sort();
|
|
103
|
+
|
|
104
|
+
for (const dir of dirs) {
|
|
105
|
+
phaseCount++;
|
|
106
|
+
const phaseFiles = fs.readdirSync(path.join(phasesDir, dir));
|
|
107
|
+
const plans = phaseFiles.filter(f => f.endsWith('-PLAN.md') || f === 'PLAN.md');
|
|
108
|
+
const summaries = phaseFiles.filter(f => f.endsWith('-SUMMARY.md') || f === 'SUMMARY.md');
|
|
109
|
+
totalPlans += plans.length;
|
|
110
|
+
|
|
111
|
+
// Extract one-liners from summaries
|
|
112
|
+
for (const s of summaries) {
|
|
113
|
+
try {
|
|
114
|
+
const content = fs.readFileSync(path.join(phasesDir, dir, s), 'utf-8');
|
|
115
|
+
const fm = extractFrontmatter(content);
|
|
116
|
+
if (fm['one-liner']) {
|
|
117
|
+
accomplishments.push(fm['one-liner']);
|
|
118
|
+
}
|
|
119
|
+
// Count tasks
|
|
120
|
+
const taskMatches = content.match(/##\s*Task\s*\d+/gi) || [];
|
|
121
|
+
totalTasks += taskMatches.length;
|
|
122
|
+
} catch {}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
} catch {}
|
|
126
|
+
|
|
127
|
+
// Archive ROADMAP.md
|
|
128
|
+
if (fs.existsSync(roadmapPath)) {
|
|
129
|
+
const roadmapContent = fs.readFileSync(roadmapPath, 'utf-8');
|
|
130
|
+
fs.writeFileSync(path.join(archiveDir, `${version}-ROADMAP.md`), roadmapContent, 'utf-8');
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
// Archive REQUIREMENTS.md
|
|
134
|
+
if (fs.existsSync(reqPath)) {
|
|
135
|
+
const reqContent = fs.readFileSync(reqPath, 'utf-8');
|
|
136
|
+
const archiveHeader = `# Requirements Archive: ${version} ${milestoneName}\n\n**Archived:** ${today}\n**Status:** SHIPPED\n\nFor current requirements, see \`.planning/REQUIREMENTS.md\`.\n\n---\n\n`;
|
|
137
|
+
fs.writeFileSync(path.join(archiveDir, `${version}-REQUIREMENTS.md`), archiveHeader + reqContent, 'utf-8');
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
// Archive audit file if exists
|
|
141
|
+
const auditFile = path.join(cwd, '.planning', `${version}-MILESTONE-AUDIT.md`);
|
|
142
|
+
if (fs.existsSync(auditFile)) {
|
|
143
|
+
fs.renameSync(auditFile, path.join(archiveDir, `${version}-MILESTONE-AUDIT.md`));
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
// Create/append MILESTONES.md entry
|
|
147
|
+
const accomplishmentsList = accomplishments.map(a => `- ${a}`).join('\n');
|
|
148
|
+
const milestoneEntry = `## ${version} ${milestoneName} (Shipped: ${today})\n\n**Phases completed:** ${phaseCount} phases, ${totalPlans} plans, ${totalTasks} tasks\n\n**Key accomplishments:**\n${accomplishmentsList || '- (none recorded)'}\n\n---\n\n`;
|
|
149
|
+
|
|
150
|
+
if (fs.existsSync(milestonesPath)) {
|
|
151
|
+
const existing = fs.readFileSync(milestonesPath, 'utf-8');
|
|
152
|
+
fs.writeFileSync(milestonesPath, existing + '\n' + milestoneEntry, 'utf-8');
|
|
153
|
+
} else {
|
|
154
|
+
fs.writeFileSync(milestonesPath, `# Milestones\n\n${milestoneEntry}`, 'utf-8');
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
// Update STATE.md
|
|
158
|
+
if (fs.existsSync(statePath)) {
|
|
159
|
+
let stateContent = fs.readFileSync(statePath, 'utf-8');
|
|
160
|
+
stateContent = stateContent.replace(
|
|
161
|
+
/(\*\*Status:\*\*\s*).*/,
|
|
162
|
+
`$1${version} milestone complete`
|
|
163
|
+
);
|
|
164
|
+
stateContent = stateContent.replace(
|
|
165
|
+
/(\*\*Last Activity:\*\*\s*).*/,
|
|
166
|
+
`$1${today}`
|
|
167
|
+
);
|
|
168
|
+
stateContent = stateContent.replace(
|
|
169
|
+
/(\*\*Last Activity Description:\*\*\s*).*/,
|
|
170
|
+
`$1${version} milestone completed and archived`
|
|
171
|
+
);
|
|
172
|
+
fs.writeFileSync(statePath, stateContent, 'utf-8');
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
// Archive phase directories if requested
|
|
176
|
+
let phasesArchived = false;
|
|
177
|
+
if (options.archivePhases) {
|
|
178
|
+
try {
|
|
179
|
+
const phaseArchiveDir = path.join(archiveDir, `${version}-phases`);
|
|
180
|
+
fs.mkdirSync(phaseArchiveDir, { recursive: true });
|
|
181
|
+
|
|
182
|
+
const phaseEntries = fs.readdirSync(phasesDir, { withFileTypes: true });
|
|
183
|
+
const phaseDirNames = phaseEntries.filter(e => e.isDirectory()).map(e => e.name);
|
|
184
|
+
for (const dir of phaseDirNames) {
|
|
185
|
+
fs.renameSync(path.join(phasesDir, dir), path.join(phaseArchiveDir, dir));
|
|
186
|
+
}
|
|
187
|
+
phasesArchived = phaseDirNames.length > 0;
|
|
188
|
+
} catch {}
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
const result = {
|
|
192
|
+
version,
|
|
193
|
+
name: milestoneName,
|
|
194
|
+
date: today,
|
|
195
|
+
phases: phaseCount,
|
|
196
|
+
plans: totalPlans,
|
|
197
|
+
tasks: totalTasks,
|
|
198
|
+
accomplishments,
|
|
199
|
+
archived: {
|
|
200
|
+
roadmap: fs.existsSync(path.join(archiveDir, `${version}-ROADMAP.md`)),
|
|
201
|
+
requirements: fs.existsSync(path.join(archiveDir, `${version}-REQUIREMENTS.md`)),
|
|
202
|
+
audit: fs.existsSync(path.join(archiveDir, `${version}-MILESTONE-AUDIT.md`)),
|
|
203
|
+
phases: phasesArchived,
|
|
204
|
+
},
|
|
205
|
+
milestones_updated: true,
|
|
206
|
+
state_updated: fs.existsSync(statePath),
|
|
207
|
+
};
|
|
208
|
+
|
|
209
|
+
output(result, raw);
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
module.exports = {
|
|
213
|
+
cmdRequirementsMarkComplete,
|
|
214
|
+
cmdMilestoneComplete,
|
|
215
|
+
};
|