Add errand.requestChanges procedure that re-spawns an agent in the existing worktree with user feedback. Replace raw <pre> diff blocks with syntax-highlighted ErrandDiffView using FileCard components. Add Output/Changes tabs to the active errand view.
20 lines
1.1 KiB
TypeScript
20 lines
1.1 KiB
TypeScript
/**
|
|
* Agent Prompts — per-mode prompt builders and shared instructions.
|
|
*
|
|
* Each agent type lives in its own file. Shared instructions (signal format,
|
|
* input files, ID generation) are in shared.ts.
|
|
*/
|
|
|
|
export { SIGNAL_FORMAT, INPUT_FILES, ID_GENERATION, CODEBASE_EXPLORATION, CONTEXT_MANAGEMENT, DEVIATION_RULES, GIT_WORKFLOW, TEST_INTEGRITY, SESSION_STARTUP, PROGRESS_TRACKING, buildInterAgentCommunication } from './shared.js';
|
|
export { buildExecutePrompt } from './execute.js';
|
|
export { buildDiscussPrompt } from './discuss.js';
|
|
export { buildPlanPrompt } from './plan.js';
|
|
export { buildDetailPrompt } from './detail.js';
|
|
export { buildRefinePrompt } from './refine.js';
|
|
export { buildChatPrompt } from './chat.js';
|
|
export type { ChatHistoryEntry } from './chat.js';
|
|
export { buildErrandPrompt, buildErrandRevisionPrompt } from './errand.js';
|
|
export { buildWorkspaceLayout } from './workspace.js';
|
|
export { buildPreviewInstructions } from './preview.js';
|
|
export { buildConflictResolutionPrompt, buildConflictResolutionDescription } from './conflict-resolution.js';
|