commit
ce6cea8757
11
CHANGELOG.md
11
CHANGELOG.md
@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
||||||
|
|
||||||
|
## [0.17.2] - 2026-02-15
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- `expert-mini`、`expert-cqrs-mini` ピースを追加 — Expert ピースの軽量版として、plan → implement → 並列レビュー(AI アンチパターン+スーパーバイザー)→ 修正のワークフローを提供
|
||||||
|
- ピースカテゴリの「⚡ Mini」「🔧 エキスパート」に新ピースを追加
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- パーミッションモード未解決時にエラーをスローしていた問題を修正 — `readonly` にフォールバックするように変更
|
||||||
|
|
||||||
## [0.17.1] - 2026-02-15
|
## [0.17.1] - 2026-02-15
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
@ -467,7 +467,9 @@ TAKT includes multiple builtin pieces:
|
|||||||
| `review-fix-minimal` | Review-focused piece: review → fix → supervisor. For iterative improvement based on review feedback. |
|
| `review-fix-minimal` | Review-focused piece: review → fix → supervisor. For iterative improvement based on review feedback. |
|
||||||
| `research` | Research piece: planner → digger → supervisor. Autonomously executes research without asking questions. |
|
| `research` | Research piece: planner → digger → supervisor. Autonomously executes research without asking questions. |
|
||||||
| `expert` | Full-stack development piece: architecture, frontend, security, QA reviews with fix loops. |
|
| `expert` | Full-stack development piece: architecture, frontend, security, QA reviews with fix loops. |
|
||||||
|
| `expert-mini` | Mini expert piece: plan → implement → parallel review (AI antipattern + expert supervisor) with full-stack knowledge injection. |
|
||||||
| `expert-cqrs` | Full-stack development piece (CQRS+ES specialized): CQRS+ES, frontend, security, QA reviews with fix loops. |
|
| `expert-cqrs` | Full-stack development piece (CQRS+ES specialized): CQRS+ES, frontend, security, QA reviews with fix loops. |
|
||||||
|
| `expert-cqrs-mini` | Mini CQRS+ES expert piece: plan → implement → parallel review (AI antipattern + expert supervisor) with CQRS+ES knowledge injection. |
|
||||||
| `magi` | Deliberation system inspired by Evangelion. Three AI personas (MELCHIOR, BALTHASAR, CASPER) analyze and vote. |
|
| `magi` | Deliberation system inspired by Evangelion. Three AI personas (MELCHIOR, BALTHASAR, CASPER) analyze and vote. |
|
||||||
| `passthrough` | Thinnest wrapper. Pass task directly to coder as-is. No review. |
|
| `passthrough` | Thinnest wrapper. Pass task directly to coder as-is. No review. |
|
||||||
| `compound-eye` | Multi-model review: sends the same instruction to Claude and Codex simultaneously, then synthesizes both responses. |
|
| `compound-eye` | Multi-model review: sends the same instruction to Claude and Codex simultaneously, then synthesizes both responses. |
|
||||||
|
|||||||
@ -12,6 +12,8 @@ piece_categories:
|
|||||||
- frontend-mini
|
- frontend-mini
|
||||||
- backend-mini
|
- backend-mini
|
||||||
- backend-cqrs-mini
|
- backend-cqrs-mini
|
||||||
|
- expert-mini
|
||||||
|
- expert-cqrs-mini
|
||||||
🎨 Frontend:
|
🎨 Frontend:
|
||||||
pieces:
|
pieces:
|
||||||
- frontend
|
- frontend
|
||||||
@ -25,7 +27,9 @@ piece_categories:
|
|||||||
🔧 Expert:
|
🔧 Expert:
|
||||||
pieces:
|
pieces:
|
||||||
- expert
|
- expert
|
||||||
|
- expert-mini
|
||||||
- expert-cqrs
|
- expert-cqrs
|
||||||
|
- expert-cqrs-mini
|
||||||
🛠️ Refactoring:
|
🛠️ Refactoring:
|
||||||
pieces:
|
pieces:
|
||||||
- structural-reform
|
- structural-reform
|
||||||
|
|||||||
254
builtins/en/pieces/expert-cqrs-mini.yaml
Normal file
254
builtins/en/pieces/expert-cqrs-mini.yaml
Normal file
@ -0,0 +1,254 @@
|
|||||||
|
name: expert-cqrs-mini
|
||||||
|
description: CQRS+ES Expert-focused mini development piece (plan -> implement -> parallel review -> fix if needed -> complete)
|
||||||
|
piece_config:
|
||||||
|
provider_options:
|
||||||
|
codex:
|
||||||
|
network_access: true
|
||||||
|
opencode:
|
||||||
|
network_access: true
|
||||||
|
max_movements: 20
|
||||||
|
initial_movement: plan
|
||||||
|
movements:
|
||||||
|
- name: plan
|
||||||
|
edit: false
|
||||||
|
persona: planner
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- cqrs-es
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
rules:
|
||||||
|
- condition: Requirements are clear and implementation is possible
|
||||||
|
next: implement
|
||||||
|
- condition: User is asking a question (not an implementation task)
|
||||||
|
next: COMPLETE
|
||||||
|
- condition: Requirements are unclear, insufficient information
|
||||||
|
next: ABORT
|
||||||
|
instruction: plan
|
||||||
|
output_contracts:
|
||||||
|
report:
|
||||||
|
- name: 00-plan.md
|
||||||
|
format: plan
|
||||||
|
- name: implement
|
||||||
|
edit: true
|
||||||
|
persona: coder
|
||||||
|
policy:
|
||||||
|
- coding
|
||||||
|
- testing
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- cqrs-es
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Edit
|
||||||
|
- Write
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
required_permission_mode: edit
|
||||||
|
instruction: implement
|
||||||
|
rules:
|
||||||
|
- condition: Implementation complete
|
||||||
|
next: reviewers
|
||||||
|
- condition: Cannot proceed, insufficient info
|
||||||
|
next: ABORT
|
||||||
|
- condition: User input required because there are items to confirm with the user
|
||||||
|
next: implement
|
||||||
|
requires_user_input: true
|
||||||
|
interactive_only: true
|
||||||
|
output_contracts:
|
||||||
|
report:
|
||||||
|
- name: coder-scope.md
|
||||||
|
format: coder-scope
|
||||||
|
- name: coder-decisions.md
|
||||||
|
format: coder-decisions
|
||||||
|
- name: reviewers
|
||||||
|
parallel:
|
||||||
|
- name: ai_review
|
||||||
|
edit: false
|
||||||
|
persona: ai-antipattern-reviewer
|
||||||
|
policy:
|
||||||
|
- review
|
||||||
|
- ai-antipattern
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
instruction: review-ai
|
||||||
|
rules:
|
||||||
|
- condition: No AI-specific issues
|
||||||
|
- condition: AI-specific issues found
|
||||||
|
output_contracts:
|
||||||
|
report:
|
||||||
|
- name: 03-ai-review.md
|
||||||
|
format: ai-review
|
||||||
|
- name: supervise
|
||||||
|
edit: false
|
||||||
|
persona: expert-supervisor
|
||||||
|
policy: review
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- cqrs-es
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
instruction: supervise
|
||||||
|
rules:
|
||||||
|
- condition: All checks passed
|
||||||
|
- condition: Requirements unmet, tests failing
|
||||||
|
output_contracts:
|
||||||
|
report:
|
||||||
|
- name: supervisor-validation.md
|
||||||
|
format: supervisor-validation
|
||||||
|
- name: summary.md
|
||||||
|
format: summary
|
||||||
|
use_judge: false
|
||||||
|
rules:
|
||||||
|
- condition: all("No AI-specific issues", "All checks passed")
|
||||||
|
next: COMPLETE
|
||||||
|
- condition: all("AI-specific issues found", "Requirements unmet, tests failing")
|
||||||
|
next: fix_both
|
||||||
|
- condition: any("AI-specific issues found")
|
||||||
|
next: ai_fix
|
||||||
|
- condition: any("Requirements unmet, tests failing")
|
||||||
|
next: supervise_fix
|
||||||
|
- name: fix_both
|
||||||
|
parallel:
|
||||||
|
- name: ai_fix_parallel
|
||||||
|
edit: true
|
||||||
|
persona: coder
|
||||||
|
policy:
|
||||||
|
- coding
|
||||||
|
- testing
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- cqrs-es
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Edit
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
required_permission_mode: edit
|
||||||
|
rules:
|
||||||
|
- condition: AI Reviewer's issues fixed
|
||||||
|
- condition: No fix needed (verified target files/spec)
|
||||||
|
- condition: Cannot proceed, insufficient info
|
||||||
|
instruction: ai-fix
|
||||||
|
- name: supervise_fix_parallel
|
||||||
|
edit: true
|
||||||
|
persona: coder
|
||||||
|
policy:
|
||||||
|
- coding
|
||||||
|
- testing
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- cqrs-es
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Edit
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
required_permission_mode: edit
|
||||||
|
rules:
|
||||||
|
- condition: Supervisor's issues fixed
|
||||||
|
- condition: Cannot proceed, insufficient info
|
||||||
|
instruction: fix-supervisor
|
||||||
|
rules:
|
||||||
|
- condition: all("AI Reviewer's issues fixed", "Supervisor's issues fixed")
|
||||||
|
next: reviewers
|
||||||
|
- condition: any("No fix needed (verified target files/spec)", "Cannot proceed, insufficient info")
|
||||||
|
next: implement
|
||||||
|
- name: ai_fix
|
||||||
|
edit: true
|
||||||
|
persona: coder
|
||||||
|
policy:
|
||||||
|
- coding
|
||||||
|
- testing
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- cqrs-es
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Edit
|
||||||
|
- Write
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
required_permission_mode: edit
|
||||||
|
pass_previous_response: false
|
||||||
|
rules:
|
||||||
|
- condition: AI Reviewer's issues fixed
|
||||||
|
next: reviewers
|
||||||
|
- condition: No fix needed (verified target files/spec)
|
||||||
|
next: implement
|
||||||
|
- condition: Cannot proceed, insufficient info
|
||||||
|
next: implement
|
||||||
|
instruction: ai-fix
|
||||||
|
- name: supervise_fix
|
||||||
|
edit: true
|
||||||
|
persona: coder
|
||||||
|
policy:
|
||||||
|
- coding
|
||||||
|
- testing
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- cqrs-es
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Edit
|
||||||
|
- Write
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
required_permission_mode: edit
|
||||||
|
pass_previous_response: false
|
||||||
|
rules:
|
||||||
|
- condition: Supervisor's issues fixed
|
||||||
|
next: reviewers
|
||||||
|
- condition: Cannot proceed, insufficient info
|
||||||
|
next: implement
|
||||||
|
instruction: fix-supervisor
|
||||||
247
builtins/en/pieces/expert-mini.yaml
Normal file
247
builtins/en/pieces/expert-mini.yaml
Normal file
@ -0,0 +1,247 @@
|
|||||||
|
name: expert-mini
|
||||||
|
description: Expert-focused mini development piece (plan -> implement -> parallel review -> fix if needed -> complete)
|
||||||
|
piece_config:
|
||||||
|
provider_options:
|
||||||
|
codex:
|
||||||
|
network_access: true
|
||||||
|
opencode:
|
||||||
|
network_access: true
|
||||||
|
max_movements: 20
|
||||||
|
initial_movement: plan
|
||||||
|
movements:
|
||||||
|
- name: plan
|
||||||
|
edit: false
|
||||||
|
persona: planner
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
rules:
|
||||||
|
- condition: Requirements are clear and implementation is possible
|
||||||
|
next: implement
|
||||||
|
- condition: User is asking a question (not an implementation task)
|
||||||
|
next: COMPLETE
|
||||||
|
- condition: Requirements are unclear, insufficient information
|
||||||
|
next: ABORT
|
||||||
|
instruction: plan
|
||||||
|
output_contracts:
|
||||||
|
report:
|
||||||
|
- name: 00-plan.md
|
||||||
|
format: plan
|
||||||
|
- name: implement
|
||||||
|
edit: true
|
||||||
|
persona: coder
|
||||||
|
policy:
|
||||||
|
- coding
|
||||||
|
- testing
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Edit
|
||||||
|
- Write
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
required_permission_mode: edit
|
||||||
|
instruction: implement
|
||||||
|
rules:
|
||||||
|
- condition: Implementation complete
|
||||||
|
next: reviewers
|
||||||
|
- condition: Cannot proceed, insufficient info
|
||||||
|
next: ABORT
|
||||||
|
- condition: User input required because there are items to confirm with the user
|
||||||
|
next: implement
|
||||||
|
requires_user_input: true
|
||||||
|
interactive_only: true
|
||||||
|
output_contracts:
|
||||||
|
report:
|
||||||
|
- name: coder-scope.md
|
||||||
|
format: coder-scope
|
||||||
|
- name: coder-decisions.md
|
||||||
|
format: coder-decisions
|
||||||
|
- name: reviewers
|
||||||
|
parallel:
|
||||||
|
- name: ai_review
|
||||||
|
edit: false
|
||||||
|
persona: ai-antipattern-reviewer
|
||||||
|
policy:
|
||||||
|
- review
|
||||||
|
- ai-antipattern
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
instruction: review-ai
|
||||||
|
rules:
|
||||||
|
- condition: No AI-specific issues
|
||||||
|
- condition: AI-specific issues found
|
||||||
|
output_contracts:
|
||||||
|
report:
|
||||||
|
- name: 03-ai-review.md
|
||||||
|
format: ai-review
|
||||||
|
- name: supervise
|
||||||
|
edit: false
|
||||||
|
persona: expert-supervisor
|
||||||
|
policy: review
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
instruction: supervise
|
||||||
|
rules:
|
||||||
|
- condition: All checks passed
|
||||||
|
- condition: Requirements unmet, tests failing
|
||||||
|
output_contracts:
|
||||||
|
report:
|
||||||
|
- name: supervisor-validation.md
|
||||||
|
format: supervisor-validation
|
||||||
|
- name: summary.md
|
||||||
|
format: summary
|
||||||
|
use_judge: false
|
||||||
|
rules:
|
||||||
|
- condition: all("No AI-specific issues", "All checks passed")
|
||||||
|
next: COMPLETE
|
||||||
|
- condition: all("AI-specific issues found", "Requirements unmet, tests failing")
|
||||||
|
next: fix_both
|
||||||
|
- condition: any("AI-specific issues found")
|
||||||
|
next: ai_fix
|
||||||
|
- condition: any("Requirements unmet, tests failing")
|
||||||
|
next: supervise_fix
|
||||||
|
- name: fix_both
|
||||||
|
parallel:
|
||||||
|
- name: ai_fix_parallel
|
||||||
|
edit: true
|
||||||
|
persona: coder
|
||||||
|
policy:
|
||||||
|
- coding
|
||||||
|
- testing
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Edit
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
required_permission_mode: edit
|
||||||
|
rules:
|
||||||
|
- condition: AI Reviewer's issues fixed
|
||||||
|
- condition: No fix needed (verified target files/spec)
|
||||||
|
- condition: Cannot proceed, insufficient info
|
||||||
|
instruction: ai-fix
|
||||||
|
- name: supervise_fix_parallel
|
||||||
|
edit: true
|
||||||
|
persona: coder
|
||||||
|
policy:
|
||||||
|
- coding
|
||||||
|
- testing
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Edit
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
required_permission_mode: edit
|
||||||
|
rules:
|
||||||
|
- condition: Supervisor's issues fixed
|
||||||
|
- condition: Cannot proceed, insufficient info
|
||||||
|
instruction: fix-supervisor
|
||||||
|
rules:
|
||||||
|
- condition: all("AI Reviewer's issues fixed", "Supervisor's issues fixed")
|
||||||
|
next: reviewers
|
||||||
|
- condition: any("No fix needed (verified target files/spec)", "Cannot proceed, insufficient info")
|
||||||
|
next: implement
|
||||||
|
- name: ai_fix
|
||||||
|
edit: true
|
||||||
|
persona: coder
|
||||||
|
policy:
|
||||||
|
- coding
|
||||||
|
- testing
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Edit
|
||||||
|
- Write
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
required_permission_mode: edit
|
||||||
|
pass_previous_response: false
|
||||||
|
rules:
|
||||||
|
- condition: AI Reviewer's issues fixed
|
||||||
|
next: reviewers
|
||||||
|
- condition: No fix needed (verified target files/spec)
|
||||||
|
next: implement
|
||||||
|
- condition: Cannot proceed, insufficient info
|
||||||
|
next: implement
|
||||||
|
instruction: ai-fix
|
||||||
|
- name: supervise_fix
|
||||||
|
edit: true
|
||||||
|
persona: coder
|
||||||
|
policy:
|
||||||
|
- coding
|
||||||
|
- testing
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Edit
|
||||||
|
- Write
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
required_permission_mode: edit
|
||||||
|
pass_previous_response: false
|
||||||
|
rules:
|
||||||
|
- condition: Supervisor's issues fixed
|
||||||
|
next: reviewers
|
||||||
|
- condition: Cannot proceed, insufficient info
|
||||||
|
next: implement
|
||||||
|
instruction: fix-supervisor
|
||||||
@ -12,6 +12,8 @@ piece_categories:
|
|||||||
- frontend-mini
|
- frontend-mini
|
||||||
- backend-mini
|
- backend-mini
|
||||||
- backend-cqrs-mini
|
- backend-cqrs-mini
|
||||||
|
- expert-mini
|
||||||
|
- expert-cqrs-mini
|
||||||
🎨 フロントエンド:
|
🎨 フロントエンド:
|
||||||
pieces:
|
pieces:
|
||||||
- frontend
|
- frontend
|
||||||
@ -25,7 +27,9 @@ piece_categories:
|
|||||||
🔧 エキスパート:
|
🔧 エキスパート:
|
||||||
pieces:
|
pieces:
|
||||||
- expert
|
- expert
|
||||||
|
- expert-mini
|
||||||
- expert-cqrs
|
- expert-cqrs
|
||||||
|
- expert-cqrs-mini
|
||||||
🛠️ リファクタリング:
|
🛠️ リファクタリング:
|
||||||
pieces:
|
pieces:
|
||||||
- structural-reform
|
- structural-reform
|
||||||
|
|||||||
254
builtins/ja/pieces/expert-cqrs-mini.yaml
Normal file
254
builtins/ja/pieces/expert-cqrs-mini.yaml
Normal file
@ -0,0 +1,254 @@
|
|||||||
|
name: expert-cqrs-mini
|
||||||
|
description: CQRS+ES Expert向けMini開発ピース(plan → implement → 並列レビュー → 修正 → 完了)
|
||||||
|
piece_config:
|
||||||
|
provider_options:
|
||||||
|
codex:
|
||||||
|
network_access: true
|
||||||
|
opencode:
|
||||||
|
network_access: true
|
||||||
|
max_movements: 20
|
||||||
|
initial_movement: plan
|
||||||
|
movements:
|
||||||
|
- name: plan
|
||||||
|
edit: false
|
||||||
|
persona: planner
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- cqrs-es
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
rules:
|
||||||
|
- condition: 要件が明確で実装可能
|
||||||
|
next: implement
|
||||||
|
- condition: ユーザーが質問をしている(実装タスクではない)
|
||||||
|
next: COMPLETE
|
||||||
|
- condition: 要件が不明確、情報不足
|
||||||
|
next: ABORT
|
||||||
|
instruction: plan
|
||||||
|
output_contracts:
|
||||||
|
report:
|
||||||
|
- name: 00-plan.md
|
||||||
|
format: plan
|
||||||
|
- name: implement
|
||||||
|
edit: true
|
||||||
|
persona: coder
|
||||||
|
policy:
|
||||||
|
- coding
|
||||||
|
- testing
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- cqrs-es
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Edit
|
||||||
|
- Write
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
required_permission_mode: edit
|
||||||
|
instruction: implement
|
||||||
|
rules:
|
||||||
|
- condition: 実装が完了した
|
||||||
|
next: reviewers
|
||||||
|
- condition: 実装を進行できない
|
||||||
|
next: ABORT
|
||||||
|
- condition: ユーザーへの確認事項があるためユーザー入力が必要
|
||||||
|
next: implement
|
||||||
|
requires_user_input: true
|
||||||
|
interactive_only: true
|
||||||
|
output_contracts:
|
||||||
|
report:
|
||||||
|
- name: coder-scope.md
|
||||||
|
format: coder-scope
|
||||||
|
- name: coder-decisions.md
|
||||||
|
format: coder-decisions
|
||||||
|
- name: reviewers
|
||||||
|
parallel:
|
||||||
|
- name: ai_review
|
||||||
|
edit: false
|
||||||
|
persona: ai-antipattern-reviewer
|
||||||
|
policy:
|
||||||
|
- review
|
||||||
|
- ai-antipattern
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
instruction: review-ai
|
||||||
|
rules:
|
||||||
|
- condition: AI特有の問題なし
|
||||||
|
- condition: AI特有の問題あり
|
||||||
|
output_contracts:
|
||||||
|
report:
|
||||||
|
- name: 03-ai-review.md
|
||||||
|
format: ai-review
|
||||||
|
- name: supervise
|
||||||
|
edit: false
|
||||||
|
persona: expert-supervisor
|
||||||
|
policy: review
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- cqrs-es
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
instruction: supervise
|
||||||
|
rules:
|
||||||
|
- condition: すべて問題なし
|
||||||
|
- condition: 要求未達成、テスト失敗、ビルドエラー
|
||||||
|
output_contracts:
|
||||||
|
report:
|
||||||
|
- name: supervisor-validation.md
|
||||||
|
format: supervisor-validation
|
||||||
|
- name: summary.md
|
||||||
|
format: summary
|
||||||
|
use_judge: false
|
||||||
|
rules:
|
||||||
|
- condition: all("AI特有の問題なし", "すべて問題なし")
|
||||||
|
next: COMPLETE
|
||||||
|
- condition: all("AI特有の問題あり", "要求未達成、テスト失敗、ビルドエラー")
|
||||||
|
next: fix_both
|
||||||
|
- condition: any("AI特有の問題あり")
|
||||||
|
next: ai_fix
|
||||||
|
- condition: any("要求未達成、テスト失敗、ビルドエラー")
|
||||||
|
next: supervise_fix
|
||||||
|
- name: fix_both
|
||||||
|
parallel:
|
||||||
|
- name: ai_fix_parallel
|
||||||
|
edit: true
|
||||||
|
persona: coder
|
||||||
|
policy:
|
||||||
|
- coding
|
||||||
|
- testing
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- cqrs-es
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Edit
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
required_permission_mode: edit
|
||||||
|
rules:
|
||||||
|
- condition: AI問題の修正完了
|
||||||
|
- condition: 修正不要(指摘対象ファイル/仕様の確認済み)
|
||||||
|
- condition: 判断できない、情報不足
|
||||||
|
instruction: ai-fix
|
||||||
|
- name: supervise_fix_parallel
|
||||||
|
edit: true
|
||||||
|
persona: coder
|
||||||
|
policy:
|
||||||
|
- coding
|
||||||
|
- testing
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- cqrs-es
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Edit
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
required_permission_mode: edit
|
||||||
|
rules:
|
||||||
|
- condition: 監督者の指摘に対する修正が完了した
|
||||||
|
- condition: 修正を進行できない
|
||||||
|
instruction: fix-supervisor
|
||||||
|
rules:
|
||||||
|
- condition: all("AI問題の修正完了", "監督者の指摘に対する修正が完了した")
|
||||||
|
next: reviewers
|
||||||
|
- condition: any("修正不要(指摘対象ファイル/仕様の確認済み)", "判断できない、情報不足", "修正を進行できない")
|
||||||
|
next: implement
|
||||||
|
- name: ai_fix
|
||||||
|
edit: true
|
||||||
|
persona: coder
|
||||||
|
policy:
|
||||||
|
- coding
|
||||||
|
- testing
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- cqrs-es
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Edit
|
||||||
|
- Write
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
required_permission_mode: edit
|
||||||
|
pass_previous_response: false
|
||||||
|
rules:
|
||||||
|
- condition: AI問題の修正完了
|
||||||
|
next: reviewers
|
||||||
|
- condition: 修正不要(指摘対象ファイル/仕様の確認済み)
|
||||||
|
next: implement
|
||||||
|
- condition: 判断できない、情報不足
|
||||||
|
next: implement
|
||||||
|
instruction: ai-fix
|
||||||
|
- name: supervise_fix
|
||||||
|
edit: true
|
||||||
|
persona: coder
|
||||||
|
policy:
|
||||||
|
- coding
|
||||||
|
- testing
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- cqrs-es
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Edit
|
||||||
|
- Write
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
required_permission_mode: edit
|
||||||
|
pass_previous_response: false
|
||||||
|
rules:
|
||||||
|
- condition: 監督者の指摘に対する修正が完了した
|
||||||
|
next: reviewers
|
||||||
|
- condition: 修正を進行できない
|
||||||
|
next: implement
|
||||||
|
instruction: fix-supervisor
|
||||||
247
builtins/ja/pieces/expert-mini.yaml
Normal file
247
builtins/ja/pieces/expert-mini.yaml
Normal file
@ -0,0 +1,247 @@
|
|||||||
|
name: expert-mini
|
||||||
|
description: Expert向けMini開発ピース(plan → implement → 並列レビュー → 修正 → 完了)
|
||||||
|
piece_config:
|
||||||
|
provider_options:
|
||||||
|
codex:
|
||||||
|
network_access: true
|
||||||
|
opencode:
|
||||||
|
network_access: true
|
||||||
|
max_movements: 20
|
||||||
|
initial_movement: plan
|
||||||
|
movements:
|
||||||
|
- name: plan
|
||||||
|
edit: false
|
||||||
|
persona: planner
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
rules:
|
||||||
|
- condition: 要件が明確で実装可能
|
||||||
|
next: implement
|
||||||
|
- condition: ユーザーが質問をしている(実装タスクではない)
|
||||||
|
next: COMPLETE
|
||||||
|
- condition: 要件が不明確、情報不足
|
||||||
|
next: ABORT
|
||||||
|
instruction: plan
|
||||||
|
output_contracts:
|
||||||
|
report:
|
||||||
|
- name: 00-plan.md
|
||||||
|
format: plan
|
||||||
|
- name: implement
|
||||||
|
edit: true
|
||||||
|
persona: coder
|
||||||
|
policy:
|
||||||
|
- coding
|
||||||
|
- testing
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Edit
|
||||||
|
- Write
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
required_permission_mode: edit
|
||||||
|
instruction: implement
|
||||||
|
rules:
|
||||||
|
- condition: 実装が完了した
|
||||||
|
next: reviewers
|
||||||
|
- condition: 実装を進行できない
|
||||||
|
next: ABORT
|
||||||
|
- condition: ユーザーへの確認事項があるためユーザー入力が必要
|
||||||
|
next: implement
|
||||||
|
requires_user_input: true
|
||||||
|
interactive_only: true
|
||||||
|
output_contracts:
|
||||||
|
report:
|
||||||
|
- name: coder-scope.md
|
||||||
|
format: coder-scope
|
||||||
|
- name: coder-decisions.md
|
||||||
|
format: coder-decisions
|
||||||
|
- name: reviewers
|
||||||
|
parallel:
|
||||||
|
- name: ai_review
|
||||||
|
edit: false
|
||||||
|
persona: ai-antipattern-reviewer
|
||||||
|
policy:
|
||||||
|
- review
|
||||||
|
- ai-antipattern
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
instruction: review-ai
|
||||||
|
rules:
|
||||||
|
- condition: AI特有の問題なし
|
||||||
|
- condition: AI特有の問題あり
|
||||||
|
output_contracts:
|
||||||
|
report:
|
||||||
|
- name: 03-ai-review.md
|
||||||
|
format: ai-review
|
||||||
|
- name: supervise
|
||||||
|
edit: false
|
||||||
|
persona: expert-supervisor
|
||||||
|
policy: review
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
instruction: supervise
|
||||||
|
rules:
|
||||||
|
- condition: すべて問題なし
|
||||||
|
- condition: 要求未達成、テスト失敗、ビルドエラー
|
||||||
|
output_contracts:
|
||||||
|
report:
|
||||||
|
- name: supervisor-validation.md
|
||||||
|
format: supervisor-validation
|
||||||
|
- name: summary.md
|
||||||
|
format: summary
|
||||||
|
use_judge: false
|
||||||
|
rules:
|
||||||
|
- condition: all("AI特有の問題なし", "すべて問題なし")
|
||||||
|
next: COMPLETE
|
||||||
|
- condition: all("AI特有の問題あり", "要求未達成、テスト失敗、ビルドエラー")
|
||||||
|
next: fix_both
|
||||||
|
- condition: any("AI特有の問題あり")
|
||||||
|
next: ai_fix
|
||||||
|
- condition: any("要求未達成、テスト失敗、ビルドエラー")
|
||||||
|
next: supervise_fix
|
||||||
|
- name: fix_both
|
||||||
|
parallel:
|
||||||
|
- name: ai_fix_parallel
|
||||||
|
edit: true
|
||||||
|
persona: coder
|
||||||
|
policy:
|
||||||
|
- coding
|
||||||
|
- testing
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Edit
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
required_permission_mode: edit
|
||||||
|
rules:
|
||||||
|
- condition: AI問題の修正完了
|
||||||
|
- condition: 修正不要(指摘対象ファイル/仕様の確認済み)
|
||||||
|
- condition: 判断できない、情報不足
|
||||||
|
instruction: ai-fix
|
||||||
|
- name: supervise_fix_parallel
|
||||||
|
edit: true
|
||||||
|
persona: coder
|
||||||
|
policy:
|
||||||
|
- coding
|
||||||
|
- testing
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Edit
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
required_permission_mode: edit
|
||||||
|
rules:
|
||||||
|
- condition: 監督者の指摘に対する修正が完了した
|
||||||
|
- condition: 修正を進行できない
|
||||||
|
instruction: fix-supervisor
|
||||||
|
rules:
|
||||||
|
- condition: all("AI問題の修正完了", "監督者の指摘に対する修正が完了した")
|
||||||
|
next: reviewers
|
||||||
|
- condition: any("修正不要(指摘対象ファイル/仕様の確認済み)", "判断できない、情報不足", "修正を進行できない")
|
||||||
|
next: implement
|
||||||
|
- name: ai_fix
|
||||||
|
edit: true
|
||||||
|
persona: coder
|
||||||
|
policy:
|
||||||
|
- coding
|
||||||
|
- testing
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Edit
|
||||||
|
- Write
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
required_permission_mode: edit
|
||||||
|
pass_previous_response: false
|
||||||
|
rules:
|
||||||
|
- condition: AI問題の修正完了
|
||||||
|
next: reviewers
|
||||||
|
- condition: 修正不要(指摘対象ファイル/仕様の確認済み)
|
||||||
|
next: implement
|
||||||
|
- condition: 判断できない、情報不足
|
||||||
|
next: implement
|
||||||
|
instruction: ai-fix
|
||||||
|
- name: supervise_fix
|
||||||
|
edit: true
|
||||||
|
persona: coder
|
||||||
|
policy:
|
||||||
|
- coding
|
||||||
|
- testing
|
||||||
|
knowledge:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
- security
|
||||||
|
- architecture
|
||||||
|
allowed_tools:
|
||||||
|
- Read
|
||||||
|
- Glob
|
||||||
|
- Grep
|
||||||
|
- Edit
|
||||||
|
- Write
|
||||||
|
- Bash
|
||||||
|
- WebSearch
|
||||||
|
- WebFetch
|
||||||
|
required_permission_mode: edit
|
||||||
|
pass_previous_response: false
|
||||||
|
rules:
|
||||||
|
- condition: 監督者の指摘に対する修正が完了した
|
||||||
|
next: reviewers
|
||||||
|
- condition: 修正を進行できない
|
||||||
|
next: implement
|
||||||
|
instruction: fix-supervisor
|
||||||
@ -467,7 +467,9 @@ TAKTには複数のビルトインピースが同梱されています:
|
|||||||
| `review-fix-minimal` | レビュー重視ピース: レビュー → 修正 → スーパーバイザー。レビューフィードバックに基づく反復改善向け。 |
|
| `review-fix-minimal` | レビュー重視ピース: レビュー → 修正 → スーパーバイザー。レビューフィードバックに基づく反復改善向け。 |
|
||||||
| `research` | リサーチピース: プランナー → ディガー → スーパーバイザー。質問せずに自律的にリサーチを実行。 |
|
| `research` | リサーチピース: プランナー → ディガー → スーパーバイザー。質問せずに自律的にリサーチを実行。 |
|
||||||
| `expert` | フルスタック開発ピース: アーキテクチャ、フロントエンド、セキュリティ、QA レビューと修正ループ。 |
|
| `expert` | フルスタック開発ピース: アーキテクチャ、フロントエンド、セキュリティ、QA レビューと修正ループ。 |
|
||||||
|
| `expert-mini` | ミニエキスパートピース: 計画 → 実装 → 並列レビュー(AI アンチパターン+エキスパートスーパーバイザー)。フルスタックナレッジ注入付き。 |
|
||||||
| `expert-cqrs` | フルスタック開発ピース(CQRS+ES特化): CQRS+ES、フロントエンド、セキュリティ、QA レビューと修正ループ。 |
|
| `expert-cqrs` | フルスタック開発ピース(CQRS+ES特化): CQRS+ES、フロントエンド、セキュリティ、QA レビューと修正ループ。 |
|
||||||
|
| `expert-cqrs-mini` | ミニ CQRS+ES エキスパートピース: 計画 → 実装 → 並列レビュー(AI アンチパターン+エキスパートスーパーバイザー)。CQRS+ES ナレッジ注入付き。 |
|
||||||
| `magi` | エヴァンゲリオンにインスパイアされた審議システム。3つの AI ペルソナ(MELCHIOR、BALTHASAR、CASPER)が分析し投票。 |
|
| `magi` | エヴァンゲリオンにインスパイアされた審議システム。3つの AI ペルソナ(MELCHIOR、BALTHASAR、CASPER)が分析し投票。 |
|
||||||
| `passthrough` | 最小構成。タスクをそのまま coder に渡す薄いラッパー。レビューなし。 |
|
| `passthrough` | 最小構成。タスクをそのまま coder に渡す薄いラッパー。レビューなし。 |
|
||||||
| `compound-eye` | マルチモデルレビュー: Claude と Codex に同じ指示を同時送信し、両方の回答を統合。 |
|
| `compound-eye` | マルチモデルレビュー: Claude と Codex に同じ指示を同時送信し、両方の回答を統合。 |
|
||||||
|
|||||||
@ -43,7 +43,7 @@ E2Eテストを追加・変更した場合は、このドキュメントも更
|
|||||||
- `.takt/tasks.yaml` にタスクを作成(`piece` は `e2e/fixtures/pieces/simple.yaml` を指定)。
|
- `.takt/tasks.yaml` にタスクを作成(`piece` は `e2e/fixtures/pieces/simple.yaml` を指定)。
|
||||||
- `takt run` を実行する。
|
- `takt run` を実行する。
|
||||||
- `README.md` に行が追加されることを確認する。
|
- `README.md` に行が追加されることを確認する。
|
||||||
- 実行後にタスクが `tasks.yaml` から消えることを確認する。
|
- 実行後にタスクが `tasks.yaml` で `completed` ステータスになることを確認する。
|
||||||
- Worktree/Clone isolation(`e2e/specs/worktree.e2e.ts`)
|
- Worktree/Clone isolation(`e2e/specs/worktree.e2e.ts`)
|
||||||
- 目的: `--create-worktree yes` 指定で隔離環境に実行されることを確認。
|
- 目的: `--create-worktree yes` 指定で隔離環境に実行されることを確認。
|
||||||
- LLM: 条件付き(`TAKT_E2E_PROVIDER` が `claude` / `codex` の場合に呼び出す)
|
- LLM: 条件付き(`TAKT_E2E_PROVIDER` が `claude` / `codex` の場合に呼び出す)
|
||||||
|
|||||||
@ -74,10 +74,10 @@ describe('E2E: Add task and run (takt add → takt run)', () => {
|
|||||||
const readme = readFileSync(readmePath, 'utf-8');
|
const readme = readFileSync(readmePath, 'utf-8');
|
||||||
expect(readme).toContain('E2E test passed');
|
expect(readme).toContain('E2E test passed');
|
||||||
|
|
||||||
// Verify completed task was removed from tasks.yaml
|
// Verify completed task is marked as completed in tasks.yaml
|
||||||
const tasksRaw = readFileSync(tasksFile, 'utf-8');
|
const tasksRaw = readFileSync(tasksFile, 'utf-8');
|
||||||
const parsed = parseYaml(tasksRaw) as { tasks?: Array<{ name?: string; status?: string }> };
|
const parsed = parseYaml(tasksRaw) as { tasks?: Array<{ name?: string; status?: string }> };
|
||||||
const executed = parsed.tasks?.find((task) => task.name === 'e2e-test-task');
|
const executed = parsed.tasks?.find((task) => task.name === 'e2e-test-task');
|
||||||
expect(executed).toBeUndefined();
|
expect(executed?.status).toBe('completed');
|
||||||
}, 240_000);
|
}, 240_000);
|
||||||
});
|
});
|
||||||
|
|||||||
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "takt",
|
"name": "takt",
|
||||||
"version": "0.17.1",
|
"version": "0.17.2",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "takt",
|
"name": "takt",
|
||||||
"version": "0.17.1",
|
"version": "0.17.2",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@anthropic-ai/claude-agent-sdk": "^0.2.37",
|
"@anthropic-ai/claude-agent-sdk": "^0.2.37",
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "takt",
|
"name": "takt",
|
||||||
"version": "0.17.1",
|
"version": "0.17.2",
|
||||||
"description": "TAKT: TAKT Agent Koordination Topology - AI Agent Piece Orchestration",
|
"description": "TAKT: TAKT Agent Koordination Topology - AI Agent Piece Orchestration",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"types": "dist/index.d.ts",
|
"types": "dist/index.d.ts",
|
||||||
|
|||||||
@ -43,11 +43,13 @@ describe('resolveMovementPermissionMode', () => {
|
|||||||
expect(mode).toBe('full');
|
expect(mode).toBe('full');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('throws when unresolved', () => {
|
it('falls back to readonly when unresolved', () => {
|
||||||
expect(() => resolveMovementPermissionMode({
|
const mode = resolveMovementPermissionMode({
|
||||||
movementName: 'fix',
|
movementName: 'fix',
|
||||||
provider: 'codex',
|
provider: 'codex',
|
||||||
})).toThrow(/Unable to resolve permission mode/);
|
});
|
||||||
|
|
||||||
|
expect(mode).toBe('readonly');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('resolves from required_permission_mode when provider is omitted', () => {
|
it('resolves from required_permission_mode when provider is omitted', () => {
|
||||||
|
|||||||
@ -63,10 +63,7 @@ export function resolveMovementPermissionMode(input: ResolvePermissionModeInput)
|
|||||||
return input.requiredPermissionMode;
|
return input.requiredPermissionMode;
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new Error(
|
return 'readonly';
|
||||||
`Unable to resolve permission mode for movement "${input.movementName}" and provider "${input.provider}": ` +
|
|
||||||
'define provider_profiles defaults/overrides or movement.required_permission_mode.',
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const PERMISSION_MODE_RANK: Record<PermissionMode, number> = {
|
const PERMISSION_MODE_RANK: Record<PermissionMode, number> = {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user