@ramarivera/coding-buddy 0.4.0-alpha.6 → 0.4.0-alpha.7
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.
|
@@ -5,14 +5,14 @@
|
|
|
5
5
|
},
|
|
6
6
|
"metadata": {
|
|
7
7
|
"description": "Permanent coding companion for Claude Code",
|
|
8
|
-
"version": "0.4.0-alpha.
|
|
8
|
+
"version": "0.4.0-alpha.7"
|
|
9
9
|
},
|
|
10
10
|
"plugins": [
|
|
11
11
|
{
|
|
12
12
|
"name": "claude-buddy",
|
|
13
13
|
"source": "./",
|
|
14
14
|
"description": "Permanent coding companion for Claude Code \u2014 survives any update. MCP-based terminal pet with ASCII art, stats, reactions, and personality.",
|
|
15
|
-
"version": "0.4.0-alpha.
|
|
15
|
+
"version": "0.4.0-alpha.7",
|
|
16
16
|
"author": {
|
|
17
17
|
"name": "1270011"
|
|
18
18
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-buddy",
|
|
3
|
-
"version": "0.4.0-alpha.
|
|
3
|
+
"version": "0.4.0-alpha.7"
|
|
4
4
|
"description": "Permanent coding companion for Claude Code \u2014 survives any update. MCP-based terminal pet with ASCII art, stats, reactions, and personality.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "1270011"
|
package/adapters/pi/events.ts
CHANGED
|
@@ -89,11 +89,6 @@ export function registerBuddyEvents(pi: ExtensionAPI, deps: RegisterBuddyEventsD
|
|
|
89
89
|
return;
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
-
if (!shouldEmitPassiveReaction(deps.storage)) {
|
|
93
|
-
deps.ui.refresh(ctx, progress.companion, deps.storage.loadLatest(), progress.achievements);
|
|
94
|
-
return;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
92
|
const comment = await generateTurnComment(ctx, progress.companion, event);
|
|
98
93
|
if (!comment) {
|
|
99
94
|
deps.ui.refresh(ctx, progress.companion, deps.storage.loadLatest(), progress.achievements);
|