govctl 0.8.4

Project governance CLI for RFC, ADR, and Work Item management
# Work Item Template
# See gov/schema/SCHEMA.md for full specification

[govctl]
schema = 1
id = "WI-YYYY-MM-DD-NNN"
title = "Work Item Title"
status = "queue"
# created = "YYYY-MM-DD"   # Auto-set on creation
# started = "YYYY-MM-DD"   # Auto-set when moved to active
# completed = "YYYY-MM-DD" # Auto-set when moved to done/cancelled
# refs = ["RFC-0001"]      # Optional cross-references

[content]
description = """
Describe the work to be done.
What is the goal? What are the acceptance criteria?
"""
notes = ""

# Add acceptance criteria as needed:
# [[content.acceptance_criteria]]
# text = "Criterion description"
# status = "pending"  # pending | done | cancelled
# category = "added"  # added | changed | deprecated | removed | fixed | security | chore (chore items excluded from changelog)
#
# CLI supports prefix parsing per ADR-0012/ADR-0013:
#   govctl add WI-xxx acceptance_criteria "fix: memory leak"
#   → creates criterion with text="memory leak", category="fixed"