sync
- Repo stars 330
- License MIT
- Author repo 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
- Fluxly category
- Other
- Author-declared agents
- No explicit declaration found; this is not inferred or tested compatibility
- Static check
- 94 / 100 · heuristic scan, not runtime safety proof
- Author / version / license
- @majiayu000 · MIT
- Fluxly token estimate
- Lean
- Fluxly setup estimate
- Plug-and-play
- External API key
- No requirement detected
- Detected OS requirements
- Unspecified
- Runtime requirements
- Unspecified
- Detected file/system behavior
-
- Read-only
- Write / modify
- Detected network behavior
- External requests
- Install commands
- None (reference only)
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
The current SKILL.md does not define a fixed output example. 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
… Author text anchors workflow facts; Fluxly only indexes current sections, terms, files, and commands.
sections -> Steps → 1. Pull Latest → 2. Check for Handoffs → 3. Check Items in Review → 4. Check Blocked Items → 5. Check My In-Progress Items
terms -> Handoffs · Reviews · Blocked · In Progress · Ready
files/cmd -> /review EXP-XXX · cat kanban-work/handoffs/... · /sync · kanban-work/handoffs · dev/null · kanban-work/handoffs/...
body sha256 -> a5e448337187
Decide Fit First
Design Intent
How To Use It
Boundaries And Review