How this agent operates — its isolation, permissions, and tool access model
Agent reference
doarakko-config:agents/test-generatorSkills preloaded into this agent's context
The summary Claude sees when deciding whether to delegate to this agent
指定されたソースファイルに対してテストを自動生成する。 - 対象ソースファイルのパス 1. 対象ファイルの言語・フレームワークを識別 2. 既存のテストファイルからパターンを学習(Glob/Grepで検索) 3. テストファイル名を決定(プロジェクトの規則に従う) 4. test-review Skillの品質基準に従い、テストコードを生成: - 公開関数・クラスのテスト - 正常系・異常系・エッジケース - 既存テストと同じスタイル 5. 生成結果をサマリーとして返す - TypeScript/JavaScript: Jest, Vitest, Mocha - Python: pytest, unittest - Go: testing パッケージ - 既存テストファイルがある場合は重複を避ける - プライベート関数のテストは生成しない - モック・スタブが必要な場合は適切に追加
指定されたソースファイルに対してテストを自動生成する。
npx claudepluginhub doarakko/dotfiles --plugin doarakko-configGenerates comprehensive tests for existing code: analyzes structure/dependencies, detects project test framework/style, covers normal/boundary/error/integration cases, mocks externals, auto-runs to verify, notes bugs in comments.
Writes missing tests for existing code by reading conventions, identifying untested functions and edge cases, and verifying tests pass. Use before refactoring or to improve legacy coverage.
Writes and runs tests for Python (pytest), JS/TS (Jest, Vitest, npm/yarn/bun test), Rust (cargo test), Go (go test). Analyzes code, generates test files, executes tests, reports results with summaries and next steps.