document360-writer 0.5.49 → 0.5.50
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 +87 -87
- package/dist/commands/scope.d.ts +1 -1
- package/dist/tui/itemRender.d.ts +2 -2
- package/package.json +1 -1
package/dist/commands/scope.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type ScopeCandidate } from 'document360-engine';
|
|
2
2
|
import type { ReplContext } from '../repl.js';
|
|
3
3
|
import type { SlashCommandResult } from './index.js';
|
|
4
|
-
/** Persist the chosen scope folders into .d360-writer.json (read-modify-write so
|
|
4
|
+
/** Persist the chosen scope folders into .d360-writer/config.json (read-modify-write so
|
|
5
5
|
unrelated fields survive). Shared by the REPL command and the TUI picker. */
|
|
6
6
|
export declare function setAuthoritativeSourceFiles(cwd: string, paths: string[]): void;
|
|
7
7
|
/** One display row: "src/Services/Document360.API · 142 files · .NET · user-facing surface". */
|
package/dist/tui/itemRender.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export type BannerInfo = {
|
|
|
3
3
|
claude: string;
|
|
4
4
|
/** Resolved model name (alias or full id; 'Claude Code default' when no override). */
|
|
5
5
|
model: string;
|
|
6
|
-
/** Where the model came from, e.g. '.d360-writer.json', '/model setting', 'env'. */
|
|
6
|
+
/** Where the model came from, e.g. '.d360-writer/config.json', '/model setting', 'env'. */
|
|
7
7
|
modelSource: string;
|
|
8
8
|
who: string | null;
|
|
9
9
|
/** Session-health parenthetical shown after `who` (expiry / refreshing note). */
|
|
@@ -14,7 +14,7 @@ export type BannerInfo = {
|
|
|
14
14
|
cwd: string;
|
|
15
15
|
prod: boolean;
|
|
16
16
|
loggedOut: boolean;
|
|
17
|
-
/** False when the repo has no .d360-writer.json — show "run /init", never a default
|
|
17
|
+
/** False when the repo has no .d360-writer/config.json — show "run /init", never a default
|
|
18
18
|
profile or a machine-global session that the repo never opted into. */
|
|
19
19
|
configured: boolean;
|
|
20
20
|
/** Writer-mode boundary line, e.g. 'writer · edits limited to user-docs/ + config'. */
|
package/package.json
CHANGED