ワンクリックで
pipelines-debug
Pipelines Service のデバッグワークフロー。API経由でワークフロー状態確認、失敗原因の特定、stepログの取得、手動リトライを行う。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Pipelines Service のデバッグワークフロー。API経由でワークフロー状態確認、失敗原因の特定、stepログの取得、手動リトライを行う。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Pipelines Service のAPI仕様書。ヘルスチェック、データ鮮度、成功率、キュー状況など、エージェントがAPI経由でパイプラインの監視・運用を行う。
実装計画(Plan)ファイルを作成する。TDD・コミット分割・テストケース一覧・工数見積もりを含む再現性の高い Plan を生成する。機能追加・バグ修正・リファクタリング等の実装計画策定時に使用。トリガー: 「Planを作って」「計画を立てて」「実装計画を」
ToolCall テスト実行スキル。AIが自律的にTmuxでBEを起動し、ログを収集しながら全モデル×全ツールのテストを実行し、テスト結果とログから不具合原因を特定する。
A skill to break down ambiguous requests into small, immediately implementable requirement definitions through strategic questioning. Focus on WHY and WHAT, excluding HOW. This is used when ambiguous requests such as 'I want to add a feature like XX,' 'I want to fix XX,' or 'I did XX' are made outside of Plan Mode.
Linux→Windows AndroidエミュレータへのADBデバッグ。スクリーンショット、ログ取得、UI操作、アプリインストールなど。
OSSのからrawファイルを直接取得。Claude Codeの最新CHANGELOG確認など、OSSの最新情報や仕様を手軽に取得が可能
| name | pipelines-debug |
| description | Pipelines Service のデバッグワークフロー。API経由でワークフロー状態確認、失敗原因の特定、stepログの取得、手動リトライを行う。 |
| allowed-tools | Bash, Read |
Pipelines Service のワークフロー状態確認・失敗調査・デバッグを行うスキル。全操作を API 経由で実行する。
export API_BASE="http://localhost:8001"
export PIPELINES_API_KEY="<your-api-key>"
curl -s http://localhost:8001/v1/health
./.claude/skills/pipelines-debug/check-workflows.sh "$API_BASE" "$PIPELINES_API_KEY"
# 特定ワークフローの直近 run 一覧
curl -s -H "X-API-Key: ${PIPELINES_API_KEY}" \
"${API_BASE}/v1/workflows/local_mirror_sync_workflow/runs" | jq '.[0]'
# 全 run 一覧(新しい順)
curl -s -H "X-API-Key: ${PIPELINES_API_KEY}" \
"${API_BASE}/v1/runs" | jq '.[] | {run_id, status, workflow_id, started_at}'
RUN_ID="<run_id>"
curl -s -H "X-API-Key: ${PIPELINES_API_KEY}" \
"${API_BASE}/v1/runs/${RUN_ID}" | jq .
# レスポンス: {"run": {...}, "steps": [...]}
# steps[].status と steps[].last_error_message を確認
RUN_ID="<run_id>"
STEP_ID="<step_id>"
curl -s -H "X-API-Key: ${PIPELINES_API_KEY}" \
"${API_BASE}/v1/runs/${RUN_ID}/steps/${STEP_ID}/log"
curl -s -X POST -H "X-API-Key: ${PIPELINES_API_KEY}" \
"${API_BASE}/v1/runs/${RUN_ID}/retry" | jq .
全エンドポイント(/v1/health 除く)に X-API-Key ヘッダーが必要。
| Method | Path | 説明 |
|---|---|---|
GET | /v1/health | ヘルスチェック |
GET | /v1/workflows | ワークフロー一覧 |
GET | /v1/workflows/{workflow_id} | ワークフロー詳細 |
GET | /v1/workflows/{workflow_id}/runs | ワークフローの run 一覧 |
POST | /v1/workflows/{workflow_id}/runs | 手動トリガー |
POST | /v1/workflows/{workflow_id}/enable | スケジュール有効化 |
POST | /v1/workflows/{workflow_id}/disable | スケジュール無効化 |
GET | /v1/runs | 全 run 一覧 |
GET | /v1/runs/{run_id} | run 詳細(steps 含む) |
GET | /v1/runs/{run_id}/steps/{step_id}/log | step ログ(text/plain) |
POST | /v1/runs/{run_id}/retry | リトライ |
POST | /v1/runs/{run_id}/cancel | キュー済み run をキャンセル |
| 変数 | 説明 | デフォルト |
|---|---|---|
API_BASE | Pipelines API のベース URL | http://localhost:8001 |
PIPELINES_API_KEY | API 認証キー(必須) | - |