Skip to main content

batch

Process multiple features or tasks in parallel. Batch execution of PDCA commands across features. Triggers: batch, parallel, bulk, multiple features, 배치, 병렬, 대량 처리, バッチ, 並列, 一括処理, 批量, 并行, 批处理, lote, paralelo, procesamiento masivo, lot, parallèle, traitement en masse, Stapel, parallel, Massenverarbeitung, batch, parallelo, elaborazione di massa

설치로 이동

소스 정보

저장소
ww-w-ai/bkit-gemini
최근 소스 활동
2026년 5월 14일 06:54
감지된 SKILL.md 언어
영어
스타
66
포크
16

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
batch
classification
W
description
Process multiple features or tasks in parallel. Batch execution of PDCA commands across features. Triggers: batch, parallel, bulk, multiple features, 배치, 병렬, 대량 처리, バッチ, 並列, 一括処理, 批量, 并行, 批处理, lote, paralelo, procesamiento masivo, lot, parallèle, traitement en masse, Stapel, parallel, Massenverarbeitung, batch, parallelo, elaborazione di massa
user-invocable
true
argument-hint
[command] [features...]
allowed-tools
["read_file","write_file","glob","grep_search","tracker_create_task","tracker_update_task","tracker_list_tasks"]
# Batch Skill > Process multiple features or tasks in parallel. Execute PDCA commands across multiple features in a single invocation. ## Usage ``` /batch plan user-auth payment-system notification /batch design user-auth payment-system /batch analyze user-auth payment-system notification search /batch report user-auth payment-system ``` ## Execution Model 1. **Parse**: Extract the command and feature list from arguments 2. **Validate**: Check that each feature has prerequisites for the requested command 3. **Execute**: Process each feature sequentially, tracking progress via Task Tracker 4. **Report**: Output a summary table showing status for each feature ## Progress Tracking Each feature creates a Task Tracker entry: - Task subject: `[Batch {command}] {feature}` - Status updates as each feature completes - Final summary shows pass/fail per feature ## Error Handling - **Fail-forward**: If one feature fails, remaining features still execute - **Error log**: Failed features are collected and reported at the end - **Retry option**: Use `--retry-failed` to re-run only the failed features ``` /batch --retry-failed analyze user-auth payment-system ``` ## Output Format ``` Batch Execution Summary ---------------------------------------------- Command: plan Features: 4 total | 3 success | 1 failed ---------------------------------------------- user-auth [OK] docs/01-plan/features/user-auth.plan.md payment-system [OK] docs/01-plan/features/payment-system.plan.md notification [OK] docs/01-plan/features/notification.plan.md search [FAIL] Missing prerequisite: project scope undefined ---------------------------------------------- ``` ## Feature Discovery If no features are specified, batch will auto-discover features from: 1. `.pdca-status.json` primary and secondary features 2. `docs/01-plan/features/*.plan.md` existing plan files 3. `docs/02-design/features/*.design.md` existing design files ``` /batch analyze # auto-discovers all features /batch report --all # explicitly process all known features ``` ## Combination with Other Skills Batch works with any PDCA subcommand and can be combined with loop: ``` /loop 1h batch analyze user-auth payment-system ```
GitHub에서 보기