document360-writer 0.5.10 → 0.5.11

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,9 @@ export declare const COMMANDS: CommandSpec[];
12
12
  list. Plain strings (no ANSI) so the TUI can push it as a note without leaking escape codes.
13
13
  (The `/` palette still lists every command via COMMANDS/filterCommands — this is the teaching surface.) */
14
14
  export declare function renderGroupedHelp(): string[];
15
+ /** A one-line description for a quick-list option (full command line, e.g. "/publish --all"). Curated
16
+ map first, then the catalog `desc` by base command, else ''. */
17
+ export declare function describeQuickOption(cmdLine: string): string;
15
18
  /** Commands whose body filters as you type `/<prefix>`. */
16
19
  export declare function filterCommands(input: string): CommandSpec[];
17
20
  /** True when the usage has a REQUIRED argument (`<...>` outside optional `[...]`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "document360-writer",
3
- "version": "0.5.10",
3
+ "version": "0.5.11",
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.59",
37
+ "document360-engine": "^0.2.60",
38
38
  "ink": "^5.2.1",
39
39
  "picocolors": "^1.1.1",
40
40
  "react": "^18.3.1",