원클릭으로
beads-workflow
AI-native issue tracking with Beads. Use when managing work items, tracking issues, or coordinating tasks in multi-agent workflows. Covers bd commands, dependencies, and sync patterns.
메뉴
AI-native issue tracking with Beads. Use when managing work items, tracking issues, or coordinating tasks in multi-agent workflows. Covers bd commands, dependencies, and sync patterns.
SOC 직업 분류 기준
Biome 2.x linting and formatting patterns. Use when configuring code quality tools, setting up linting rules, formatting code, or integrating with CI/CD. Covers migration from ESLint/Prettier.
Hono 4.x web framework patterns. Use when building APIs, middleware, routing, or server-side applications. Covers multi-runtime support (Node, Bun, Cloudflare Workers), validation, CORS, and error handling.
Radix UI primitive patterns. Use when building accessible, unstyled UI components like dialogs, dropdowns, tooltips, tabs, and selects. Covers Tailwind styling, keyboard navigation, animations, and portal management.
React development patterns. Use when building React components, managing state, creating custom hooks, or optimizing React applications. Covers React 19 features, TypeScript integration, and composition patterns.
Tailwind CSS 4.x utility-first styling patterns. Use when building UI components, creating responsive layouts, implementing design systems, or customizing themes. Covers CSS-first configuration, @theme directive, and component patterns.
Vite 7.x build tool patterns. Use when configuring build setup, development server, environment variables, asset handling, or optimizing production builds for React applications.
| name | beads-workflow |
| description | AI-native issue tracking with Beads. Use when managing work items, tracking issues, or coordinating tasks in multi-agent workflows. Covers bd commands, dependencies, and sync patterns. |
Beads is an AI-native issue tracker designed for agent workflows. Issues live in your repo, sync via git, and require no web UI.
| Command | Description |
|---|---|
bd create "Title" -t feature -p 2 | Create issue (type, priority) |
bd list --status open | List open issues |
bd show <id> | View issue details |
bd update <id> --status in_progress | Update status or assignee |
bd close <id> --reason "..." | Close with reason |
bd ready --sort hybrid | Find unblocked issues |
bd dep add <blocking> <blocked> --type blocks | Add dependency |
bd dep tree <id> | View dependency tree |
bd dep rm <blocking> <blocked> | Remove dependency |
bd sync | Sync with git remote |
bd flush | Force flush to JSONL |
bd ready --sort hybridbd update <id> --status in_progressbd dep tree <id>bd create "Sub-task" --parent <id>bd dep add <new-blocker> <id> --type blocksbd comment <id> "Progress update"bd close <id> --reason "Implemented X, PR #123"bd syncbd ready# See who's working on what
bd list --status in_progress --json | jq '.[] | {id, title, assignee}'
# Hand off work
bd update <id> --assignee other-agent
bd comment <id> "Handoff: context and next steps"
| Type | When to Use |
|---|---|
feature | New functionality |
bug | Defect fixes |
task | General work items |
spike | Research/investigation |
chore | Maintenance, cleanup |
| Priority | Meaning |
|---|---|
| 0 | Critical - Drop everything |
| 1 | High - Next up |
| 2 | Medium - Normal flow |
| 3 | Low - When time permits |
| 4 | Backlog - Future consideration |
open -> in_progress -> done
|-> blocked -> in_progress
bd sync to share state# Check daemon health
bd daemons health
# View daemon logs
bd daemons logs
# Force reimport from JSONL
bd import --force
# Check for conflicts
bd sync --dry-run