document360-writer 0.5.41 → 0.5.42
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 +95 -91
- package/dist/commands/lint.d.ts +3 -1
- package/package.json +1 -1
package/dist/commands/lint.d.ts
CHANGED
|
@@ -3,4 +3,6 @@ import type { ReplContext } from '../repl.js';
|
|
|
3
3
|
import type { SlashCommandResult } from './index.js';
|
|
4
4
|
/** Group findings by article into printable lines (shared by classic + TUI). */
|
|
5
5
|
export declare function lintReportLines(findings: LintFinding[]): string[];
|
|
6
|
-
|
|
6
|
+
/** The agent prompt for `/lint --fix`: correct each finding in place, grounded in source, no new issues. */
|
|
7
|
+
export declare function buildLintFixPrompt(findings: LintFinding[]): string;
|
|
8
|
+
export declare function lintCommand(args: string[], ctx: ReplContext): Promise<SlashCommandResult>;
|
package/package.json
CHANGED