codewhale.history 2.11.4 → 2.11.6

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.
@@ -11,3 +11,6 @@ When the user types `//snapshot`, immediately load the `snapshot` skill (from `s
11
11
 
12
12
  ## //teach-me Command
13
13
  When the user types `//teach-me` (or any trigger phrase from the teach-me skill, including `teach me`, `quiz me`, `test my knowledge`, `code quiz`, `drill me`), immediately load the `teach-me` skill (from `teach-me/SKILL.md`) and start an interactive code-teaching quiz. Supports optional modifiers: `teach me <language>`, `teach me level N`, `teach me <file/module>`. This works in all sessions once the skill is installed globally.
14
+
15
+ ## //spec-analysis Command
16
+ When the user types `//spec-analysis` (or any trigger phrase from the spec-analysis skill, including `/spec-analysis`, `spec analysis`, `readiness check`, `requirements readiness`), immediately load the `spec-analysis` skill (from `spec-analysis/SKILL.md`) and perform a batch read-only analysis combining spec-to-code traceability with BA documentation quality gate assessment. No interactive quiz — analysis and report only. Supports optional temperature gauge: `//spec-analysis 1` through `//spec-analysis 5`, and optional file/directory scope: `//spec-analysis <file-or-dir>`. This works in all sessions once the skill is installed globally.
package/CHANGELOG.md CHANGED
@@ -1,167 +1,177 @@
1
- # Changelog
2
-
3
- All notable changes to the CodeWhale Tools Pack.
4
-
5
- ---
6
-
7
- ## [2.11.3] — 2026-06-24
8
-
9
- ### Added
10
- - AGPLv3 license (repo root + package directory)
11
- - DCO-based CONTRIBUTING.md with sign-off rules
12
-
13
- ### Changed
14
- - README: AGPLv3 license badge
15
-
16
- ## [2.11.2] — 2026-06-24
17
-
18
- ### Fixed
19
- - README: move update instructions after install command
20
-
21
- ## [2.11.1] 2026-06-24
22
-
23
- ### Added
24
- - README: update instructions for existing installations
25
-
26
- ## [2.11.0] — 2026-06-24
27
-
28
- ### Added
29
- - **BA-Gates theme** document quality analysis for business analysts
30
- - Loop continuation fix in interactive mode
31
-
32
- ## [2.10.1] — 2026-06-23
33
-
34
- ### Added
35
- - README: Spec theme description — spec-to-code correlation
36
-
37
- ## [2.10.0] — 2026-06-23
38
-
39
- ### Added
40
- - **Spec theme** spec-to-code traceability via Office documents
41
- - `codewhale-doc-extract` global binary for Office document extraction
42
-
43
- ## [2.9.3] — 2026-06-23
44
-
45
- ### Changed
46
- - README: removed redundant SOLID subsection (covered by trigger table)
47
-
48
- ## [2.9.2] — 2026-06-23
49
-
50
- ### Changed
51
- - **Restructured `//teach-me`** into two orthogonal dimensions:
52
- - **Response modes**: passive, interactive, SOLID
53
- - **Content themes**: general, decorators, async, generators, SOLID, spec, ba-gates
54
-
55
- ## [2.9.1] — 2026-06-23
56
-
57
- ### Added
58
- - README: SOLID mode trigger table and how-it-works section
59
-
60
- ## [2.9.0] — 2026-06-23
61
-
62
- ### Added
63
- - **SOLID mode** anti-pattern reconstruction for teaching design principles
64
-
65
- ## [2.8.13] — 2026-06-22
66
-
67
- ### Added
68
- - README: Contact Developer section
69
-
70
- ## [2.8.12] — 2026-06-21
71
-
72
- ### Added
73
- - README: CodeWhale URL link
74
-
75
- ## [2.8.11] — 2026-06-21
76
-
77
- ### Changed
78
- - `//teach-me`: restore files with `git checkout` for byte-perfect reset after interactive rounds
79
-
80
- ## [2.8.10] — 2026-06-21
81
-
82
- ### Changed
83
- - `//teach-me`: use Skip thinking depth in interactive selection
84
- - Acknowledged `edit_file` transparency in interactive mode
85
-
86
- ## [2.8.9] — 2026-06-21
87
-
88
- ### Changed
89
- - `//teach-me`: suppress thinking during interactive selection/removal to avoid spoilers
90
-
91
- ## [2.8.8] — 2026-06-21
92
-
93
- ### Added
94
- - `//teach-me`: **interactive (reconstruction) mode** user edits files live to reconstruct missing code, alongside existing passive quiz mode
95
-
96
- ## [2.8.7] — 2026-06-21
97
-
98
- ### Changed
99
- - `//teach-me`: mandate file re-read before each round for ground-truth accuracy
100
-
101
- ## [2.8.6] — 2026-06-21
102
-
103
- ### Changed
104
- - README: simplified install commandpostinstall handles the second step
105
-
106
- ## [2.8.5] — 2026-06-21
107
-
108
- ### Fixed
109
- - Postinstall: use `INIT_CWD` instead of `cwd` for correct workspace detection
110
-
111
- ## [2.8.4] — 2026-06-21
112
-
113
- ### Added
114
- - `postinstall` script to auto-run `codewhale-tools-install`
115
-
116
- ## [2.8.3] — 2026-06-21
117
-
118
- ### Added
119
- - `//tools` now displays README in-session as help text
120
-
121
- ## [2.8.2] — 2026-06-21
122
-
123
- ### Added
124
- - README: expanded After Install section with `//history`, `//snapshot`, `//teach-me` details
125
-
126
- ## [2.8.1] — 2026-06-21
127
-
128
- ### Added
129
- - `//teach-me`: targeted concept drills — `teach me decorators`, `teach me async`, `teach me generators`, etc.
130
-
131
- ## [2.8.0] — 2026-06-21
132
-
133
- ### Added
134
- - **`//teach-me` command** interactive code quiz that selects random snippets from the current project and quizzes on application logic, language semantics, and documentation quality
135
- - Trigger configuration in instructions.md
136
- - Skill installation wiring in tools-install.js
137
-
138
- ## [2.7.0] — 2026-06-20
139
-
140
- ### Fixed
141
- - `//snapshot`: removed stale note overwrite step (notes are session-cached)
142
-
143
- ## [2.6.0] — 2026-06-20
144
-
145
- ### Changed
146
- - `//snapshot on` now overwrites stale caching notes with timestamp convention
147
-
148
- ## [2.5.0] — 2026-06-20
149
-
150
- ### Added
151
- - **`//snapshot` command** pre-edit file backups with timestamp naming, cross-platform, with retry
152
-
153
- ## [2.0.0] — 2026-06-19
154
-
155
- ### Changed
156
- - Cleaned up installer; code published to npmjs
157
- - Installs into global npm `node_modules/`
158
- - Instructions appended to existing `instructions.md` (no longer replaced)
159
-
160
- ## [1.0.0] — 2026-06-19
161
-
162
- ### Added
163
- - Initial release
164
- - `//tools` — lists all available CodeWhale tools
165
- - `//history` — lists CodeWhale chat sessions with message count, tokens, and cost
166
- - Cross-platform installer (`tools-install.js`)
167
- - Global npm package `codewhale.history`
1
+ # Changelog
2
+
3
+ All notable changes to the CodeWhale Tools Pack.
4
+
5
+ ---
6
+
7
+ ## [2.11.6] — 2026-07-06
8
+
9
+ ### Added
10
+ - README: "Want to take this further" section — promotes //spec-analysis product
11
+
12
+ ## [2.11.5] — 2026-07-06
13
+
14
+ ### Added
15
+ - README: "Want to take this further" section — promotes //spec-analysis product
16
+
17
+ ## [2.11.3] — 2026-06-24
18
+
19
+ ### Added
20
+ - AGPLv3 license (repo root + package directory)
21
+ - DCO-based CONTRIBUTING.md with sign-off rules
22
+
23
+ ### Changed
24
+ - README: AGPLv3 license badge
25
+
26
+ ## [2.11.2] — 2026-06-24
27
+
28
+ ### Fixed
29
+ - README: move update instructions after install command
30
+
31
+ ## [2.11.1] — 2026-06-24
32
+
33
+ ### Added
34
+ - README: update instructions for existing installations
35
+
36
+ ## [2.11.0] — 2026-06-24
37
+
38
+ ### Added
39
+ - **BA-Gates theme** — document quality analysis for business analysts
40
+ - Loop continuation fix in interactive mode
41
+
42
+ ## [2.10.1] — 2026-06-23
43
+
44
+ ### Added
45
+ - README: Spec theme description — spec-to-code correlation
46
+
47
+ ## [2.10.0] — 2026-06-23
48
+
49
+ ### Added
50
+ - **Spec theme** — spec-to-code traceability via Office documents
51
+ - `codewhale-doc-extract` global binary for Office document extraction
52
+
53
+ ## [2.9.3] 2026-06-23
54
+
55
+ ### Changed
56
+ - README: removed redundant SOLID subsection (covered by trigger table)
57
+
58
+ ## [2.9.2] 2026-06-23
59
+
60
+ ### Changed
61
+ - **Restructured `//teach-me`** into two orthogonal dimensions:
62
+ - **Response modes**: passive, interactive, SOLID
63
+ - **Content themes**: general, decorators, async, generators, SOLID, spec, ba-gates
64
+
65
+ ## [2.9.1] — 2026-06-23
66
+
67
+ ### Added
68
+ - README: SOLID mode trigger table and how-it-works section
69
+
70
+ ## [2.9.0] — 2026-06-23
71
+
72
+ ### Added
73
+ - **SOLID mode** anti-pattern reconstruction for teaching design principles
74
+
75
+ ## [2.8.13] — 2026-06-22
76
+
77
+ ### Added
78
+ - README: Contact Developer section
79
+
80
+ ## [2.8.12] — 2026-06-21
81
+
82
+ ### Added
83
+ - README: CodeWhale URL link
84
+
85
+ ## [2.8.11] — 2026-06-21
86
+
87
+ ### Changed
88
+ - `//teach-me`: restore files with `git checkout` for byte-perfect reset after interactive rounds
89
+
90
+ ## [2.8.10] — 2026-06-21
91
+
92
+ ### Changed
93
+ - `//teach-me`: use Skip thinking depth in interactive selection
94
+ - Acknowledged `edit_file` transparency in interactive mode
95
+
96
+ ## [2.8.9] — 2026-06-21
97
+
98
+ ### Changed
99
+ - `//teach-me`: suppress thinking during interactive selection/removal to avoid spoilers
100
+
101
+ ## [2.8.8] — 2026-06-21
102
+
103
+ ### Added
104
+ - `//teach-me`: **interactive (reconstruction) mode**user edits files live to reconstruct missing code, alongside existing passive quiz mode
105
+
106
+ ## [2.8.7] — 2026-06-21
107
+
108
+ ### Changed
109
+ - `//teach-me`: mandate file re-read before each round for ground-truth accuracy
110
+
111
+ ## [2.8.6] — 2026-06-21
112
+
113
+ ### Changed
114
+ - README: simplified install command — postinstall handles the second step
115
+
116
+ ## [2.8.5] — 2026-06-21
117
+
118
+ ### Fixed
119
+ - Postinstall: use `INIT_CWD` instead of `cwd` for correct workspace detection
120
+
121
+ ## [2.8.4] — 2026-06-21
122
+
123
+ ### Added
124
+ - `postinstall` script to auto-run `codewhale-tools-install`
125
+
126
+ ## [2.8.3] — 2026-06-21
127
+
128
+ ### Added
129
+ - `//tools` now displays README in-session as help text
130
+
131
+ ## [2.8.2] — 2026-06-21
132
+
133
+ ### Added
134
+ - README: expanded After Install section with `//history`, `//snapshot`, `//teach-me` details
135
+
136
+ ## [2.8.1] 2026-06-21
137
+
138
+ ### Added
139
+ - `//teach-me`: targeted concept drills — `teach me decorators`, `teach me async`, `teach me generators`, etc.
140
+
141
+ ## [2.8.0] 2026-06-21
142
+
143
+ ### Added
144
+ - **`//teach-me` command** — interactive code quiz that selects random snippets from the current project and quizzes on application logic, language semantics, and documentation quality
145
+ - Trigger configuration in instructions.md
146
+ - Skill installation wiring in tools-install.js
147
+
148
+ ## [2.7.0] — 2026-06-20
149
+
150
+ ### Fixed
151
+ - `//snapshot`: removed stale note overwrite step (notes are session-cached)
152
+
153
+ ## [2.6.0] — 2026-06-20
154
+
155
+ ### Changed
156
+ - `//snapshot on` now overwrites stale caching notes with timestamp convention
157
+
158
+ ## [2.5.0] 2026-06-20
159
+
160
+ ### Added
161
+ - **`//snapshot` command** — pre-edit file backups with timestamp naming, cross-platform, with retry
162
+
163
+ ## [2.0.0] — 2026-06-19
164
+
165
+ ### Changed
166
+ - Cleaned up installer; code published to npmjs
167
+ - Installs into global npm `node_modules/`
168
+ - Instructions appended to existing `instructions.md` (no longer replaced)
169
+
170
+ ## [1.0.0] — 2026-06-19
171
+
172
+ ### Added
173
+ - Initial release
174
+ - `//tools` — lists all available CodeWhale tools
175
+ - `//history` — lists CodeWhale chat sessions with message count, tokens, and cost
176
+ - Cross-platform installer (`tools-install.js`)
177
+ - Global npm package `codewhale.history`