Users and agents need a simple way to submit feedback about OpenSpec directly from the CLI. Currently there's no mechanism to collect user feedback, feature requests, or bug reports in a way that enables follow-up conversation. Using GitHub Issues allows us to track feedback, prevent spam via GitHub auth, and enables outreach to users.
- Add
openspec feedback <message>CLI command - Leverage
ghCLI for GitHub authentication and issue creation - Add
/feedbackskill for agent-assisted feedback with context enrichment - Ensure cross-platform compatibility (macOS, Linux, Windows)
- Affected specs: New
cli-feedbackcapability - Affected code:
src/cli/index.ts- Register feedback commandsrc/commands/feedback.ts- Command implementation usingghCLIsrc/core/templates/skill-templates.ts- Feedback skill templatesrc/core/completions/command-registry.ts- Shell completions
- External dependency: Requires
ghCLI installed and authenticated