document360-writer 0.5.7 → 0.5.8

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.
@@ -6,8 +6,11 @@ export type CommandSpec = {
6
6
  group: CommandGroup;
7
7
  };
8
8
  export declare const COMMANDS: CommandSpec[];
9
- /** The grouped /help text — one source of truth for both the TUI and the classic REPL. Plain
10
- strings (no ANSI), so the TUI can push it as a note without leaking escape codes. */
9
+ /** The /help text — ONE source of truth for the TUI and the classic REPL. Organized by the two ways
10
+ people actually use d360-writer (keep-docs-in-sync vs. write-specific-docs) rather than by command
11
+ type, so a reader finds the handful of commands their situation needs instead of scanning a flat
12
+ list. Plain strings (no ANSI) so the TUI can push it as a note without leaking escape codes.
13
+ (The `/` palette still lists every command via COMMANDS/filterCommands — this is the teaching surface.) */
11
14
  export declare function renderGroupedHelp(): string[];
12
15
  /** Commands whose body filters as you type `/<prefix>`. */
13
16
  export declare function filterCommands(input: string): CommandSpec[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "document360-writer",
3
- "version": "0.5.7",
3
+ "version": "0.5.8",
4
4
  "description": "Standalone documentation agent CLI. Reads your code, writes your docs. Specialized for Document360 publishing.",
5
5
  "type": "module",
6
6
  "bin": {