🦀 ClawHub
Bolt Sprint
by @ndhill84
Manage software development sprints and stories in Bolt. Use for creating/updating stories, moving tasks through the Kanban workflow (waiting → in_progress →...
⚙️ Configuration
Set these environment variables before using this skill:
export BOLT_BASE_URL="http://localhost:4000" # Your Bolt API base URL
export BOLT_API_TOKEN="your-token-here" # Optional: only needed if server was started with BOLT_API_TOKEN
The base curl pattern for authenticated requests:
curl -s \
-H "Content-Type: application/json" \
${BOLT_API_TOKEN:+-H "x-bolt-token: $BOLT_API_TOKEN"} \
"$BOLT_BASE_URL/api/v1/..."
Check connectivity before starting:
curl -s "$BOLT_BASE_URL/health"
→ {"ok":true}
TERMINAL
clawhub install bolt-skill