document360-writer 0.5.27 → 0.5.28

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/repl.d.ts CHANGED
@@ -10,6 +10,8 @@ export type ReplContext = {
10
10
  setModel: (model?: string) => Promise<void>;
11
11
  /** UUID of the live session record, once the first exchange has registered it. */
12
12
  currentUuid: () => string | null;
13
+ /** Stash a name from /rename run before the first message; applied when the session registers. */
14
+ setPendingName: (name: string) => void;
13
15
  /** Pause the REPL's readline while another stdin consumer (e.g. the /resume picker) runs. */
14
16
  withPausedInput: <T>(fn: () => Promise<T>) => Promise<T>;
15
17
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "document360-writer",
3
- "version": "0.5.27",
3
+ "version": "0.5.28",
4
4
  "description": "Standalone documentation agent CLI. Reads your code, writes your docs. Specialized for Document360 publishing.",
5
5
  "type": "module",
6
6
  "bin": {