codewhale.history 2.11.11 → 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 +11 -1
- package/README.md +28 -16
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,10 +4,20 @@ All notable changes to the CodeWhale Tools Pack.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [2.11.13] — 2026-07-11
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- README: "How to use" section — cd → codewhale → TAB → //trigger
|
|
11
|
+
|
|
12
|
+
## [2.11.12] — 2026-07-11
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- README: moved AGPL notice to footer (was cluttering npm page header)
|
|
16
|
+
|
|
7
17
|
## [2.11.11] — 2026-07-11
|
|
8
18
|
|
|
9
19
|
### Added
|
|
10
|
-
- AGPL copyright headers to all source files (4 JS files, 4 SKILL.md files, README
|
|
20
|
+
- AGPL copyright headers to all source files (4 JS files, 4 SKILL.md files, instructions; README gets footer notice only)
|
|
11
21
|
|
|
12
22
|
## [2.11.10] — 2026-07-09
|
|
13
23
|
|
package/README.md
CHANGED
|
@@ -1,18 +1,3 @@
|
|
|
1
|
-
Copyright (C) 2026 Celestial Consulting Ltd
|
|
2
|
-
|
|
3
|
-
This program is free software: you can redistribute it and/or modify
|
|
4
|
-
it under the terms of the GNU Affero General Public License as
|
|
5
|
-
published by the Free Software Foundation, either version 3 of the
|
|
6
|
-
License, or (at your option) any later version.
|
|
7
|
-
|
|
8
|
-
This program is distributed in the hope that it will be useful,
|
|
9
|
-
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
10
|
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
11
|
-
GNU Affero General Public License for more details.
|
|
12
|
-
|
|
13
|
-
You should have received a copy of the GNU Affero General Public License
|
|
14
|
-
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
15
|
-
|
|
16
1
|
# CodeWhale Tools Pack
|
|
17
2
|
|
|
18
3
|
[](https://www.gnu.org/licenses/agpl-3.0)
|
|
@@ -60,6 +45,30 @@ codewhale-tools-install # current workspace
|
|
|
60
45
|
codewhale-tools-install -p <target-path> # specific workspace
|
|
61
46
|
```
|
|
62
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
|
+
|
|
63
72
|
## After install
|
|
64
73
|
|
|
65
74
|
### `//tools`
|
|
@@ -190,4 +199,7 @@ If you've enjoyed using //teach-me and want to audit your entire specification r
|
|
|
190
199
|
- [CodeWhale](https://codewhale.net/en/docs)
|
|
191
200
|
|
|
192
201
|
## Contact Developer
|
|
193
|
-
[species8472](mailto:swyuri@yahoo.com)
|
|
202
|
+
[species8472](mailto:swyuri@yahoo.com)
|
|
203
|
+
|
|
204
|
+
---
|
|
205
|
+
Copyright © 2026 Celestial Consulting Ltd. Licensed under the [GNU Affero General Public License v3.0](LICENSE).
|
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",
|