一键导入
aibtc-org-review
Review open issues and PRs across aibtcdev repos with prioritized next steps
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Review open issues and PRs across aibtcdev repos with prioritized next steps
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Evaluate session context through Arc's editorial lens and draft social posts
Create, update, and publish blog posts on arc0.me in Arc's voice
Generate daily summary of git activity across all repositories
Play Floor is Lava on Scrapyard arena as Arc (arc0btc). Interactive AI agent game on Stacks.
Mark the current quest as complete and archive it
Create a new quest with phased execution plan
| name | aibtc-org-review |
| description | Review open issues and PRs across aibtcdev repos with prioritized next steps |
| allowed-tools | Bash |
Scan aibtcdev GitHub repos for open issues, PRs, and fork sync status. Produce a prioritized summary with next steps.
/aibtc-org-review # Full org review
landing-page
agent-news
aibtc-mcp-server
skills
x402-sponsor-relay
x402-api
worker-logs
aibtcdev/loop-starter-kit is a fork of secret-mars/loop-starter-kit. Check if the fork is behind upstream.
Run these Bash commands in parallel (one call per repo):
For each repo in the list above:
gh issue list --repo aibtcdev/<repo> --state open --limit 50 2>&1
gh pr list --repo aibtcdev/<repo> --state open --limit 50 2>&1
Using 2>&1 captures errors gracefully — some repos may have issues disabled.
gh api repos/aibtcdev/loop-starter-kit/compare/main...secret-mars:main --jq '{ahead_by: .ahead_by, behind_by: .behind_by, status: .status}' 2>&1
If this errors, try with master instead of main for either side.
For each repo, create a section with:
Create a Next Steps table sorted by impact. Apply these priority rules:
| Signal | Priority | Action |
|---|---|---|
| Release-please PR open | High (quick win) | Merge to cut a release |
| PR that fixes an open issue | High | Review and merge |
| PR with approvals, no merge | High | Merge if CI passes |
| Stale PR (>30 days) | Medium | Ping author or close |
| Bug-labeled issue | Medium | Triage and assign |
| Feature request | Low | Backlog review |
Report whether loop-starter-kit is in sync, behind, or ahead of upstream. If behind, note how many commits and suggest a sync PR.
Compare capabilities between the skills repo and aibtc-mcp-server to identify gaps.
6a. Get skill names from the skills repo:
ls ~/dev/aibtcdev/skills/ -d */ 2>/dev/null | grep -v node_modules | grep -v src | grep -v scripts | sed 's/\///'
6b. Get MCP tool categories from the MCP server:
ls ~/dev/aibtcdev/aibtc-mcp-server/src/tools/*.tools.ts 2>/dev/null | sed 's/.*\///' | sed 's/\.tools\.ts//'
6c. Cross-reference and report:
Build a table comparing skill areas to MCP tool groups. Flag:
mcp-tools field and whether the MCP tool description references the skillUse fuzzy matching on names (e.g., skill btc ↔ MCP tools in bitcoin.tools.ts, skill stacking ↔ MCP tools in stacking.tools.ts).
# AIBTC Org Review — <date>
## Per-Repo Status
### <repo-name>
Issues: N open | PRs: N open
| # | Title | Type | Author | Age |
|---|-------|------|--------|-----|
| ... |
(Repeat for each repo)
## Fork Sync: loop-starter-kit
Status: <in-sync | behind N commits | ahead N commits>
Action: <none needed | create sync PR>
## Priority Next Steps
| Priority | Repo | Item | Action |
|----------|------|------|--------|
| ... |
## Feature Parity: skills ↔ aibtc-mcp-server
| Skill | MCP Tool Group | Status | Gap |
|-------|---------------|--------|-----|
| btc | bitcoin.tools | Linked | — |
| stacking | stacking.tools | Linked | — |
| nostr | signing.tools | Partial | skill has nostr-specific features not in MCP |
| ... |
### Gaps to Address
- **Skills missing MCP tools:** <list>
- **MCP tools missing skills:** <list>
- **Cross-reference status:** N/M skills have `mcp-tools` field, N/M MCP tools reference skills
## Summary
- N total open issues across org
- N total open PRs across org
- Key themes or blockers
- Feature parity: N linked, N skill-only, N mcp-only