build-team
Propose and, after approval, configure a personalized team of Codex subagent roles based on the user's profile, goals, and working style.
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\".
$ npx -y skills add kbanc85/claudia --skill feedback --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/feedbackContext preview
The summary Claude sees to decide when to auto-load this skill.
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\".
name: feedback description: "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\"." effort-level: low
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.
Ask the user what kind of feedback they want to share. Keep it casual:
If they've already described it, skip this step.
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"
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 |
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: 1. The user's feedback (their words, not paraphrased) 2. 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.
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}"Tell the user:
Repository: `kbanc85/claudia`
Direct link to create a discussion: `https://github.com/kbanc85/claudia/discussions/new`
Terminal-based AI chief of staff. Remembers relationships, tracks commitments, helps you think strategically. Runs on Claude Code.
Repo: kbanc85/claudia
Propose and, after approval, configure a personalized team of Codex subagent roles based on the user's profile, goals, and working style.
Use Claudia's identity, persistent local memory, relationship context, project routing, judgment rules, and strategic operating style. Trigger for personal,…
Inspect Claudia's unified production memory database and backups. Use for database identity, health, counts, schema, WAL, backup inventory, or an explicitly…
Run Claudia's required first-conversation setup. Use automatically before substantive work whenever the current Claudia workspace has no context/me.md,…
Iteratively improve a local artifact (draft, document, page) by running a hill-climbing loop. The user names the artifact, the evaluator, and the budget.…
Launch the Brain Monitor TUI, a real-time terminal dashboard for watching Claudia's memory system. Triggers on \"brain monitor\", \"show dashboard\", \"memory…