Files
beads/.claude-plugin/plugin.json
Steve Yegge c0f1044d42 fix: Sync all component versions to 0.9.2
Fixes version inconsistencies across the project. All components now at 0.9.2:

Updated:
- .claude-plugin/plugin.json: 0.9.0 → 0.9.2
- .claude-plugin/marketplace.json: 0.9.0 → 0.9.2
- integrations/beads-mcp/pyproject.toml: 1.0.0 → 0.9.2
- README.md: v0.9.0 → v0.9.2
- PLUGIN.md: Updated version requirements

Root cause: Previous version bumps (0.9.0 → 0.9.1 → 0.9.2) only updated
cmd/bd/version.go, leaving other components out of sync.

The MCP server was initially versioned at 1.0.0 when added today, but
syncing to 0.9.2 for consistency since the project is still in alpha.

Closes bd-66

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-14 13:42:37 -07:00

41 lines
897 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.9.2",
"author": {
"name": "Steve Yegge",
"url": "https://github.com/steveyegge"
},
"repository": {
"type": "git",
"url": "https://github.com/steveyegge/beads"
},
"license": "MIT",
"homepage": "https://github.com/steveyegge/beads",
"keywords": [
"issue-tracker",
"task-management",
"ai-workflow",
"agent-memory",
"mcp-server"
],
"engines": {
"beads": ">=0.9.0"
},
"mcpServers": {
"beads": {
"command": "uv",
"args": [
"--directory",
"${CLAUDE_PLUGIN_ROOT}/integrations/beads-mcp",
"run",
"beads-mcp"
],
"env": {
"BEADS_PATH": "bd",
"BEADS_ACTOR": "${USER}"
}
}
}
}