aiwcli 0.12.3 → 0.12.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/bin/dev.cmd +3 -3
- package/bin/dev.js +16 -16
- package/bin/run.cmd +3 -3
- package/bin/run.js +21 -21
- package/dist/commands/branch.js +7 -2
- package/dist/lib/bmad-installer.js +37 -37
- package/dist/lib/terminal.d.ts +2 -0
- package/dist/lib/terminal.js +57 -7
- package/dist/templates/CLAUDE.md +205 -205
- package/dist/templates/_shared/.claude/commands/handoff-resume.md +12 -64
- package/dist/templates/_shared/.claude/commands/handoff.md +12 -198
- package/dist/templates/_shared/.claude/settings.json +65 -65
- package/dist/templates/_shared/.codex/workflows/handoff.md +226 -226
- package/dist/templates/_shared/.windsurf/workflows/handoff.md +226 -226
- package/dist/templates/_shared/handoff-system/CLAUDE.md +421 -0
- package/dist/templates/_shared/{lib-ts/handoff → handoff-system/lib}/document-generator.ts +215 -216
- package/dist/templates/_shared/{lib-ts/handoff → handoff-system/lib}/handoff-reader.ts +157 -158
- package/dist/templates/_shared/{scripts → handoff-system/scripts}/resume_handoff.ts +373 -373
- package/dist/templates/_shared/{scripts → handoff-system/scripts}/save_handoff.ts +469 -358
- package/dist/templates/_shared/handoff-system/workflows/handoff-resume.md +66 -0
- package/dist/templates/_shared/{workflows → handoff-system/workflows}/handoff.md +254 -254
- package/dist/templates/_shared/hooks-ts/_utils/git-state.ts +2 -2
- package/dist/templates/_shared/hooks-ts/archive_plan.ts +159 -159
- package/dist/templates/_shared/hooks-ts/context_monitor.ts +147 -147
- package/dist/templates/_shared/hooks-ts/file-suggestion.ts +128 -128
- package/dist/templates/_shared/hooks-ts/pre_compact.ts +49 -49
- package/dist/templates/_shared/hooks-ts/session_end.ts +196 -183
- package/dist/templates/_shared/hooks-ts/session_start.ts +163 -151
- package/dist/templates/_shared/hooks-ts/task_create_capture.ts +48 -48
- package/dist/templates/_shared/hooks-ts/task_update_capture.ts +74 -74
- package/dist/templates/_shared/hooks-ts/user_prompt_submit.ts +93 -93
- package/dist/templates/_shared/lib-ts/CLAUDE.md +367 -367
- package/dist/templates/_shared/lib-ts/base/atomic-write.ts +138 -138
- package/dist/templates/_shared/lib-ts/base/constants.ts +303 -303
- package/dist/templates/_shared/lib-ts/base/git-state.ts +58 -58
- package/dist/templates/_shared/lib-ts/base/hook-utils.ts +582 -582
- package/dist/templates/_shared/lib-ts/base/inference.ts +301 -301
- package/dist/templates/_shared/lib-ts/base/logger.ts +247 -247
- package/dist/templates/_shared/lib-ts/base/state-io.ts +202 -130
- package/dist/templates/_shared/lib-ts/base/stop-words.ts +184 -184
- package/dist/templates/_shared/lib-ts/base/subprocess-utils.ts +56 -0
- package/dist/templates/_shared/lib-ts/base/utils.ts +184 -184
- package/dist/templates/_shared/lib-ts/context/context-formatter.ts +566 -560
- package/dist/templates/_shared/lib-ts/context/context-selector.ts +524 -515
- package/dist/templates/_shared/lib-ts/context/context-store.ts +712 -668
- package/dist/templates/_shared/lib-ts/context/plan-manager.ts +312 -312
- package/dist/templates/_shared/lib-ts/context/task-tracker.ts +185 -185
- package/dist/templates/_shared/lib-ts/package.json +20 -20
- package/dist/templates/_shared/lib-ts/templates/formatters.ts +102 -102
- package/dist/templates/_shared/lib-ts/templates/plan-context.ts +58 -58
- package/dist/templates/_shared/lib-ts/tsconfig.json +13 -13
- package/dist/templates/_shared/lib-ts/types.ts +186 -180
- package/dist/templates/_shared/scripts/resolve_context.ts +33 -33
- package/dist/templates/_shared/scripts/status_line.ts +690 -690
- package/dist/templates/cc-native/.claude/commands/{rlm → cc-native/rlm}/ask.md +136 -136
- package/dist/templates/cc-native/.claude/commands/{rlm → cc-native/rlm}/index.md +21 -21
- package/dist/templates/cc-native/.claude/commands/{rlm → cc-native/rlm}/overview.md +56 -56
- package/dist/templates/cc-native/.claude/commands/cc-native/specdev.md +10 -10
- package/dist/templates/cc-native/.windsurf/workflows/cc-native/fix.md +8 -8
- package/dist/templates/cc-native/.windsurf/workflows/cc-native/implement.md +8 -8
- package/dist/templates/cc-native/.windsurf/workflows/cc-native/research.md +8 -8
- package/dist/templates/cc-native/CC-NATIVE-README.md +189 -189
- package/dist/templates/cc-native/TEMPLATE-SCHEMA.md +304 -304
- package/dist/templates/cc-native/_cc-native/agents/CLAUDE.md +143 -143
- package/dist/templates/cc-native/_cc-native/agents/PLAN-ORCHESTRATOR.md +213 -213
- package/dist/templates/cc-native/_cc-native/agents/plan-questions/PLAN-QUESTIONER.md +70 -70
- package/dist/templates/cc-native/_cc-native/cc-native.config.json +96 -96
- package/dist/templates/cc-native/_cc-native/hooks/CLAUDE.md +247 -247
- package/dist/templates/cc-native/_cc-native/hooks/cc-native-plan-review.ts +76 -76
- package/dist/templates/cc-native/_cc-native/hooks/enhance_plan_post_subagent.ts +54 -54
- package/dist/templates/cc-native/_cc-native/hooks/enhance_plan_post_write.ts +51 -51
- package/dist/templates/cc-native/_cc-native/hooks/mark_questions_asked.ts +53 -53
- package/dist/templates/cc-native/_cc-native/hooks/plan_questions_early.ts +61 -61
- package/dist/templates/cc-native/_cc-native/lib-ts/agent-selection.ts +163 -163
- package/dist/templates/cc-native/_cc-native/lib-ts/aggregate-agents.ts +156 -156
- package/dist/templates/cc-native/_cc-native/lib-ts/artifacts/format.ts +597 -597
- package/dist/templates/cc-native/_cc-native/lib-ts/artifacts/index.ts +26 -26
- package/dist/templates/cc-native/_cc-native/lib-ts/artifacts/tracker.ts +107 -107
- package/dist/templates/cc-native/_cc-native/lib-ts/artifacts/write.ts +119 -119
- package/dist/templates/cc-native/_cc-native/lib-ts/artifacts.ts +21 -21
- package/dist/templates/cc-native/_cc-native/lib-ts/cc-native-state.ts +319 -319
- package/dist/templates/cc-native/_cc-native/lib-ts/cli-output-parser.ts +144 -144
- package/dist/templates/cc-native/_cc-native/lib-ts/config.ts +57 -57
- package/dist/templates/cc-native/_cc-native/lib-ts/constants.ts +83 -83
- package/dist/templates/cc-native/_cc-native/lib-ts/corroboration.ts +119 -119
- package/dist/templates/cc-native/_cc-native/lib-ts/debug.ts +79 -79
- package/dist/templates/cc-native/_cc-native/lib-ts/graduation.ts +132 -132
- package/dist/templates/cc-native/_cc-native/lib-ts/index.ts +116 -116
- package/dist/templates/cc-native/_cc-native/lib-ts/json-parser.ts +168 -168
- package/dist/templates/cc-native/_cc-native/lib-ts/orchestrator.ts +70 -70
- package/dist/templates/cc-native/_cc-native/lib-ts/output-builder.ts +130 -130
- package/dist/templates/cc-native/_cc-native/lib-ts/plan-discovery.ts +80 -80
- package/dist/templates/cc-native/_cc-native/lib-ts/plan-enhancement.ts +41 -41
- package/dist/templates/cc-native/_cc-native/lib-ts/plan-questions.ts +101 -101
- package/dist/templates/cc-native/_cc-native/lib-ts/review-pipeline.ts +511 -511
- package/dist/templates/cc-native/_cc-native/lib-ts/reviewers/agent.ts +71 -71
- package/dist/templates/cc-native/_cc-native/lib-ts/reviewers/base/base-agent.ts +217 -217
- package/dist/templates/cc-native/_cc-native/lib-ts/reviewers/index.ts +12 -12
- package/dist/templates/cc-native/_cc-native/lib-ts/reviewers/providers/claude-agent.ts +66 -65
- package/dist/templates/cc-native/_cc-native/lib-ts/reviewers/providers/codex-agent.ts +184 -184
- package/dist/templates/cc-native/_cc-native/lib-ts/reviewers/providers/gemini-agent.ts +39 -39
- package/dist/templates/cc-native/_cc-native/lib-ts/reviewers/providers/orchestrator-claude-agent.ts +196 -195
- package/dist/templates/cc-native/_cc-native/lib-ts/reviewers/schemas.ts +201 -201
- package/dist/templates/cc-native/_cc-native/lib-ts/reviewers/types.ts +21 -21
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/CLAUDE.md +480 -480
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/embedding-indexer.ts +287 -287
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/hyde.ts +148 -148
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/index.ts +54 -54
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/logger.ts +58 -58
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/ollama-client.ts +208 -208
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/retrieval-pipeline.ts +460 -460
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/transcript-indexer.ts +446 -447
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/transcript-loader.ts +280 -280
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/transcript-searcher.ts +274 -274
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/types.ts +201 -201
- package/dist/templates/cc-native/_cc-native/lib-ts/rlm/vector-store.ts +278 -278
- package/dist/templates/cc-native/_cc-native/lib-ts/settings.ts +184 -184
- package/dist/templates/cc-native/_cc-native/lib-ts/state.ts +275 -275
- package/dist/templates/cc-native/_cc-native/lib-ts/tsconfig.json +18 -18
- package/dist/templates/cc-native/_cc-native/lib-ts/types.ts +329 -329
- package/dist/templates/cc-native/_cc-native/lib-ts/verdict.ts +72 -72
- package/dist/templates/cc-native/_cc-native/workflows/specdev.md +9 -9
- package/oclif.manifest.json +1 -1
- package/package.json +108 -108
- package/dist/templates/cc-native/_cc-native/lib-ts/nul +0 -3
|
@@ -1,373 +1,373 @@
|
|
|
1
|
-
#!/usr/bin/env bun
|
|
2
|
-
/**
|
|
3
|
-
* Resume a handoff document by reading all sections and outputting
|
|
4
|
-
* a structured briefing to stdout.
|
|
5
|
-
*
|
|
6
|
-
* Usage:
|
|
7
|
-
* bun .aiwcli/_shared/scripts/resume_handoff.ts <handoff_folder_or_index>
|
|
8
|
-
* bun .aiwcli/_shared/scripts/resume_handoff.ts --context <context_id>
|
|
9
|
-
*
|
|
10
|
-
* If no args, auto-discovers the active context and finds the latest handoff.
|
|
11
|
-
*
|
|
12
|
-
* Outputs structured markdown to stdout in priority order,
|
|
13
|
-
* ready to be consumed by the /handoff-resume command template.
|
|
14
|
-
*/
|
|
15
|
-
import * as fs from "node:fs";
|
|
16
|
-
import * as path from "node:path";
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
findLatestHandoff,
|
|
20
|
-
readHandoffSections,
|
|
21
|
-
getHandoffTimestamp,
|
|
22
|
-
getHandoffPlanReference,
|
|
23
|
-
} from "../lib
|
|
24
|
-
import { getProjectRoot } from "
|
|
25
|
-
import { getContextBySessionId } from "
|
|
26
|
-
import { getGitStatusShort } from "
|
|
27
|
-
import { eprint } from "
|
|
28
|
-
|
|
29
|
-
// ---------------------------------------------------------------------------
|
|
30
|
-
// Helpers
|
|
31
|
-
// ---------------------------------------------------------------------------
|
|
32
|
-
|
|
33
|
-
function formatRelativeAge(date: Date): string {
|
|
34
|
-
const now = new Date();
|
|
35
|
-
const diffMs = now.getTime() - date.getTime();
|
|
36
|
-
const diffMin = Math.floor(diffMs / 60_000);
|
|
37
|
-
const diffHours = Math.floor(diffMin / 60);
|
|
38
|
-
const diffDays = Math.floor(diffHours / 24);
|
|
39
|
-
|
|
40
|
-
if (diffDays === 0) {
|
|
41
|
-
if (diffHours === 0) {
|
|
42
|
-
return diffMin <= 1 ? "just now" : `${diffMin} minutes ago`;
|
|
43
|
-
}
|
|
44
|
-
return diffHours === 1 ? "1 hour ago" : `${diffHours} hours ago`;
|
|
45
|
-
}
|
|
46
|
-
if (diffDays === 1) return "yesterday";
|
|
47
|
-
return `${diffDays} days ago`;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
/**
|
|
51
|
-
* Count plan completion from plan.md content.
|
|
52
|
-
* Returns [completed, total] or null if no checkboxes found.
|
|
53
|
-
*/
|
|
54
|
-
function countPlanProgress(planContent: string): [number, number] | null {
|
|
55
|
-
const checked = (planContent.match(/\[x\]/gi) ?? []).length;
|
|
56
|
-
const unchecked = (planContent.match(/\[ \]/g) ?? []).length;
|
|
57
|
-
const total = checked + unchecked;
|
|
58
|
-
if (total === 0) return null;
|
|
59
|
-
return [checked, total];
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
/**
|
|
63
|
-
* Strip the leading H1 title line from section content if present.
|
|
64
|
-
* Handoff section files typically start with "# Title\n\n..."
|
|
65
|
-
*/
|
|
66
|
-
function stripTitle(content: string): string {
|
|
67
|
-
const lines = content.split(/\r?\n/);
|
|
68
|
-
if (lines[0]?.startsWith("# ")) {
|
|
69
|
-
// Remove title and leading blank lines
|
|
70
|
-
let i = 1;
|
|
71
|
-
while (i < lines.length && lines[i]!.trim() === "") i++;
|
|
72
|
-
return lines.slice(i).join("\n").trim();
|
|
73
|
-
}
|
|
74
|
-
return content.trim();
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
// ---------------------------------------------------------------------------
|
|
78
|
-
// Resolution
|
|
79
|
-
// ---------------------------------------------------------------------------
|
|
80
|
-
|
|
81
|
-
function resolveHandoffFolder(args: string[]): [string, string | null] {
|
|
82
|
-
const projectRoot = getProjectRoot(process.cwd());
|
|
83
|
-
|
|
84
|
-
// --context <id>
|
|
85
|
-
const ctxIdx = args.indexOf("--context");
|
|
86
|
-
if (ctxIdx !== -1 && args[ctxIdx + 1]) {
|
|
87
|
-
const contextId = args[ctxIdx + 1]!;
|
|
88
|
-
const folder = findLatestHandoff(contextId, projectRoot);
|
|
89
|
-
if (!folder) {
|
|
90
|
-
eprint(`No handoff folders found for context: ${contextId}`);
|
|
91
|
-
process.exit(1);
|
|
92
|
-
}
|
|
93
|
-
return [folder, contextId];
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
// Direct path argument
|
|
97
|
-
if (args.length > 0 && !args[0]!.startsWith("--")) {
|
|
98
|
-
let target = args[0]!;
|
|
99
|
-
|
|
100
|
-
// If it's a file (e.g., index.md), use the parent folder
|
|
101
|
-
try {
|
|
102
|
-
const stat = fs.statSync(target);
|
|
103
|
-
if (stat.isFile()) {
|
|
104
|
-
target = path.dirname(target);
|
|
105
|
-
}
|
|
106
|
-
} catch {
|
|
107
|
-
eprint(`Path not found: ${target}`);
|
|
108
|
-
process.exit(1);
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
// Verify it looks like a handoff folder (has index.md)
|
|
112
|
-
if (!fs.existsSync(path.join(target, "index.md"))) {
|
|
113
|
-
eprint(`Not a handoff folder (no index.md): ${target}`);
|
|
114
|
-
process.exit(1);
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
return [target, null];
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
// Auto-discover via session ID (when running from Claude Code)
|
|
121
|
-
const sessionId = process.env.CLAUDE_SESSION_ID;
|
|
122
|
-
if (sessionId) {
|
|
123
|
-
const context = getContextBySessionId(sessionId, projectRoot);
|
|
124
|
-
if (context) {
|
|
125
|
-
const folder = findLatestHandoff(context.id, projectRoot);
|
|
126
|
-
if (!folder) {
|
|
127
|
-
eprint(`No handoff folders found for context: ${context.id} (from session ${sessionId})`);
|
|
128
|
-
process.exit(1);
|
|
129
|
-
}
|
|
130
|
-
return [folder, context.id];
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
eprint(
|
|
135
|
-
"No context found for current session.\n\n" +
|
|
136
|
-
"Usage: bun resume_handoff.ts <handoff_folder_or_index>\n" +
|
|
137
|
-
" bun resume_handoff.ts --context <context_id>",
|
|
138
|
-
);
|
|
139
|
-
process.exit(1);
|
|
140
|
-
return ["", null]; // unreachable
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
// ---------------------------------------------------------------------------
|
|
144
|
-
// Main
|
|
145
|
-
// ---------------------------------------------------------------------------
|
|
146
|
-
|
|
147
|
-
function main(): void {
|
|
148
|
-
const args = process.argv.slice(2);
|
|
149
|
-
const [handoffFolder, contextId] = resolveHandoffFolder(args);
|
|
150
|
-
const projectRoot = getProjectRoot(process.cwd());
|
|
151
|
-
|
|
152
|
-
// Staleness check
|
|
153
|
-
const timestamp = getHandoffTimestamp(handoffFolder);
|
|
154
|
-
let ageStr = "unknown age";
|
|
155
|
-
let staleWarning = "";
|
|
156
|
-
if (timestamp) {
|
|
157
|
-
ageStr = formatRelativeAge(timestamp);
|
|
158
|
-
const diffDays = Math.floor((Date.now() - timestamp.getTime()) / 86_400_000);
|
|
159
|
-
if (diffDays > 7) {
|
|
160
|
-
staleWarning = `\n> **WARNING:** This handoff is ${diffDays} days old. Git state may have diverged significantly.\n`;
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
// Read all sections
|
|
165
|
-
const sections = readHandoffSections(handoffFolder);
|
|
166
|
-
|
|
167
|
-
// Plan status
|
|
168
|
-
let planStatus = "No plan document";
|
|
169
|
-
const resolvedContextId = contextId ?? extractContextIdFromIndex(sections.index);
|
|
170
|
-
if (sections.plan) {
|
|
171
|
-
const progress = countPlanProgress(sections.plan);
|
|
172
|
-
if (progress) {
|
|
173
|
-
const [done, total] = progress;
|
|
174
|
-
const pct = Math.round((done / total) * 100);
|
|
175
|
-
planStatus = `${done}/${total} complete (${pct}%)`;
|
|
176
|
-
} else {
|
|
177
|
-
planStatus = "Plan present (no checkboxes)";
|
|
178
|
-
}
|
|
179
|
-
} else if (resolvedContextId) {
|
|
180
|
-
// Check for plan reference in context state
|
|
181
|
-
const planRef = getHandoffPlanReference(handoffFolder, resolvedContextId, projectRoot);
|
|
182
|
-
if (planRef) {
|
|
183
|
-
try {
|
|
184
|
-
const planContent = fs.readFileSync(planRef, "utf-8");
|
|
185
|
-
const progress = countPlanProgress(planContent);
|
|
186
|
-
if (progress) {
|
|
187
|
-
const [done, total] = progress;
|
|
188
|
-
const pct = Math.round((done / total) * 100);
|
|
189
|
-
planStatus = `${done}/${total} complete (${pct}%) — from ${path.basename(planRef)}`;
|
|
190
|
-
} else {
|
|
191
|
-
planStatus = `Plan at ${planRef} (no checkboxes)`;
|
|
192
|
-
}
|
|
193
|
-
} catch {
|
|
194
|
-
planStatus = `Plan referenced at ${planRef} (unreadable)`;
|
|
195
|
-
}
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
// Git delta
|
|
200
|
-
const currentGit = getGitStatusShort(projectRoot);
|
|
201
|
-
|
|
202
|
-
// Build output
|
|
203
|
-
const out: string[] = [];
|
|
204
|
-
|
|
205
|
-
out.push(`## Session Resumed from Handoff`);
|
|
206
|
-
out.push("");
|
|
207
|
-
out.push(`**Source:** \`${path.basename(handoffFolder)}\` (${ageStr})`);
|
|
208
|
-
if (resolvedContextId) out.push(`**Context:** ${resolvedContextId}`);
|
|
209
|
-
out.push(`**Plan Status:** ${planStatus}`);
|
|
210
|
-
if (staleWarning) out.push(staleWarning);
|
|
211
|
-
out.push("");
|
|
212
|
-
out.push("---");
|
|
213
|
-
out.push("");
|
|
214
|
-
|
|
215
|
-
// Priority 1: Dead Ends
|
|
216
|
-
out.push("### Dead Ends — Do Not Retry");
|
|
217
|
-
out.push("");
|
|
218
|
-
if (sections.deadEnds) {
|
|
219
|
-
const content = stripTitle(sections.deadEnds);
|
|
220
|
-
if (content && content !== "(No content for this section)") {
|
|
221
|
-
out.push(content);
|
|
222
|
-
} else {
|
|
223
|
-
out.push("(No dead ends recorded)");
|
|
224
|
-
}
|
|
225
|
-
} else {
|
|
226
|
-
out.push("(No dead-ends.md found)");
|
|
227
|
-
}
|
|
228
|
-
out.push("");
|
|
229
|
-
|
|
230
|
-
// Priority 2: Pending
|
|
231
|
-
out.push("### Pending Items");
|
|
232
|
-
out.push("");
|
|
233
|
-
if (sections.pending) {
|
|
234
|
-
const content = stripTitle(sections.pending);
|
|
235
|
-
if (content && content !== "(No content for this section)") {
|
|
236
|
-
out.push(content);
|
|
237
|
-
} else {
|
|
238
|
-
out.push("(No pending items)");
|
|
239
|
-
}
|
|
240
|
-
} else {
|
|
241
|
-
out.push("(No pending.md found)");
|
|
242
|
-
}
|
|
243
|
-
out.push("");
|
|
244
|
-
|
|
245
|
-
// Priority 3: Plan remaining items (from plan.md in handoff)
|
|
246
|
-
if (sections.plan) {
|
|
247
|
-
const planContent = stripTitle(sections.plan);
|
|
248
|
-
// Extract unchecked items
|
|
249
|
-
const remaining = planContent
|
|
250
|
-
.split(/\r?\n/)
|
|
251
|
-
.filter(line => /\[ \]/.test(line))
|
|
252
|
-
.map(line => line.trim());
|
|
253
|
-
if (remaining.length > 0) {
|
|
254
|
-
out.push("### Plan — Remaining Items");
|
|
255
|
-
out.push("");
|
|
256
|
-
for (const item of remaining) {
|
|
257
|
-
out.push(item);
|
|
258
|
-
}
|
|
259
|
-
out.push("");
|
|
260
|
-
}
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
// Priority 4: Decisions
|
|
264
|
-
out.push("### Settled Decisions");
|
|
265
|
-
out.push("");
|
|
266
|
-
if (sections.decisions) {
|
|
267
|
-
const content = stripTitle(sections.decisions);
|
|
268
|
-
if (content && content !== "(No content for this section)") {
|
|
269
|
-
out.push(content);
|
|
270
|
-
} else {
|
|
271
|
-
out.push("(No decisions recorded)");
|
|
272
|
-
}
|
|
273
|
-
} else {
|
|
274
|
-
out.push("(No decisions.md found)");
|
|
275
|
-
}
|
|
276
|
-
out.push("");
|
|
277
|
-
|
|
278
|
-
// Priority 5: Git Delta
|
|
279
|
-
out.push("### Git Delta Since Handoff");
|
|
280
|
-
out.push("");
|
|
281
|
-
out.push("**Current git status:**");
|
|
282
|
-
out.push("```");
|
|
283
|
-
out.push(currentGit);
|
|
284
|
-
out.push("```");
|
|
285
|
-
out.push("");
|
|
286
|
-
|
|
287
|
-
// Priority 6: Completed Work
|
|
288
|
-
out.push("### Completed Work");
|
|
289
|
-
out.push("");
|
|
290
|
-
if (sections.completedWork) {
|
|
291
|
-
const content = stripTitle(sections.completedWork);
|
|
292
|
-
if (content && content !== "(No content for this section)") {
|
|
293
|
-
out.push(content);
|
|
294
|
-
} else {
|
|
295
|
-
out.push("(No completed work recorded)");
|
|
296
|
-
}
|
|
297
|
-
} else {
|
|
298
|
-
out.push("(No completed-work.md found)");
|
|
299
|
-
}
|
|
300
|
-
out.push("");
|
|
301
|
-
|
|
302
|
-
// Priority 7: Context
|
|
303
|
-
out.push("### Context Notes");
|
|
304
|
-
out.push("");
|
|
305
|
-
if (sections.context) {
|
|
306
|
-
const content = stripTitle(sections.context);
|
|
307
|
-
if (content && content !== "(No content for this section)") {
|
|
308
|
-
out.push(content);
|
|
309
|
-
} else {
|
|
310
|
-
out.push("None");
|
|
311
|
-
}
|
|
312
|
-
} else {
|
|
313
|
-
out.push("None");
|
|
314
|
-
}
|
|
315
|
-
out.push("");
|
|
316
|
-
|
|
317
|
-
// Footer
|
|
318
|
-
out.push("---");
|
|
319
|
-
out.push("");
|
|
320
|
-
out.push("**Create ISC tasks** from the pending items and remaining plan items above using TaskCreate. Each task should be ~8 words, state a desired end-state (not an action), and be binary testable.");
|
|
321
|
-
out.push("");
|
|
322
|
-
|
|
323
|
-
// Appendix: Full Plan
|
|
324
|
-
let fullPlanContent: string | null = sections.plan ?? null;
|
|
325
|
-
if (!fullPlanContent && resolvedContextId) {
|
|
326
|
-
const planRef = getHandoffPlanReference(handoffFolder, resolvedContextId, projectRoot);
|
|
327
|
-
if (planRef) {
|
|
328
|
-
try {
|
|
329
|
-
fullPlanContent = fs.readFileSync(planRef, "utf-8");
|
|
330
|
-
} catch {
|
|
331
|
-
// ignore — no plan to append
|
|
332
|
-
}
|
|
333
|
-
}
|
|
334
|
-
}
|
|
335
|
-
if (fullPlanContent) {
|
|
336
|
-
const planBody = stripTitle(fullPlanContent);
|
|
337
|
-
if (planBody && planBody !== "(No content for this section)") {
|
|
338
|
-
out.push("---");
|
|
339
|
-
out.push("");
|
|
340
|
-
out.push("### Appendix: Full Plan");
|
|
341
|
-
out.push("");
|
|
342
|
-
out.push(planBody);
|
|
343
|
-
out.push("");
|
|
344
|
-
}
|
|
345
|
-
}
|
|
346
|
-
|
|
347
|
-
console.log(out.join("\n"));
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
/**
|
|
351
|
-
* Try to extract context_id from index.md frontmatter.
|
|
352
|
-
*/
|
|
353
|
-
function extractContextIdFromIndex(indexContent: string | null): string | null {
|
|
354
|
-
if (!indexContent) return null;
|
|
355
|
-
if (!indexContent.startsWith("---")) return null;
|
|
356
|
-
|
|
357
|
-
const parts = indexContent.split("---", 3);
|
|
358
|
-
if (parts.length < 3) return null;
|
|
359
|
-
|
|
360
|
-
for (const line of parts[1]!.trim().split(/\r?\n/)) {
|
|
361
|
-
const colonIdx = line.indexOf(":");
|
|
362
|
-
if (colonIdx !== -1) {
|
|
363
|
-
const key = line.slice(0, colonIdx).trim();
|
|
364
|
-
if (key === "context_id") {
|
|
365
|
-
return line.slice(colonIdx + 1).trim();
|
|
366
|
-
}
|
|
367
|
-
}
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
return null;
|
|
371
|
-
}
|
|
372
|
-
|
|
373
|
-
main();
|
|
1
|
+
#!/usr/bin/env bun
|
|
2
|
+
/**
|
|
3
|
+
* Resume a handoff document by reading all sections and outputting
|
|
4
|
+
* a structured briefing to stdout.
|
|
5
|
+
*
|
|
6
|
+
* Usage:
|
|
7
|
+
* bun .aiwcli/_shared/handoff-system/scripts/resume_handoff.ts <handoff_folder_or_index>
|
|
8
|
+
* bun .aiwcli/_shared/handoff-system/scripts/resume_handoff.ts --context <context_id>
|
|
9
|
+
*
|
|
10
|
+
* If no args, auto-discovers the active context and finds the latest handoff.
|
|
11
|
+
*
|
|
12
|
+
* Outputs structured markdown to stdout in priority order,
|
|
13
|
+
* ready to be consumed by the /handoff-resume command template.
|
|
14
|
+
*/
|
|
15
|
+
import * as fs from "node:fs";
|
|
16
|
+
import * as path from "node:path";
|
|
17
|
+
|
|
18
|
+
import {
|
|
19
|
+
findLatestHandoff,
|
|
20
|
+
readHandoffSections,
|
|
21
|
+
getHandoffTimestamp,
|
|
22
|
+
getHandoffPlanReference,
|
|
23
|
+
} from "../lib/handoff-reader.js";
|
|
24
|
+
import { getProjectRoot } from "../../lib-ts/base/constants.js";
|
|
25
|
+
import { getContextBySessionId } from "../../lib-ts/context/context-store.js";
|
|
26
|
+
import { getGitStatusShort } from "../../lib-ts/base/git-state.js";
|
|
27
|
+
import { eprint } from "../../lib-ts/base/utils.js";
|
|
28
|
+
|
|
29
|
+
// ---------------------------------------------------------------------------
|
|
30
|
+
// Helpers
|
|
31
|
+
// ---------------------------------------------------------------------------
|
|
32
|
+
|
|
33
|
+
function formatRelativeAge(date: Date): string {
|
|
34
|
+
const now = new Date();
|
|
35
|
+
const diffMs = now.getTime() - date.getTime();
|
|
36
|
+
const diffMin = Math.floor(diffMs / 60_000);
|
|
37
|
+
const diffHours = Math.floor(diffMin / 60);
|
|
38
|
+
const diffDays = Math.floor(diffHours / 24);
|
|
39
|
+
|
|
40
|
+
if (diffDays === 0) {
|
|
41
|
+
if (diffHours === 0) {
|
|
42
|
+
return diffMin <= 1 ? "just now" : `${diffMin} minutes ago`;
|
|
43
|
+
}
|
|
44
|
+
return diffHours === 1 ? "1 hour ago" : `${diffHours} hours ago`;
|
|
45
|
+
}
|
|
46
|
+
if (diffDays === 1) return "yesterday";
|
|
47
|
+
return `${diffDays} days ago`;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Count plan completion from plan.md content.
|
|
52
|
+
* Returns [completed, total] or null if no checkboxes found.
|
|
53
|
+
*/
|
|
54
|
+
function countPlanProgress(planContent: string): [number, number] | null {
|
|
55
|
+
const checked = (planContent.match(/\[x\]/gi) ?? []).length;
|
|
56
|
+
const unchecked = (planContent.match(/\[ \]/g) ?? []).length;
|
|
57
|
+
const total = checked + unchecked;
|
|
58
|
+
if (total === 0) return null;
|
|
59
|
+
return [checked, total];
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Strip the leading H1 title line from section content if present.
|
|
64
|
+
* Handoff section files typically start with "# Title\n\n..."
|
|
65
|
+
*/
|
|
66
|
+
function stripTitle(content: string): string {
|
|
67
|
+
const lines = content.split(/\r?\n/);
|
|
68
|
+
if (lines[0]?.startsWith("# ")) {
|
|
69
|
+
// Remove title and leading blank lines
|
|
70
|
+
let i = 1;
|
|
71
|
+
while (i < lines.length && lines[i]!.trim() === "") i++;
|
|
72
|
+
return lines.slice(i).join("\n").trim();
|
|
73
|
+
}
|
|
74
|
+
return content.trim();
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
// ---------------------------------------------------------------------------
|
|
78
|
+
// Resolution
|
|
79
|
+
// ---------------------------------------------------------------------------
|
|
80
|
+
|
|
81
|
+
function resolveHandoffFolder(args: string[]): [string, string | null] {
|
|
82
|
+
const projectRoot = getProjectRoot(process.cwd());
|
|
83
|
+
|
|
84
|
+
// --context <id>
|
|
85
|
+
const ctxIdx = args.indexOf("--context");
|
|
86
|
+
if (ctxIdx !== -1 && args[ctxIdx + 1]) {
|
|
87
|
+
const contextId = args[ctxIdx + 1]!;
|
|
88
|
+
const folder = findLatestHandoff(contextId, projectRoot);
|
|
89
|
+
if (!folder) {
|
|
90
|
+
eprint(`No handoff folders found for context: ${contextId}`);
|
|
91
|
+
process.exit(1);
|
|
92
|
+
}
|
|
93
|
+
return [folder, contextId];
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
// Direct path argument
|
|
97
|
+
if (args.length > 0 && !args[0]!.startsWith("--")) {
|
|
98
|
+
let target = args[0]!;
|
|
99
|
+
|
|
100
|
+
// If it's a file (e.g., index.md), use the parent folder
|
|
101
|
+
try {
|
|
102
|
+
const stat = fs.statSync(target);
|
|
103
|
+
if (stat.isFile()) {
|
|
104
|
+
target = path.dirname(target);
|
|
105
|
+
}
|
|
106
|
+
} catch {
|
|
107
|
+
eprint(`Path not found: ${target}`);
|
|
108
|
+
process.exit(1);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
// Verify it looks like a handoff folder (has index.md)
|
|
112
|
+
if (!fs.existsSync(path.join(target, "index.md"))) {
|
|
113
|
+
eprint(`Not a handoff folder (no index.md): ${target}`);
|
|
114
|
+
process.exit(1);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
return [target, null];
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
// Auto-discover via session ID (when running from Claude Code)
|
|
121
|
+
const sessionId = process.env.CLAUDE_SESSION_ID;
|
|
122
|
+
if (sessionId) {
|
|
123
|
+
const context = getContextBySessionId(sessionId, projectRoot);
|
|
124
|
+
if (context) {
|
|
125
|
+
const folder = findLatestHandoff(context.id, projectRoot);
|
|
126
|
+
if (!folder) {
|
|
127
|
+
eprint(`No handoff folders found for context: ${context.id} (from session ${sessionId})`);
|
|
128
|
+
process.exit(1);
|
|
129
|
+
}
|
|
130
|
+
return [folder, context.id];
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
eprint(
|
|
135
|
+
"No context found for current session.\n\n" +
|
|
136
|
+
"Usage: bun resume_handoff.ts <handoff_folder_or_index>\n" +
|
|
137
|
+
" bun resume_handoff.ts --context <context_id>",
|
|
138
|
+
);
|
|
139
|
+
process.exit(1);
|
|
140
|
+
return ["", null]; // unreachable
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
// ---------------------------------------------------------------------------
|
|
144
|
+
// Main
|
|
145
|
+
// ---------------------------------------------------------------------------
|
|
146
|
+
|
|
147
|
+
function main(): void {
|
|
148
|
+
const args = process.argv.slice(2);
|
|
149
|
+
const [handoffFolder, contextId] = resolveHandoffFolder(args);
|
|
150
|
+
const projectRoot = getProjectRoot(process.cwd());
|
|
151
|
+
|
|
152
|
+
// Staleness check
|
|
153
|
+
const timestamp = getHandoffTimestamp(handoffFolder);
|
|
154
|
+
let ageStr = "unknown age";
|
|
155
|
+
let staleWarning = "";
|
|
156
|
+
if (timestamp) {
|
|
157
|
+
ageStr = formatRelativeAge(timestamp);
|
|
158
|
+
const diffDays = Math.floor((Date.now() - timestamp.getTime()) / 86_400_000);
|
|
159
|
+
if (diffDays > 7) {
|
|
160
|
+
staleWarning = `\n> **WARNING:** This handoff is ${diffDays} days old. Git state may have diverged significantly.\n`;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
// Read all sections
|
|
165
|
+
const sections = readHandoffSections(handoffFolder);
|
|
166
|
+
|
|
167
|
+
// Plan status
|
|
168
|
+
let planStatus = "No plan document";
|
|
169
|
+
const resolvedContextId = contextId ?? extractContextIdFromIndex(sections.index);
|
|
170
|
+
if (sections.plan) {
|
|
171
|
+
const progress = countPlanProgress(sections.plan);
|
|
172
|
+
if (progress) {
|
|
173
|
+
const [done, total] = progress;
|
|
174
|
+
const pct = Math.round((done / total) * 100);
|
|
175
|
+
planStatus = `${done}/${total} complete (${pct}%)`;
|
|
176
|
+
} else {
|
|
177
|
+
planStatus = "Plan present (no checkboxes)";
|
|
178
|
+
}
|
|
179
|
+
} else if (resolvedContextId) {
|
|
180
|
+
// Check for plan reference in context state
|
|
181
|
+
const planRef = getHandoffPlanReference(handoffFolder, resolvedContextId, projectRoot);
|
|
182
|
+
if (planRef) {
|
|
183
|
+
try {
|
|
184
|
+
const planContent = fs.readFileSync(planRef, "utf-8");
|
|
185
|
+
const progress = countPlanProgress(planContent);
|
|
186
|
+
if (progress) {
|
|
187
|
+
const [done, total] = progress;
|
|
188
|
+
const pct = Math.round((done / total) * 100);
|
|
189
|
+
planStatus = `${done}/${total} complete (${pct}%) — from ${path.basename(planRef)}`;
|
|
190
|
+
} else {
|
|
191
|
+
planStatus = `Plan at ${planRef} (no checkboxes)`;
|
|
192
|
+
}
|
|
193
|
+
} catch {
|
|
194
|
+
planStatus = `Plan referenced at ${planRef} (unreadable)`;
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
// Git delta
|
|
200
|
+
const currentGit = getGitStatusShort(projectRoot);
|
|
201
|
+
|
|
202
|
+
// Build output
|
|
203
|
+
const out: string[] = [];
|
|
204
|
+
|
|
205
|
+
out.push(`## Session Resumed from Handoff`);
|
|
206
|
+
out.push("");
|
|
207
|
+
out.push(`**Source:** \`${path.basename(handoffFolder)}\` (${ageStr})`);
|
|
208
|
+
if (resolvedContextId) out.push(`**Context:** ${resolvedContextId}`);
|
|
209
|
+
out.push(`**Plan Status:** ${planStatus}`);
|
|
210
|
+
if (staleWarning) out.push(staleWarning);
|
|
211
|
+
out.push("");
|
|
212
|
+
out.push("---");
|
|
213
|
+
out.push("");
|
|
214
|
+
|
|
215
|
+
// Priority 1: Dead Ends
|
|
216
|
+
out.push("### Dead Ends — Do Not Retry");
|
|
217
|
+
out.push("");
|
|
218
|
+
if (sections.deadEnds) {
|
|
219
|
+
const content = stripTitle(sections.deadEnds);
|
|
220
|
+
if (content && content !== "(No content for this section)") {
|
|
221
|
+
out.push(content);
|
|
222
|
+
} else {
|
|
223
|
+
out.push("(No dead ends recorded)");
|
|
224
|
+
}
|
|
225
|
+
} else {
|
|
226
|
+
out.push("(No dead-ends.md found)");
|
|
227
|
+
}
|
|
228
|
+
out.push("");
|
|
229
|
+
|
|
230
|
+
// Priority 2: Pending
|
|
231
|
+
out.push("### Pending Items");
|
|
232
|
+
out.push("");
|
|
233
|
+
if (sections.pending) {
|
|
234
|
+
const content = stripTitle(sections.pending);
|
|
235
|
+
if (content && content !== "(No content for this section)") {
|
|
236
|
+
out.push(content);
|
|
237
|
+
} else {
|
|
238
|
+
out.push("(No pending items)");
|
|
239
|
+
}
|
|
240
|
+
} else {
|
|
241
|
+
out.push("(No pending.md found)");
|
|
242
|
+
}
|
|
243
|
+
out.push("");
|
|
244
|
+
|
|
245
|
+
// Priority 3: Plan remaining items (from plan.md in handoff)
|
|
246
|
+
if (sections.plan) {
|
|
247
|
+
const planContent = stripTitle(sections.plan);
|
|
248
|
+
// Extract unchecked items
|
|
249
|
+
const remaining = planContent
|
|
250
|
+
.split(/\r?\n/)
|
|
251
|
+
.filter(line => /\[ \]/.test(line))
|
|
252
|
+
.map(line => line.trim());
|
|
253
|
+
if (remaining.length > 0) {
|
|
254
|
+
out.push("### Plan — Remaining Items");
|
|
255
|
+
out.push("");
|
|
256
|
+
for (const item of remaining) {
|
|
257
|
+
out.push(item);
|
|
258
|
+
}
|
|
259
|
+
out.push("");
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
// Priority 4: Decisions
|
|
264
|
+
out.push("### Settled Decisions");
|
|
265
|
+
out.push("");
|
|
266
|
+
if (sections.decisions) {
|
|
267
|
+
const content = stripTitle(sections.decisions);
|
|
268
|
+
if (content && content !== "(No content for this section)") {
|
|
269
|
+
out.push(content);
|
|
270
|
+
} else {
|
|
271
|
+
out.push("(No decisions recorded)");
|
|
272
|
+
}
|
|
273
|
+
} else {
|
|
274
|
+
out.push("(No decisions.md found)");
|
|
275
|
+
}
|
|
276
|
+
out.push("");
|
|
277
|
+
|
|
278
|
+
// Priority 5: Git Delta
|
|
279
|
+
out.push("### Git Delta Since Handoff");
|
|
280
|
+
out.push("");
|
|
281
|
+
out.push("**Current git status:**");
|
|
282
|
+
out.push("```");
|
|
283
|
+
out.push(currentGit);
|
|
284
|
+
out.push("```");
|
|
285
|
+
out.push("");
|
|
286
|
+
|
|
287
|
+
// Priority 6: Completed Work
|
|
288
|
+
out.push("### Completed Work");
|
|
289
|
+
out.push("");
|
|
290
|
+
if (sections.completedWork) {
|
|
291
|
+
const content = stripTitle(sections.completedWork);
|
|
292
|
+
if (content && content !== "(No content for this section)") {
|
|
293
|
+
out.push(content);
|
|
294
|
+
} else {
|
|
295
|
+
out.push("(No completed work recorded)");
|
|
296
|
+
}
|
|
297
|
+
} else {
|
|
298
|
+
out.push("(No completed-work.md found)");
|
|
299
|
+
}
|
|
300
|
+
out.push("");
|
|
301
|
+
|
|
302
|
+
// Priority 7: Context
|
|
303
|
+
out.push("### Context Notes");
|
|
304
|
+
out.push("");
|
|
305
|
+
if (sections.context) {
|
|
306
|
+
const content = stripTitle(sections.context);
|
|
307
|
+
if (content && content !== "(No content for this section)") {
|
|
308
|
+
out.push(content);
|
|
309
|
+
} else {
|
|
310
|
+
out.push("None");
|
|
311
|
+
}
|
|
312
|
+
} else {
|
|
313
|
+
out.push("None");
|
|
314
|
+
}
|
|
315
|
+
out.push("");
|
|
316
|
+
|
|
317
|
+
// Footer
|
|
318
|
+
out.push("---");
|
|
319
|
+
out.push("");
|
|
320
|
+
out.push("**Create ISC tasks** from the pending items and remaining plan items above using TaskCreate. Each task should be ~8 words, state a desired end-state (not an action), and be binary testable.");
|
|
321
|
+
out.push("");
|
|
322
|
+
|
|
323
|
+
// Appendix: Full Plan
|
|
324
|
+
let fullPlanContent: string | null = sections.plan ?? null;
|
|
325
|
+
if (!fullPlanContent && resolvedContextId) {
|
|
326
|
+
const planRef = getHandoffPlanReference(handoffFolder, resolvedContextId, projectRoot);
|
|
327
|
+
if (planRef) {
|
|
328
|
+
try {
|
|
329
|
+
fullPlanContent = fs.readFileSync(planRef, "utf-8");
|
|
330
|
+
} catch {
|
|
331
|
+
// ignore — no plan to append
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
if (fullPlanContent) {
|
|
336
|
+
const planBody = stripTitle(fullPlanContent);
|
|
337
|
+
if (planBody && planBody !== "(No content for this section)") {
|
|
338
|
+
out.push("---");
|
|
339
|
+
out.push("");
|
|
340
|
+
out.push("### Appendix: Full Plan");
|
|
341
|
+
out.push("");
|
|
342
|
+
out.push(planBody);
|
|
343
|
+
out.push("");
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
console.log(out.join("\n"));
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
/**
|
|
351
|
+
* Try to extract context_id from index.md frontmatter.
|
|
352
|
+
*/
|
|
353
|
+
function extractContextIdFromIndex(indexContent: string | null): string | null {
|
|
354
|
+
if (!indexContent) return null;
|
|
355
|
+
if (!indexContent.startsWith("---")) return null;
|
|
356
|
+
|
|
357
|
+
const parts = indexContent.split("---", 3);
|
|
358
|
+
if (parts.length < 3) return null;
|
|
359
|
+
|
|
360
|
+
for (const line of parts[1]!.trim().split(/\r?\n/)) {
|
|
361
|
+
const colonIdx = line.indexOf(":");
|
|
362
|
+
if (colonIdx !== -1) {
|
|
363
|
+
const key = line.slice(0, colonIdx).trim();
|
|
364
|
+
if (key === "context_id") {
|
|
365
|
+
return line.slice(colonIdx + 1).trim();
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
return null;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
main();
|