원클릭으로
intake
Sync GitHub Issues into beans epics. Run periodically or on demand to import new issues as beans epics for the orchestrator to pick up.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Sync GitHub Issues into beans epics. Run periodically or on demand to import new issues as beans epics for the orchestrator to pick up.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Poll beans for ready epics, create worktrees, and delegate to sub-agents that implement each epic following docs/workflow.md. Use when asked to "run orchestration", "process epics", or "start the agent loop".
Search, create, edit, and manage Jira issues via jira-genie CLI. Use when the user needs to interact with Jira — find tickets, create tasks, create tickets, add comments, update status, extract templates, or automate workflows.
| name | intake |
| description | Sync GitHub Issues into beans epics. Run periodically or on demand to import new issues as beans epics for the orchestrator to pick up. |
Import open GitHub Issues as beans epics so the orchestrator has a single work queue.
gh CLI authenticated (gh auth status)beans CLI available<!-- gh-issue: <number> --> marker in the epic body for dedup.gh issue list --state open --json number,title,body,labels --limit 100
For each issue, check if a bean with a matching marker already exists.
The marker convention is <!-- gh-issue: <number> --> embedded in the
epic body.
beans list --type epic --json | jq -r '.[].body' | grep -q '<!-- gh-issue: 42 -->'
If a bean already contains this marker, skip it.
For each new issue:
beans create "<issue title>" \
--type epic \
--body "<!-- gh-issue: <number> -->
<issue body>"
The marker must be the first line of the body so it's easy to find.
List what was imported:
echo "Imported: #<number> → <bean-id>"
| GitHub Issue field | Beans epic field |
|---|---|
number | body marker <!-- gh-issue: <number> --> |
title | title |
body | body (after marker line) |
labels | not mapped (could be priority later) |