document360-writer 0.5.65 → 0.5.67
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/dist/cli.js +45 -36
- package/dist/commands/devhints.d.ts +5 -1
- package/package.json +2 -2
|
@@ -9,8 +9,12 @@ import type { ReplContext } from '../repl.js';
|
|
|
9
9
|
* v3 → two-way messages (Part 3) + on-demand hand-off (Part 4) + version trace.
|
|
10
10
|
* v4 → the writer can send the builder a `request` (not just a question), e.g. an auto "re-run
|
|
11
11
|
* onboarding" note when this protocol version moves ahead of what the builder last completed.
|
|
12
|
+
* v5 → (reserved — shipped intermediate refinements).
|
|
13
|
+
* v6 → make the hand-off VISIBLE + state the boundary: the builder surfaces every hint drop in its
|
|
14
|
+
* reply (never silently) and NEVER writes/publishes the user docs itself — that's the docs agent's
|
|
15
|
+
* job. Keeps the dogfood/limitation signal honest and lets a human verify the hand-off happens.
|
|
12
16
|
*/
|
|
13
|
-
export declare const DEVHINTS_VERSION =
|
|
17
|
+
export declare const DEVHINTS_VERSION = 6;
|
|
14
18
|
/**
|
|
15
19
|
* The committed protocol guide the SOURCE repo's coding agent follows. Self-contained because that
|
|
16
20
|
* agent has none of d360-writer's context. Two parts: (1) a ONE-TIME architecture brief that onboards
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "document360-writer",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.67",
|
|
4
4
|
"description": "Standalone documentation agent CLI. Reads your code, writes your docs. Specialized for Document360 publishing.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@inquirer/prompts": "^8.4.3",
|
|
35
35
|
"commander": "^14.0.3",
|
|
36
36
|
"diff": "^8.0.4",
|
|
37
|
-
"document360-engine": "^0.2.
|
|
37
|
+
"document360-engine": "^0.2.94",
|
|
38
38
|
"ink": "^5.2.1",
|
|
39
39
|
"picocolors": "^1.1.1",
|
|
40
40
|
"react": "^18.3.1",
|