Overview
Thesd issues command provides dependency-aware issue tracking. This reference covers all available commands and options.
Initialization
sd issues init
Initialize issue tracking in a project directory.| Option | Description |
|---|---|
--prefix | Issue ID prefix (default: directory name) |
--db | Database file location |
--force | Overwrite existing initialization |
Creating Issues
sd issues create
Create a new issue.| Option | Short | Description |
|---|---|---|
--priority | -p | Priority level (0-4) |
--type | -t | Issue type |
--description | -d | Detailed description |
--assignee | User to assign | |
--labels | -l | Comma-separated labels |
--due | Due date (YYYY-MM-DD) | |
--json | Output JSON |
Viewing Issues
sd issues list
List issues with filtering.sd issues show
Show detailed issue information.sd issues search
Search issues by text.sd issues ready
Show issues ready to work on (open + no blockers).sd issues blocked
Show blocked issues.sd issues stale
Show stale issues (no recent updates).Managing Dependencies
sd issues dep add
Add a dependency between issues.sd issues dep remove
Remove a dependency.sd issues dep tree
Visualize dependency tree.| Option | Description |
|---|---|
--depth | Maximum tree depth |
--format | Output format: tree, json, mermaid |
Updating Issues
sd issues update
Update issue fields.| Option | Description |
|---|---|
--status | Status: open, in_progress, blocked, closed |
--priority | Priority: 0-4 |
--assignee | Assignee username |
--title | New title |
--description | New description |
--due | Due date |
sd issues label
Manage issue labels.sd issues comment
Add comments to issues.Closing Issues
sd issues close
Close one or more issues.sd issues reopen
Reopen a closed issue.Synchronization
sd issues sync
Synchronize database with Git.sd issues daemon
Manage the sync daemon.Database Management
sd issues doctor
Check installation health.sd issues validate
Run comprehensive database checks.sd issues migrate
Migrate database to current schema version.sd issues cleanup
Clean up old data.sd issues compact
Compact database (remove tombstones).Import/Export
sd issues export
Export issues to file.sd issues import
Import issues from file.Configuration
sd issues config
Manage configuration.| Key | Description |
|---|---|
sync-branch | Git branch for issue data |
jira.url | Jira instance URL |
jira.project | Jira project key |
status.custom | Custom status values |
Advanced
sd issues prime
Get AI-optimized workflow context.sd issues view
Access the issue viewer for advanced analytics.sd issues hooks
Manage Git hooks.Global Options
Available on all commands:| Option | Description |
|---|---|
--db PATH | Database file path |
--json | JSON output format |
--quiet | Suppress non-essential output |
--verbose | Detailed output |
--help | Show help |
Environment Variables
| Variable | Description |
|---|---|
STARDUST_ISSUES_DB | Default database path |
STARDUST_ISSUES_PREFIX | Default issue prefix |
STARDUST_ISSUES_SYNC_BRANCH | Sync branch name |
