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