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.
@@ -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
- export declare function lintCommand(_args: string[], ctx: ReplContext): Promise<SlashCommandResult>;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "document360-writer",
3
- "version": "0.5.41",
3
+ "version": "0.5.42",
4
4
  "description": "Standalone documentation agent CLI. Reads your code, writes your docs. Specialized for Document360 publishing.",
5
5
  "type": "module",
6
6
  "bin": {