claude-smart 0.1.17 โ 0.1.19
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/README.md +5 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
<img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg" alt="License">
|
|
14
14
|
</a>
|
|
15
15
|
<a href="plugin/pyproject.toml">
|
|
16
|
-
<img src="https://img.shields.io/badge/version-0.1.
|
|
16
|
+
<img src="https://img.shields.io/badge/version-0.1.19-green.svg" alt="Version">
|
|
17
17
|
</a>
|
|
18
18
|
<a href="plugin/pyproject.toml">
|
|
19
19
|
<img src="https://img.shields.io/badge/python-%3E%3D3.12-brightgreen.svg" alt="Python">
|
|
20
20
|
</a>
|
|
21
21
|
<a href="package.json">
|
|
22
|
-
<img src="https://img.shields.io/badge/node-%3E%
|
|
22
|
+
<img src="https://img.shields.io/badge/node-%3E%3D20-brightgreen.svg" alt="Node">
|
|
23
23
|
</a>
|
|
24
24
|
<a href="#quick-start">
|
|
25
25
|
<img src="https://img.shields.io/badge/llm-claude%20code%20cli-purple.svg" alt="LLM">
|
|
@@ -118,7 +118,7 @@ Developing the plugin itself? See [DEVELOPER.md](./DEVELOPER.md#developing-local
|
|
|
118
118
|
- ๐ **No external API call** โ semantic search runs on an in-process ONNX embedder (all-MiniLM-L6-v2), and all data (profiles, playbooks, interaction buffers) is stored locally on your machine (`~/.reflexio/` and `~/.claude-smart/`).
|
|
119
119
|
- ๐ **Hybrid search** โ Playbooks and profiles are indexed with vector + BM25 search for fast, robust retrieval.
|
|
120
120
|
- ๐งช **Offline resilience** โ If the reflexio backend is down, hooks buffer to disk; the next successful publish drains them.
|
|
121
|
-
- ๐งฐ **Manual correction
|
|
121
|
+
- ๐งฐ **Manual correction marker** โ `/claude-smart:learn` flags the last turn as a correction so the extractor weights it heavily.
|
|
122
122
|
|
|
123
123
|
---
|
|
124
124
|
|
|
@@ -142,7 +142,7 @@ claude-smart builds two artifacts as you work and injects them into Claude at th
|
|
|
142
142
|
|
|
143
143
|
Playbooks clean themselves up: correct the same thing twice and they merge; change your mind and the old one is archived.
|
|
144
144
|
|
|
145
|
-
Under the hood: hooks watch your turns, tool calls, and Claude's replies, auto-flagging corrections (or anything you `/
|
|
145
|
+
Under the hood: hooks watch your turns, tool calls, and Claude's replies, auto-flagging corrections (or anything you flag with `/learn`). At session end (or on `/learn`), [reflexio](https://github.com/ReflexioAI/reflexio) โ the self-improving engine that powers claude-smart โ extracts profile entries and playbook rules. Next session, both get injected into the system prompt โ run `/show` to see what Claude is being told. Everything runs on your machine.
|
|
146
146
|
|
|
147
147
|
**Citations (`cs-cite`).** At the end of a reply, Claude may run:
|
|
148
148
|
|
|
@@ -165,8 +165,7 @@ See [ARCHITECTURE.md](./ARCHITECTURE.md) for hooks, data flow, and reflexio deta
|
|
|
165
165
|
| --- | --- |
|
|
166
166
|
| `/dashboard` | Open the dashboard in your browser, auto-starting the reflexio backend and dashboard services if they aren't already running. |
|
|
167
167
|
| `/show` | Print the current (global) playbook plus the current project's user profiles (same markdown that `SessionStart` injects). Use it to audit what playbooks and preferences Claude is being told to follow. |
|
|
168
|
-
| `/learn` |
|
|
169
|
-
| `/tag [note]` | Tag the most recent turn as a correction, for cases the automatic heuristic missed. The note becomes the correction description the extractor sees. |
|
|
168
|
+
| `/learn [note]` | Flag the most recent turn as a correction (for cases the automatic heuristic missed) and force reflexio to run extraction *now* on the session's unpublished interactions. The optional note becomes the correction description the extractor sees. |
|
|
170
169
|
| `/restart` | Restart the reflexio backend and dashboard to pick up new changes (e.g. after upgrading the plugin or editing local reflexio code). |
|
|
171
170
|
| `/clear-all` | **Destructive.** Delete *all* reflexio interactions, profiles, and user playbooks. Use when you want to wipe learned state and start fresh. |
|
|
172
171
|
|