- Bump version across all components (CLI, plugin, MCP server) - Update CHANGELOG.md with comprehensive hash ID migration notes - Replace critical multi-clone warning with hash ID announcement - Add Hash-Based Issue IDs section to README with: - ID format explanation (4/5/6 char progressive scaling) - Why hash IDs solve collision issues - Birthday paradox collision probability math - Migration instructions - Update all examples to use hash IDs (bd-a1b2) instead of sequential (bd-1) Breaking changes: - Sequential ID generation removed (bd-c7af, bd-8e05, bd-4c74) - issue_counters table removed from schema - --resolve-collisions flag removed (no longer needed) Migration: Run 'bd migrate' to upgrade database schema Amp-Thread-ID: https://ampcode.com/threads/T-0b000145-350a-4dfe-a3f1-67d4d52a6717 Co-authored-by: Amp <amp@ampcode.com>
32 lines
751 B
JSON
32 lines
751 B
JSON
{
|
|
"name": "beads",
|
|
"description": "AI-supervised issue tracker for coding workflows. Manage tasks, discover work, and maintain context with simple CLI commands.",
|
|
"version": "0.20.1",
|
|
"author": {
|
|
"name": "Steve Yegge",
|
|
"url": "https://github.com/steveyegge"
|
|
},
|
|
"repository": "https://github.com/steveyegge/beads",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/steveyegge/beads",
|
|
"keywords": [
|
|
"issue-tracker",
|
|
"task-management",
|
|
"ai-workflow",
|
|
"agent-memory",
|
|
"mcp-server"
|
|
],
|
|
"mcpServers": {
|
|
"beads": {
|
|
"command": "uv",
|
|
"args": [
|
|
"--directory",
|
|
"${CLAUDE_PLUGIN_ROOT}/integrations/beads-mcp",
|
|
"run",
|
|
"beads-mcp"
|
|
],
|
|
"env": {}
|
|
}
|
|
}
|
|
}
|