document360-writer 0.4.71 → 0.4.72

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.
@@ -97,6 +97,15 @@ export declare function reconcileDevhints(cwd: string, now?: string): DevhintsRe
97
97
  * here, or once the builder has caught up (so it self-stops). `cwd` is the repo path shown to the user.
98
98
  */
99
99
  export declare function renderBuilderUpdateNote(cwd: string): string[];
100
+ /**
101
+ * The INVERSE of devHintsRunPrompt: the copy-run prompt the user pastes into their builder after a
102
+ * `/reset`, to undo the dev→docs hand-off and restore the repo to its pre-docs-agent state (the
103
+ * `.d360-writer/` brief is already gone; this removes the rule the builder added to its agent memory).
104
+ */
105
+ export declare function devHintsCleanupPrompt(): string;
106
+ /** The `/reset` builder-cleanup block: explains the leftover (the builder's agent-memory edit, which
107
+ reset deliberately can't touch) and shows the copy-run cleanup prompt. */
108
+ export declare function renderResetCleanup(): string[];
100
109
  /**
101
110
  * The `/devhints` screen: confirms what was scaffolded, then shows the single copy-run prompt
102
111
  * (devHintsRunPrompt) and the closing "come back and run" guidance. One prompt, zero manual file edits.
@@ -0,0 +1 @@
1
+ export declare function copyToClipboard(text: string): Promise<boolean>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "document360-writer",
3
- "version": "0.4.71",
3
+ "version": "0.4.72",
4
4
  "description": "Standalone documentation agent CLI. Reads your code, writes your docs. Specialized for Document360 publishing.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -16,7 +16,7 @@
16
16
  "build": "rimraf dist tsconfig.tsbuildinfo && tsc -b && node ../../scripts/bundle.mjs",
17
17
  "clean": "rimraf dist",
18
18
  "prepublishOnly": "npm run build",
19
- "test": "vitest run --passWithNoTests"
19
+ "test": "vitest run --passWithNoTests --no-file-parallelism"
20
20
  },
21
21
  "engines": {
22
22
  "node": ">=20"