babysit-babysitter-issues

仓库创建 2026年1月5日最近提交 2 天前SkillHot 收录 21 天前
▸ 精选理由

对仓库维护者和自动化运维非常实用,集成了 gh CLI 的具体流程。

▸ 风险提示

需使用 gh CLI 并具备仓库读写/issue 权限。

这个 Skill 做什么

拉取分配给 a5c-agent 的 GitHub issue 并自动处理或分派工作。

自动拉取 GitHub 上分配给 a5c-agent 的 babysitter 仓库 issue,并按流程处理或分派后续任务。想让代理去检查并解决它的待办 issue 时会用到。它会用 gh CLI 列出 issue,然后通过内部 /babysitter:call 把每个问题路由并执行具体工作。

▸ 展开 SKILL.md 英文原文

This skill should be used when the user asks to "babysit issues", "work on assigned issues", "check a5c-agent issues", "process babysitter issues", or wants to find and work on open GitHub issues assigned to a5c-agent in the babysitter repo.

开发编程Issue处理GitHub自动化Claude Code
1.6k
Stars
94
Forks
40
仓库内 Skill
+111
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/a5c-ai/babysitter/main/.claude/skills/babysit-babysitter-issues/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/a5c-ai/babysitter/main/.claude/skills/babysit-babysitter-issues/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Babysit Babysitter Issues

Fetch open GitHub issues from https://github.com/a5c-ai/babysitter/issues assigned to `a5c-agent`, then orchestrate work on each issue via `/babysitter:call`.

## Workflow

### Step 1: Fetch Assigned Issues

Use the `gh` CLI to list open issues assigned to `a5c-agent`:

```bash
gh issue list --repo a5c-ai/babysitter --assignee a5c-agent --state open --json number,title,url,labels --limit 50
```

If no issues are found, report that there are no open issues assigned to `a5c-agent` and stop.

### Step 2: Present Issues

Display the list of open issues to the user with their number, title, labels, and URL. 

### Step 3: Orchestrate via Babysitter

For each issue, inv
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有