@suwujs/codex-vault 0.4.0 → 0.4.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@suwujs/codex-vault",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Persistent knowledge vault for LLM agents (Claude Code, Codex CLI)",
5
5
  "license": "MIT",
6
6
  "repository": {
package/plugin/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.0
1
+ 0.4.1
@@ -277,6 +277,15 @@ def main():
277
277
  json.dump(output, sys.stdout)
278
278
  sys.stdout.flush()
279
279
 
280
+ # Visible feedback to user terminal (stderr)
281
+ names = [s["name"] for s in SIGNALS if _match(s["patterns"], prompt.lower())]
282
+ if is_session_end(prompt):
283
+ names.append("SESSION END")
284
+ if names:
285
+ label = " + ".join(names)
286
+ icon = "🔄" if mode == "auto" else "💡"
287
+ print(f" {icon} vault: {label} detected", file=sys.stderr)
288
+
280
289
  sys.exit(0)
281
290
 
282
291
 
@@ -103,6 +103,10 @@ def main():
103
103
  json.dump(output, sys.stdout)
104
104
  sys.stdout.flush()
105
105
 
106
+ # Visible feedback to user terminal (stderr)
107
+ count = len(warnings)
108
+ print(f" ⚠️ vault: {count} warning(s) in {basename}", file=sys.stderr)
109
+
106
110
  sys.exit(0)
107
111
 
108
112
 
@@ -277,6 +277,15 @@ def main():
277
277
  json.dump(output, sys.stdout)
278
278
  sys.stdout.flush()
279
279
 
280
+ # Visible feedback to user terminal (stderr)
281
+ names = [s["name"] for s in SIGNALS if _match(s["patterns"], prompt.lower())]
282
+ if is_session_end(prompt):
283
+ names.append("SESSION END")
284
+ if names:
285
+ label = " + ".join(names)
286
+ icon = "🔄" if mode == "auto" else "💡"
287
+ print(f" {icon} vault: {label} detected", file=sys.stderr)
288
+
280
289
  sys.exit(0)
281
290
 
282
291
 
@@ -103,6 +103,10 @@ def main():
103
103
  json.dump(output, sys.stdout)
104
104
  sys.stdout.flush()
105
105
 
106
+ # Visible feedback to user terminal (stderr)
107
+ count = len(warnings)
108
+ print(f" ⚠️ vault: {count} warning(s) in {basename}", file=sys.stderr)
109
+
106
110
  sys.exit(0)
107
111
 
108
112