一键导入
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) |