codewhale.history 2.11.12 → 2.11.13
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 +5 -0
- package/README.md +24 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -45,6 +45,30 @@ codewhale-tools-install # current workspace
|
|
|
45
45
|
codewhale-tools-install -p <target-path> # specific workspace
|
|
46
46
|
```
|
|
47
47
|
|
|
48
|
+
### How to use
|
|
49
|
+
|
|
50
|
+
After installation, start a CodeWhale session in your project:
|
|
51
|
+
|
|
52
|
+
1. **Navigate to your project folder** (the one with `.codewhale/instructions.md`):
|
|
53
|
+
```bash
|
|
54
|
+
cd /path/to/your/project
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
2. **Launch CodeWhale**:
|
|
58
|
+
```bash
|
|
59
|
+
codewhale
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
3. **Press TAB** to enter YOLO mode (full tool access).
|
|
63
|
+
|
|
64
|
+
4. **Type any trigger command**:
|
|
65
|
+
- `//teach-me` — interactive code quiz
|
|
66
|
+
- `//history` — list chat sessions
|
|
67
|
+
- `//tools` — list all available tools
|
|
68
|
+
- `//snapshot` — toggle pre-edit file backups
|
|
69
|
+
|
|
70
|
+
The skills were installed globally in the Install step above, so they're available in any workspace that has the `.codewhale/instructions.md` trigger file.
|
|
71
|
+
|
|
48
72
|
## After install
|
|
49
73
|
|
|
50
74
|
### `//tools`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codewhale.history",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.13",
|
|
4
4
|
"description": "CodeWhale utility commands: session history, tool listing, file snapshot, interactive code quiz — global install",
|
|
5
5
|
"bin": {
|
|
6
6
|
"codewhale-history": "./_list_sessions.js",
|