Help us improve
Share bugs, ideas, or general feedback.
From woz
Submits user feedback, feature requests, or general thoughts to the WOZCODE team via a CLI tool. Useful when a user wants to share input or request features.
npx claudepluginhub withwoz/wozcode-plugin --plugin wozHow this skill is triggered — by the user, by Claude, or both
Slash command
/woz:woz-feedbackThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
TRIGGER when: user says "send feedback", "share feedback", "i wish woz", "feature request", or runs `/woz-feedback`. For broken-behavior reports prefer `/woz-bug`.
Submits a bug report to WOZCODE with session context (session ID, OS, arch, Node version). Activated by phrases like 'report a bug' or '/woz-bug'.
Collects user feedback, bug reports, feature requests, and SDLC pattern discoveries with opt-in privacy scanning.
Reviews feedback captured from Claude Code sessions, processes sessions with LLM analysis, reviews pending items, and exports to GitHub issues for Product Forge.
Share bugs, ideas, or general feedback.
TRIGGER when: user says "send feedback", "share feedback", "i wish woz", "feature request", or runs /woz-feedback. For broken-behavior reports prefer /woz-bug.
If the user already provided feedback content in their message, use it directly. If they invoked /woz-feedback with no content, ask them: "What would you like to share with the WOZCODE team?" — then wait for their reply before submitting.
Derive subject (one-line headline, ~80 chars max) and body (the full message, verbatim) from the user's words. Don't paraphrase or add boilerplate.
Submit by piping a JSON envelope to stdin. Use a single-quoted heredoc (<<'WOZ_FEEDBACK') so the shell does NO expansion — user text like $(cmd) or backticks is passed through literally and cannot execute. JSON-encode subject and body so embedded ", \\, or newlines survive:
node --no-warnings=ExperimentalWarning ${CLAUDE_PLUGIN_ROOT}/scripts/wozcode-cli.js feedback <<'WOZ_FEEDBACK'
{"subject":"<json-escaped subject>","body":"<json-escaped body>"}
WOZ_FEEDBACK
The CLI auto-attaches CLAUDE_CODE_SESSION_ID, anonymous telemetry id (unless the user opted out via WOZCODE_TELEMETRY_DISABLED=true), OS release, architecture, and Node.js runtime version. The email is auto-filled from the logged-in account.
On exit 0: tell the user "✅ Sent. Thanks." On non-zero: relay the error verbatim and mention support@withwoz.com as a fallback.