Allow users to specify a custom issue prefix when initializing beads: /bd-init myproject If no prefix is provided, defaults to current directory name (existing behavior). Changes: - Add argument-hint: [prefix] to command frontmatter - Update command description to document $1 parameter usage - Pass prefix to MCP init tool when provided The MCP init tool already supported the prefix parameter, this just exposes it through the slash command interface. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
19 lines
745 B
Markdown
19 lines
745 B
Markdown
---
|
|
description: Initialize beads in the current project
|
|
argument-hint: [prefix]
|
|
---
|
|
|
|
Initialize beads issue tracking in the current directory.
|
|
|
|
If a prefix is provided as $1, use it as the issue prefix (e.g., "myproject" creates issues like myproject-1, myproject-2). If not provided, the default is the current directory name.
|
|
|
|
Use the beads MCP `init` tool with the prefix parameter (if provided) to set up a new beads database.
|
|
|
|
After initialization:
|
|
1. Show the database location
|
|
2. Show the issue prefix that will be used
|
|
3. Explain the basic workflow (or suggest running `/bd-workflow`)
|
|
4. Suggest creating the first issue with `/bd-create`
|
|
|
|
If beads is already initialized, inform the user and show project stats using the `stats` tool.
|