
Start a new task with GitHub issue, branch, and worktree setup
Commit, push, merge, and complete task with quality review (タスク完了)
Commit and push changes (途中保存)
Automatically process multiple issues in sequence (複数Issueの自動処理)
Process backlog - unblock then issue-ify ready items (バックログ処理)
Analyze gap between issue spec and implementation (Issue乖離分析)
Finish task with quality review by invoking commit/merge workflow (タスク完了)
Detect gaps, label outdated issues, and create missing issues (乖離検出・Issue作成)
Scan all issues and analyze their status (全Issue状態のスキャン)
Analyze backlog blockers and create issues to resolve them (ブロッカー解消Issue作成)
# QA Ask 質問を `docs/qa/questions.jsonl` に追記するスキル。 ## Usage ``` /qa/ask /qa/ask "CSV or JSON?" /qa/ask --type provisional --decision JSON "Data format preference?" /qa/ask --type deferred --stub "auth_placeholder()" "Authentication method?" ``` ## Parameters - `question`: 質問内容(必須) - `--type`: 質問タイプ(provisional | deferred)デフォルト: provisional - `--decision`: 仮決定(provisional の場合) - `--stub`: スタブコード(deferred の場合) - `--options`: 選択肢(カンマ区切り) ## Implementation QAモジュールは `scripts/qa/` に配置されています。 ```
# QA System Setup QAシステム(Slack/Discord連携)のセットアップを対話的にガイドします。 ## Usage ``` /qa/setup # 対話的セットアップを開始 /qa/setup slack # Slackセットアップのみ /qa/setup discord # Discordセットアップのみ ``` ## Prerequisites - GitHub リポジトリへのアクセス - Slack workspace の管理者権限、または Discord サーバーの管理者権限 ## Documentation 詳細なセットアップ手順とトラブルシューティングは `docs/qa/SETUP.md` を参照。 セットアップ中に問題が発生した場合: 1. `docs/qa/SETUP.md` の「トラブルシューティング」セクションを確認 2. 特に `missing_scope` エラーの場合、パブリック/プライベートチャンネルで必要なスコープが異なる ## Workflow ### Step 1: プラット
Periodic codebase integrity and consistency review (定期的な実装整合性チェック)
Review and validate specification before implementation (仕様レビュー)
Initialize worktree data protection configuration (run once in main repository)
Multi-agent review of current branch changes (多角的レビュー)
Smart commit router - routes to commit/only, commit/push, or commit/merge
Set up data directories in a new worktree
Safely remove a worktree after checking for important data
Sync updates from research-project-template (テンプレート更新の取り込み)
Contribute improvements back to research-project-template (テンプレートへの改善PR)
# QA Check `docs/qa/answers.jsonl` から未処理の回答を確認するスキル。 ## Usage ``` /qa/check /qa/check Q001 /qa/check --all /qa/check Q001 --reply "フォローアップメッセージ" ``` ## Parameters - `question_id`: 特定の質問IDの回答を確認(オプション) - `--all`: 全ての回答を表示 - `--reply "message"`: 指定した質問のスレッドにメッセージを返信 ## Implementation QAモジュールは `scripts/qa/` に配置されています。 ```python import sys from pathlib import Path # Add scripts/ to path sys.path.insert(0, str(Path(__file__).parent.parent.parent.parent / "scripts")) from qa.models import An
Report progress on current task to GitHub issue
--- description: Run auto→gaps→auto loop until convergence (継続的自動処理ループ) argument-hint: [issue_ids...] [max_cycles] --- # Issue Cycle `/issue/auto` → `/issue/gaps` → `/review-integrity` → `/issue/auto` のループを収束まで実行します。 ## Usage ``` /issue/cycle # デフォルト(収束まで、最大10サイクル) /issue/cycle 3回まで # 最大3サイクル /issue/cycle 1回だけ # 1サイクルのみ /issue/cycle 完了するまで # 収束まで(明示的) /issue/cycle #5 #7 2回 # 指定Issue、最大2サイクル /issue/cycle 5 7 --max 3 # 指定Issue、最大3サイクル ``` ## Concept ``` ┌──────────
Create a child issue in current branch without switching worktree
Commit changes only (no push)