document360-writer 0.5.34 → 0.5.35

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.
@@ -12,6 +12,10 @@ export type ReadyInputs = {
12
12
  (e.g. a crash mid-run) or a freshly-pinned plan with bodies still to generate. Drives the "pick up
13
13
  where you left off" → /write lead so a half-done generation isn't buried under /audit + /pull. */
14
14
  pendingWrites: number;
15
+ /** Tracked articles changed locally since their sync base (local-ahead) — ready to /publish. Computed
16
+ cheaply + locally (countLocalAhead, no network). Drives the /publish lead so "ready to publish" isn't
17
+ buried under /audit, and stops the briefing falsely reading "all in sync" (dogfood s-244). */
18
+ localAhead: number;
15
19
  /** Commits on HEAD since the last `/audit` marker (0 when never audited or not a git repo). */
16
20
  behind: number;
17
21
  /** The user's `/audit --auto on` setting. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "document360-writer",
3
- "version": "0.5.34",
3
+ "version": "0.5.35",
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.73",
37
+ "document360-engine": "^0.2.74",
38
38
  "ink": "^5.2.1",
39
39
  "picocolors": "^1.1.1",
40
40
  "react": "^18.3.1",