AI 기반 워크플로우 생성 - 자연어 설명으로 새 워크플로우 생성
Generates AI workflows from natural language descriptions and saves them as JSON files.
/plugin marketplace add hclleee/cc-plugin/plugin install hclleee-cc-workflow-plugins-cc-workflow@hclleee/cc-plugin자연어 설명을 기반으로 AI가 워크플로우를 생성합니다.
사용자 입력 수집
workflow-generator 에이전트 호출
workflow-generator 서브에이전트 실행생성 결과 검증
파일 저장
.claude/workflows/ 디렉토리 생성 (없는 경우)<워크플로우이름>.json 파일로 저장후속 안내
/workflow-run <이름>/workflow-edit <이름>사용자 입력:
이름: code-review
설명: PR이 올라오면 코드를 분석하고, 버그가 있으면 수정 제안을 하고,
없으면 승인 코멘트를 남기는 워크플로우
생성 결과:
워크플로우 'code-review' 생성 완료!
노드 구성:
- start → subAgent(코드분석) → ifElse(버그여부)
- 버그있음 → subAgent(수정제안) → end
- 버그없음 → subAgent(승인코멘트) → end
파일: .claude/workflows/code-review.json
다음 단계:
- 실행: /workflow-run code-review
- 수정: /workflow-edit code-review