document360-writer 0.5.6 → 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.
- package/dist/cli.js +84 -84
- package/dist/tui/catalog.d.ts +5 -2
- package/package.json +2 -2
package/dist/tui/catalog.d.ts
CHANGED
|
@@ -6,8 +6,11 @@ export type CommandSpec = {
|
|
|
6
6
|
group: CommandGroup;
|
|
7
7
|
};
|
|
8
8
|
export declare const COMMANDS: CommandSpec[];
|
|
9
|
-
/** The
|
|
10
|
-
|
|
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.
|
|
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": {
|
|
@@ -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.59",
|
|
38
38
|
"ink": "^5.2.1",
|
|
39
39
|
"picocolors": "^1.1.1",
|
|
40
40
|
"react": "^18.3.1",
|