/** * spec_kit.tasks_to_issues tool * * Converts tasks from tasks.md into GitHub issues with configurable * grouping strategies. * * Supports: * - Two task formats: individual tasks (T###) and task groups (TG-XXX) * - Three grouping strategies: per-task, per-story, per-phase * - Dependency validation with circular dependency detection * - Dry-run mode for previewing issue creation * - Duplicate detection via GitHub search * - Automatic update of tasks.md with created issue links * * @example * ```typescript * import { createTasksToIssuesTool } from './tasks-to-issues.js'; * * const tool = createTasksToIssuesTool(config, core); * * // Dry run to preview issues * const preview = await tool.execute({ dry_run: true }); * * // Create issues * const result = await tool.execute({ grouping: 'per-story' }); * ``` */ import type { AgencyTool, AgencyCoreAPI } from '@generacy-ai/agency'; import type { SpecKitConfig } from '../config.js'; /** * Create the spec_kit.tasks_to_issues tool. * * @param config - SpecKit plugin configuration * @param core - Agency core API * @returns AgencyTool instance */ export declare function createTasksToIssuesTool(config: SpecKitConfig, _core: AgencyCoreAPI): AgencyTool; //# sourceMappingURL=tasks-to-issues.d.ts.map