get-claudia 1.55.11 → 1.55.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  All notable changes to Claudia will be documented in this file.
4
4
 
5
+ ## 1.55.12 (2026-03-15)
6
+
7
+ - **Feedback skill** -- New `/feedback` command lets users share bugs, ideas, or suggestions. Claudia collects system context (version, OS, memory count, daemon health), builds a pre-filled GitHub Discussion URL, and opens it in the browser. The user reviews and submits. No data is sent without their knowledge.
8
+ - **GitHub Discussions enabled** -- Feedback and community discussion now live at github.com/kbanc85/claudia/discussions.
9
+ - **Installer feedback hint** -- Completion message now mentions `/feedback` and links to Discussions.
10
+
5
11
  ## 1.55.11 (2026-03-15)
6
12
 
7
13
  - **Auto-repair corrupt claudia.db** -- Installer detects when `claudia.db` is empty or corrupt (no tables, malformed disk image) and removes it along with stale WAL/SHM files so the daemon can create a fresh one. Previously, a corrupt db with leftover SHM files caused "database disk image is malformed" on every startup, blocking the daemon and preventing database consolidation.
package/bin/index.js CHANGED
@@ -1227,7 +1227,7 @@ async function main() {
1227
1227
  console.log('');
1228
1228
  console.log(` ${colors.cyan}${launchCmd}${colors.reset}`);
1229
1229
  console.log('');
1230
- console.log(` ${colors.dim}What's new: /morning-brief · /inbox-check${colors.reset}`);
1230
+ console.log(` ${colors.dim}What's new: /morning-brief · /inbox-check · /feedback${colors.reset}`);
1231
1231
  } else {
1232
1232
  // Fresh install: build anticipation for the onboarding
1233
1233
  console.log(` ${colors.cyan}Claudia is ready.${colors.reset} ${colors.dim}She's waiting to meet you.${colors.reset}`);
@@ -1240,6 +1240,7 @@ async function main() {
1240
1240
  console.log(` ${colors.dim}She'll introduce herself and learn how you work.${colors.reset}`);
1241
1241
  console.log(` ${colors.dim}Try: ${colors.reset}${colors.cyan}"Say hi"${colors.reset} ${colors.dim}·${colors.reset} ${colors.cyan}/morning-brief${colors.reset} ${colors.dim}·${colors.reset} ${colors.cyan}"Who do I know?"${colors.reset}`);
1242
1242
  }
1243
+ console.log(` ${colors.dim}Feedback? Tell Claudia, or visit github.com/kbanc85/claudia/discussions${colors.reset}`);
1243
1244
  console.log('');
1244
1245
  return;
1245
1246
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "get-claudia",
3
- "version": "1.55.11",
3
+ "version": "1.55.12",
4
4
  "description": "An AI assistant who learns how you work.",
5
5
  "keywords": [
6
6
  "claudia",
@@ -0,0 +1,118 @@
1
+ ---
2
+ name: feedback
3
+ 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".
4
+ effort-level: low
5
+ ---
6
+
7
+ # Claudia Feedback
8
+
9
+ 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.
10
+
11
+ ## Trigger Phrases
12
+
13
+ - "feedback", "give feedback", "send feedback"
14
+ - "I have a suggestion", "feature request", "idea for Claudia"
15
+ - "report a bug", "something's broken", "I found a bug"
16
+ - "how do I report an issue"
17
+
18
+ ## Process
19
+
20
+ ### Step 1: Ask What's On Their Mind
21
+
22
+ Ask the user what kind of feedback they want to share. Keep it casual:
23
+
24
+ - "What's on your mind? Bug, idea, or just general feedback?"
25
+
26
+ If they've already described it, skip this step.
27
+
28
+ ### Step 2: Gather System Context
29
+
30
+ Collect system info silently (don't show raw data to user). Run these:
31
+
32
+ ```bash
33
+ # Version
34
+ cat package.json 2>/dev/null | grep '"version"' | head -1
35
+
36
+ # OS and Node
37
+ echo "$(uname -s) $(uname -m), Node $(node -v 2>/dev/null)"
38
+
39
+ # Memory daemon health
40
+ ~/.claudia/daemon/venv/bin/python3 -m claudia_memory --preflight 2>&1 | grep "Result:" || echo "Daemon: not checked"
41
+
42
+ # Memory count
43
+ sqlite3 ~/.claudia/memory/claudia.db "SELECT COUNT(*) FROM memories WHERE invalidated_at IS NULL;" 2>/dev/null || echo "0"
44
+ ```
45
+
46
+ ### Step 3: Categorize
47
+
48
+ Map their feedback to a GitHub Discussions category:
49
+
50
+ | Feedback Type | Category |
51
+ |--------------|----------|
52
+ | Bug report | Ideas (no Bugs category by default) |
53
+ | Feature request / idea | Ideas |
54
+ | General feedback | General |
55
+ | Question | Q&A |
56
+
57
+ ### Step 4: Build the Discussion URL
58
+
59
+ Construct a pre-filled GitHub Discussion URL. The URL format:
60
+
61
+ ```
62
+ https://github.com/kbanc85/claudia/discussions/new?category={CATEGORY}&title={TITLE}&body={BODY}
63
+ ```
64
+
65
+ The body should include:
66
+ 1. The user's feedback (their words, not paraphrased)
67
+ 2. A "System Info" section at the bottom with the collected context
68
+
69
+ **Body template:**
70
+
71
+ ```
72
+ {user's feedback text}
73
+
74
+ ---
75
+
76
+ **System Info** (auto-generated by Claudia)
77
+ - Version: {version}
78
+ - OS: {os}
79
+ - Node: {node_version}
80
+ - Memories: {count}
81
+ - Daemon: {healthy/not running}
82
+ ```
83
+
84
+ URL-encode the title and body for the query string.
85
+
86
+ ### Step 5: Open in Browser
87
+
88
+ Use the Bash tool to open the URL:
89
+
90
+ ```bash
91
+ # macOS
92
+ open "{url}"
93
+
94
+ # Linux
95
+ xdg-open "{url}" 2>/dev/null || echo "Open this URL: {url}"
96
+
97
+ # Windows
98
+ start "{url}"
99
+ ```
100
+
101
+ ### Step 6: Confirm
102
+
103
+ Tell the user:
104
+ - "Opened a new discussion in your browser. Add any details and hit Submit."
105
+ - If the browser didn't open, show the URL directly so they can copy it.
106
+
107
+ ## Important
108
+
109
+ - **Never post feedback without the user's knowledge.** This opens a browser for them to review and submit.
110
+ - **Don't paraphrase their feedback.** Use their exact words in the body.
111
+ - **Keep system info minimal.** Version, OS, memory count. No sensitive data, no file paths, no personal info.
112
+ - **The user submits, not Claudia.** The browser opens a pre-filled form. The user reviews and clicks Submit.
113
+
114
+ ## GitHub Discussions URL
115
+
116
+ Repository: `kbanc85/claudia`
117
+
118
+ Direct link to create a discussion: `https://github.com/kbanc85/claudia/discussions/new`
@@ -2,6 +2,21 @@
2
2
  "$schema": "Claudia Skill Index v2",
3
3
  "description": "Progressive loading index - lightweight metadata for all skills with trigger examples for contextual matching",
4
4
  "skills": [
5
+ {
6
+ "name": "feedback",
7
+ "path": "feedback/SKILL.md",
8
+ "description": "Send feedback, ideas, or bug reports about Claudia via GitHub Discussions",
9
+ "invocation": "explicit",
10
+ "effort_level": "low",
11
+ "triggers": ["feedback", "suggestion", "bug report", "feature request", "idea", "report issue"],
12
+ "examples": [
13
+ "I have feedback",
14
+ "I want to suggest a feature",
15
+ "I found a bug",
16
+ "how do I report an issue",
17
+ "I have an idea for Claudia"
18
+ ]
19
+ },
5
20
  {
6
21
  "name": "onboarding",
7
22
  "path": "onboarding.md",