同步
- 作者仓库星标 330
- 许可证 MIT
- 作者仓库 claude-skill-registry
Agent Sync
Run at the start of each session to sync with other agents and see what needs attention.
Steps
1. Pull Latest
git fetch origin main
git checkout main
git pull origin main
2. Check for Handoffs
Look for handoff notes addressed to this agent:
# List recent handoffs
ls -la kanban-work/handoffs/ 2>/dev/null | tail -10
# Check for unread handoffs (files modified in last 24h)
find kanban-work/handoffs/ -name "*.md" -mtime -1 2>/dev/null
If handoffs exist, read them and summarize what needs attention.
3. Check Items in Review
yurtle-kanban list --status review
Can this agent help review any of these? Show the list and offer to run /review EXP-XXX.
4. Check Blocked Items
yurtle-kanban list --status blocked
Can this agent unblock any of these? Show blockers and reasons.
5. Check My In-Progress Items
yurtle-kanban list --status in_progress
Are any of these assigned to this agent or stale? Recommend:
- Resume work on existing item, OR
- Pick up new work if nothing in progress
6. Show Ready Work
# Show ready items filtered by agent capability if tags exist
yurtle-kanban list --status ready --limit 5
7. Generate Sync Summary
Output a summary like:
## Agent Sync Complete
**Handoffs:** X pending (read them with `cat kanban-work/handoffs/...`)
**Reviews:** X items need review
**Blocked:** X items blocked
**In Progress:** X items (Y assigned to me)
**Ready:** X items available
### Recommended Next Action
[Pick the most important thing to do]
Tips
- Run
/syncat the start of every session - If there are handoffs, read them first
- If there are reviews from other agents, consider helping
- Check blocked items - you might be able to unblock someone
- 流狐分类
- 通用
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 94 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @majiayu000 · MIT
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 即装即用
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- 未声明
- 底层运行要求
- 未声明
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- 检测到的网络行为
- 允许外网请求
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 Steps
1. Pull Latest
Look for handoff notes addressed to this agent: If handoffs exist, read them and summarize what needs attention.
Can this agent help review any of these? Show the list and offer to run /review EXP-XXX.
Can this agent unblock any of these? Show blockers and reasons.
Are any of these assigned to this agent or stale? Recommend: Resume work on existing item, OR Pick up new work if nothing in progress
# Agent Sync
Run at the start of each session to sync with other agents and see what needs attention.
## Steps
### 1. Pull Latest
```bash
git fetch origin main
git checkout main
git pull origin main
```
### 2. Check for Handoffs
Look for handoff notes addressed to this agent:
```bash
# List recent handoffs
ls -la kanban-work/handoffs/ 2>/dev/null | tail -10
# Check for unread handoffs (files modified in last 24h)
find kanban-work/handoffs/ -name "*.md" -mtime -1 2>/dev/null
```
If handoffs exist, read them and summarize what needs attention.
### 3. Check Items in Review
```bash
yurtle-kanban list --status review
```
Can this agent help review any of these? Show the list and offer to run `/review EXP-XXX`.
### 4. Check Blocked Items
```bash
yurtle-kanban list --status blocked
```
Can this agent unblock any of these? Show blockers and reasons.
### 5. Check My In-Progress Items
```bash
yurtle-kanban list --status in_progress
```
Are any of these assigned to this agent or stale? Recommend:
- Resume work on existing item, OR
- Pick up new work if nothing in progress
### 6. Show Ready Work
```bash
# Show ready items filtered by agent capability if tags exist
yurtle-kanban list --status ready --limit 5
```
### 7. Generate Sync Summary
Output a summary like:
```
## Agent Sync Complete
**Handoffs:** X pending (read them with `cat kanban-work/handoffs/...`)
**Reviews:** X items need review
**Blocked:** X items blocked
**In Progress:** X items (Y assigned to me)
**Ready:** X items available
### Recommended Next Action
[Pick the most important thing to do]
```
## Tips
- Run `/sync` at the start of every session
- If there are handoffs, read them first
- If there are reviews from other agents, consider helping
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Steps → 1. Pull Latest → 2. Check for Handoffs → 3. Check Items in Review → 4. Check Blocked Items → 5. Check My In-Progress Items
要点 -> Handoffs · Reviews · Blocked · In Progress · Ready
文件/命令 -> /review EXP-XXX · cat kanban-work/handoffs/... · /sync · kanban-work/handoffs · dev/null · kanban-work/handoffs/...
内容 SHA-256 -> a5e448337187
方法与流程
适用与边界
原文中的明确线索
/review EXP-XXX、cat kanban-work/handoffs/...、/sync、kanban-work/handoffs、dev/null、kanban-work/handoffs/...