Agent skill
feedback
Send feedback, ideas, or bug reports about Claudia. Opens a pre-filled GitHub Discussion with system context. Use when user says "feedback", "suggestion", "report a bug", "feature request", or "I have an idea".
Install this agent skill to your Project
npx add-skill https://github.com/kbanc85/claudia/tree/main/template-v2/.claude/skills/feedback
SKILL.md
Claudia Feedback
Help users share feedback, ideas, bug reports, or feature requests about Claudia. Opens a GitHub Discussion with auto-populated system info so the user just writes their message.
Trigger Phrases
- "feedback", "give feedback", "send feedback"
- "I have a suggestion", "feature request", "idea for Claudia"
- "report a bug", "something's broken", "I found a bug"
- "how do I report an issue"
Process
Step 1: Ask What's On Their Mind
Ask the user what kind of feedback they want to share. Keep it casual:
- "What's on your mind? Bug, idea, or just general feedback?"
If they've already described it, skip this step.
Step 2: Gather System Context
Collect system info silently (don't show raw data to user). Run these:
# Version
cat package.json 2>/dev/null | grep '"version"' | head -1
# OS and Node
echo "$(uname -s) $(uname -m), Node $(node -v 2>/dev/null)"
# Memory daemon health
~/.claudia/daemon/venv/bin/python3 -m claudia_memory --preflight 2>&1 | grep "Result:" || echo "Daemon: not checked"
# Memory count
sqlite3 ~/.claudia/memory/claudia.db "SELECT COUNT(*) FROM memories WHERE invalidated_at IS NULL;" 2>/dev/null || echo "0"
Step 3: Categorize
Map their feedback to a GitHub Discussions category:
| Feedback Type | Category |
|---|---|
| Bug report | Ideas (no Bugs category by default) |
| Feature request / idea | Ideas |
| General feedback | General |
| Question | Q&A |
Step 4: Build the Discussion URL
Construct a pre-filled GitHub Discussion URL. The URL format:
https://github.com/kbanc85/claudia/discussions/new?category={CATEGORY}&title={TITLE}&body={BODY}
The body should include:
- The user's feedback (their words, not paraphrased)
- A "System Info" section at the bottom with the collected context
Body template:
{user's feedback text}
---
**System Info** (auto-generated by Claudia)
- Version: {version}
- OS: {os}
- Node: {node_version}
- Memories: {count}
- Daemon: {healthy/not running}
URL-encode the title and body for the query string.
Step 5: Open in Browser
Use the Bash tool to open the URL:
# macOS
open "{url}"
# Linux
xdg-open "{url}" 2>/dev/null || echo "Open this URL: {url}"
# Windows
start "{url}"
Step 6: Confirm
Tell the user:
- "Opened a new discussion in your browser. Add any details and hit Submit."
- If the browser didn't open, show the URL directly so they can copy it.
Important
- Never post feedback without the user's knowledge. This opens a browser for them to review and submit.
- Don't paraphrase their feedback. Use their exact words in the body.
- Keep system info minimal. Version, OS, memory count. No sensitive data, no file paths, no personal info.
- The user submits, not Claudia. The browser opens a pre-filled form. The user reviews and clicks Submit.
GitHub Discussions URL
Repository: kbanc85/claudia
Direct link to create a discussion: https://github.com/kbanc85/claudia/discussions/new
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
map-connections
Scan context files to extract entities and relationships into the memory system. Triggers on "who knows who?", "network graph", "map my connections", "extract relationships".
inbox-check
Lightweight inbox triage across all configured email accounts. Dispatches fast subagent to fetch, then reviews with judgment. Use when user says "check my inbox", "any new emails?", "check email".
growth-check
Periodic reflection on development, skills, learning, and progress toward goals. Triggers on "am I growing?", "development check", "personal growth review".
draft-reply
Draft an email response with tone matching the relationship context. Shows draft for approval before sending. Use when user says "draft a reply", "respond to this email", "write a response to [person]", or shares an email and asks for help replying.
brain
Launch the Brain Visualizer, a real-time 3D view of memory and relationships. Triggers on "show your brain", "visualize memory", "open the brain", "memory graph".
new-person
Create a relationship tracking file for a person with contact info, history, and communication preferences. Use when user says "new person", "add [name]", "create a file for [name]", "track this person", or mentions someone important who doesn't have a file yet.
Didn't find tool you were looking for?