bacio tag
Tags are free-form string labels on issues — used for filtering and visual grouping. Case-sensitive (WIP ≠ wip), no internal whitespace, no fixed vocabulary. Invent tags as you need them.
Subcommands
| Subcommand | What it does |
|---|---|
bacio tag add <KEY> <tag> [<tag>...] | Add one or more tags. Idempotent — adding the same tag twice is a no-op. |
bacio tag rm <KEY> <tag> [<tag>...] | Remove one or more tags. |
For setting at creation, use the --tag flag on bacio issue add (repeatable). For filtering, use --tag on bacio issue list (repeatable, multiple tags AND-combine).
Worked examples
bash
# Tag at creation
bacio issue add "Login broken" --tag bug --tag backend --tag P0
# Add / remove after the fact
bacio tag add MINI-42 needs-design
bacio tag rm MINI-42 needs-design
# Filter (AND semantics — bugs that are also P0)
bacio issue list --tag bug --tag P0Validation
- Single line. No internal whitespace, no control characters.
- Length cap: 80 chars.
- Case-sensitive —
WIP,wip, andWipare three different tags.
See also
bacio issue—--tagonaddandlist.- Find things fast — using tags as a filter dimension.
