- SKILL.md: 疑似コードから命令形の手順1-8に書き換え、レポート抽出・Loop Monitor手順を追加
- engine.md: エージェント→チームメイト用語統一、yolo 権限キーワード対応
- takt-command.md: /takt {piece} [yolo] {task} 形式の引数パースを追加
- deploySkill.ts: cleanDir() で再デプロイ時の古いファイル残存を防止
- hybrid-codex ピース13点を en/ja に追加
44 lines
975 B
YAML
44 lines
975 B
YAML
# Passthrough TAKT Piece
|
|
# タスクをそのままエージェントに渡す最薄ラッパー。
|
|
#
|
|
# フロー:
|
|
# execute (タスク実行)
|
|
# ↓
|
|
# COMPLETE
|
|
|
|
name: passthrough-hybrid-codex
|
|
description: Single-agent thin wrapper. Pass task directly to coder as-is. (hybrid: coder=codex)
|
|
|
|
max_iterations: 10
|
|
|
|
initial_movement: execute
|
|
|
|
movements:
|
|
- name: execute
|
|
edit: true
|
|
agent: ../agents/default/coder.md
|
|
provider: codex
|
|
report:
|
|
- Summary: summary.md
|
|
allowed_tools:
|
|
- Read
|
|
- Glob
|
|
- Grep
|
|
- Edit
|
|
- Write
|
|
- Bash
|
|
- WebSearch
|
|
- WebFetch
|
|
permission_mode: edit
|
|
rules:
|
|
- condition: タスク完了
|
|
next: COMPLETE
|
|
- condition: 進行できない
|
|
next: ABORT
|
|
- condition: ユーザー入力が必要
|
|
next: execute
|
|
requires_user_input: true
|
|
interactive_only: true
|
|
instruction_template: |
|
|
タスクをこなしてください。
|