* refactor: provider/modelの解決ロジックをAgentRunnerに集約 OptionsBuilderでCLIレベルとstepレベルを事前マージしていたのをやめ、 stepProvider/stepModelとして分離して渡す形に変更。 AgentRunnerが全レイヤーの優先度を一括で解決する。 * takt: takt-list
20 lines
390 B
TypeScript
20 lines
390 B
TypeScript
/**
|
|
* Individual actions for task-centric list items.
|
|
*/
|
|
|
|
export type { ListAction } from './taskActionTarget.js';
|
|
|
|
export {
|
|
showFullDiff,
|
|
showDiffAndPromptActionForTask,
|
|
} from './taskDiffActions.js';
|
|
|
|
export {
|
|
isBranchMerged,
|
|
tryMergeBranch,
|
|
mergeBranch,
|
|
deleteBranch,
|
|
} from './taskBranchLifecycleActions.js';
|
|
|
|
export { instructBranch } from './taskInstructionActions.js';
|