Add quoting guidance to AGENTS.md and SKILL.md
Fixes #194 - Claude Code was failing to quote titles/descriptions with special characters. Added explicit warnings and examples showing proper quoting for arguments containing spaces, apostrophes, and special chars. Amp-Thread-ID: https://ampcode.com/threads/T-0570ff80-8115-479d-b39c-dbdf2ada5215 Co-authored-by: Amp <amp@ampcode.com>
This commit is contained in:
@@ -141,6 +141,7 @@ bd stale --days 90 --status in_progress --json # Filter by status
|
||||
bd stale --limit 20 --json # Limit results
|
||||
|
||||
# Create new issue
|
||||
# IMPORTANT: Always quote titles and descriptions with double quotes
|
||||
bd create "Issue title" -t bug|feature|task -p 0-4 -d "Description" --json
|
||||
|
||||
# Create with explicit ID (for parallel workers)
|
||||
@@ -149,6 +150,10 @@ bd create "Issue title" --id worker1-100 -p 1 --json
|
||||
# Create with labels
|
||||
bd create "Issue title" -t bug -p 1 -l bug,critical --json
|
||||
|
||||
# Examples with special characters (all require quoting):
|
||||
bd create "Fix: auth doesn't validate tokens" -t bug -p 1 --json
|
||||
bd create "Add support for OAuth 2.0" -d "Implement RFC 6749 (OAuth 2.0 spec)" --json
|
||||
|
||||
# Create multiple issues from markdown file
|
||||
bd create -f feature-plan.md --json
|
||||
|
||||
|
||||
Reference in New Issue
Block a user