@ksoftm/create-arc 1.3.0 → 1.4.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/bin/cli.js +15 -3
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -790,11 +790,23 @@ Focus: $ARGUMENTS`,
|
|
|
790
790
|
},
|
|
791
791
|
"arc-status": {
|
|
792
792
|
desc: "ARC: summarize all arcs and what to resume",
|
|
793
|
-
body: `Run \`
|
|
793
|
+
body: `Run \`arc status\` (or read .arc/INDEX.md). Report every arc's id, status, plan version, and task progress, and call out which in-progress/refining arcs to resume. For any arc that needs detail, run \`arc show <arc>\` for its plan/tasks/status and \`arc log <arc>\` for its worklog history. Then run \`arc next\` to recommend what to pick up.`,
|
|
794
794
|
},
|
|
795
795
|
"arc-resume": {
|
|
796
796
|
desc: "ARC: pick up the in-progress arc cold",
|
|
797
|
-
body: `Read ./ARC.md.
|
|
797
|
+
body: `Read ./ARC.md. Run \`arc next\` to find what to work on, then \`arc show <arc>\` and \`arc log <arc>\` to read its plan, status notes, and last worklog entries. Continue from the open tasks — after running Read Before Editing. If code and the arc disagree, the code is truth: \`arc note <arc> "drift: …" --worklog\` to record it, then correct the arc.`,
|
|
798
|
+
},
|
|
799
|
+
"arc-note": {
|
|
800
|
+
desc: "ARC: quick-capture an instruction or worklog note onto an arc",
|
|
801
|
+
body: `Capture this onto the relevant arc without rewriting the plan:
|
|
802
|
+
|
|
803
|
+
"$ARGUMENTS"
|
|
804
|
+
|
|
805
|
+
If it's a new requirement or instruction, run \`arc note <arc> "$ARGUMENTS"\` (it lands verbatim in §1 Raw Instructions). If it's a progress/decision note about work just done, run \`arc note <arc> "$ARGUMENTS" --worklog\` instead. Use \`arc status\` first if you're unsure which arc this belongs to. If it actually changes the plan or scope, use /arc-refine instead of /arc-note.`,
|
|
806
|
+
},
|
|
807
|
+
"arc-log": {
|
|
808
|
+
desc: "ARC: show an arc's worklog history",
|
|
809
|
+
body: `Run \`arc log <arc>\` for the arc referenced by "$ARGUMENTS" (resolve it via \`arc status\` if only a topic is given) and summarize its worklog timeline: what was done, in what order, and any decisions or follow-ups recorded. Then state where the arc currently stands and what the next step is.`,
|
|
798
810
|
},
|
|
799
811
|
};
|
|
800
812
|
|
|
@@ -837,7 +849,7 @@ function cmdAgentInit(flags) {
|
|
|
837
849
|
console.log(` ${agent.padEnd(9)} ${rel}/ (${Object.keys(ARC_COMMANDS).length} commands)`);
|
|
838
850
|
}
|
|
839
851
|
console.log(`\nAgent commands written (created ${created}, skipped ${skipped}${flags.force ? "" : "; use --force to overwrite"}).`);
|
|
840
|
-
console.log(`
|
|
852
|
+
console.log(`Commands: /arc-new /arc-build /arc-refine /arc-note /arc-log /arc-status /arc-resume`);
|
|
841
853
|
return 0;
|
|
842
854
|
}
|
|
843
855
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ksoftm/create-arc",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Scaffold and manage ARC — plan-driven development for AI agents (Align → Refine → Construct). Pure-Markdown plans, tasks, worklogs and statuses in .arc/, for any language and any agent.",
|
|
6
6
|
"keywords": [
|