一键导入
beads-issue-tracker
Guide for using Beads (bd), a dependency-aware issue tracker for AI agents. Issues chained together like beads.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guide for using Beads (bd), a dependency-aware issue tracker for AI agents. Issues chained together like beads.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Systematic process for analyzing and modernizing legacy applications to comply with the 12-Factor App methodology. Covers code analysis, configuration externalization, dependency management, and container/Kubernetes best practices.
Backup and recovery solution for K3s clusters. Includes scheduled, pre-shutdown, and manual backup strategies with recovery procedures.
Configure high-availability load balancing with HAProxy and NGINX reverse proxies. Covers health checks, automatic failover, sticky sessions, and stats monitoring for containerized backends.
Deploy serverless applications on Cloudflare Workers. Covers project setup, JavaScript handler patterns, routing, deployment with Wrangler, and API token configuration. Suitable for APIs, proxies, edge computing, and request transformation.
Deploy containerized applications to AWS EC2 and expose them publicly via Cloudflare Tunnel with automatic HTTPS. Eliminates need for load balancers, SSL certificates, or public inbound ports.
A comprehensive guide for configuring and using Terrateam, an open-source GitOps CI/CD platform for Terraform and OpenTofu. Covers configuration file structure, access control, workflows, OIDC authentication, drift detection, and best practices for managing infrastructure through pull requests.
| name | beads-issue-tracker |
| description | Guide for using Beads (bd), a dependency-aware issue tracker for AI agents. Issues chained together like beads. |
| license | MIT |
| metadata | {"author":"Stakpak <team@stakpak.dev>","version":"1.0.11"} |
Issues chained together like beads. A lightweight issue tracker with first-class dependency support.
bd init # Initialize bd in your project
bd init --prefix api # Initialize with custom prefix (api-1, api-2)
bd create "Fix login bug"
bd create "Add auth" -p 0 -t feature
bd create "Write tests" -d "Unit tests for auth" --assignee alice
bd list # List all issues
bd list --status open # List by status
bd list --priority 0 # List by priority (0-4, 0=highest)
bd show bd-1 # Show issue details
bd dep add bd-1 bd-2 # Add dependency (bd-2 blocks bd-1)
bd dep tree bd-1 # Visualize dependency tree
bd dep cycles # Detect circular dependencies
Dependency Types:
blocks - Task B must complete before task Arelated - Soft connection, doesn't block progressparent-child - Epic/subtask hierarchical relationshipdiscovered-from - Auto-created when AI discovers related workbd ready # Show issues ready to work on
Ready = status is 'open' AND no blocking dependencies. Perfect for agents to claim next work!
bd update bd-1 --status in_progress
bd update bd-1 --priority 0
bd update bd-1 --assignee bob
bd close bd-1
bd close bd-2 bd-3 --reason "Fixed in PR #42"
bd automatically discovers your database:
--db /path/to/db.db flag$BEADS_DB environment variable.beads/*.db in current directory or ancestors~/.beads/default.db as fallbackbd is designed for AI-supervised workflows:
bd ready shows unblocked work ready to claim--json flags for programmatic parsingbd automatically keeps git in sync:
Disable with: --no-auto-flush or --no-auto-import