| 591 | * Options for building task context |
| 592 | */ |
| 593 | export interface BuildContextOptions { |
| 594 | /** Maximum number of nodes to include (default: 50) */ |
| 595 | maxNodes?: number; |
| 596 | |
| 597 | /** Maximum number of code blocks to include (default: 10) */ |
| 598 | maxCodeBlocks?: number; |
| 599 | |
| 600 | /** Maximum characters per code block (default: 2000) */ |
| 601 | maxCodeBlockSize?: number; |
| 602 | |
| 603 | /** Whether to include code blocks (default: true) */ |
| 604 | includeCode?: boolean; |
| 605 | |
| 606 | /** Output format (default: 'markdown') */ |
| 607 | format?: 'markdown' | 'json'; |
| 608 | |
| 609 | /** Number of semantic search results (default: 5) */ |
| 610 | searchLimit?: number; |
| 611 | |
| 612 | /** Graph traversal depth from entry points (default: 2) */ |
| 613 | traversalDepth?: number; |
| 614 | |
| 615 | /** Minimum semantic similarity score (default: 0.3) */ |
| 616 | minScore?: number; |
| 617 | } |
| 618 | |
| 619 | /** |
| 620 | * Full context for a task, ready for Claude |
nothing calls this directly
no outgoing calls
no test coverage detected