> ## Documentation Index
> Fetch the complete documentation index at: https://beads.gascity.com/llms.txt
> Use this file to discover all available pages before exploring further.

# bd q

> Quick capture: create issue and output only ID

Generated from `bd help --doc q`.

Quick capture creates an issue and outputs only the issue ID.
Designed for scripting and AI agent integration.

Example:
bd q "Fix login bug"           # Outputs: bd-a1b2
ISSUE=\$(bd q "New feature")    # Capture ID in variable
bd q "Task" | xargs bd show    # Pipe to other commands
bd q "Subtask" --parent=bd-a1b2  # Hierarchical child (outputs: bd-a1b2.1)

```
bd q [title] [flags]
```

**Flags:**

```
  -l, --labels strings    Labels
      --parent string     Parent issue ID for hierarchical child (e.g., 'bd-a3f8e9')
  -p, --priority string   Priority (0-4 or P0-P4) (default "2")
  -t, --type string       Issue type (default "task")
```
