copilot.tools 1.0.0
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 +255 -0
- package/LICENSE +660 -0
- package/README.md +268 -0
- package/_extract_office.js +175 -0
- package/_list_sessions.js +206 -0
- package/package.json +24 -0
- package/skills/history/SKILL.md +46 -0
- package/skills/snapshot/SKILL.md +74 -0
- package/skills/teach-me/SKILL.md +1188 -0
- package/skills/tools/tools-skill/SKILL.md +38 -0
- package/tools-install.js +104 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this package.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## [3.0.0] — 2026-07-13
|
|
8
|
+
|
|
9
|
+
### ⚠️ BREAKING CHANGES
|
|
10
|
+
- **Migration to GitHub Copilot**: This version is a complete rewrite to support GitHub Copilot instead of CodeWhale. CodeWhale users should stay on version 2.x.
|
|
11
|
+
- **Package renamed**: `codewhale.history` → `copilot.history`
|
|
12
|
+
- **Installation model changed**: No longer per-workspace. Skills are now installed globally to `~/.copilot/skills/` and auto-discovered by Copilot.
|
|
13
|
+
- **Trigger syntax changed**: `//tools`, `//history`, etc. → `/tools`, `/history`, etc.
|
|
14
|
+
- **No workspace `.codewhale/` directory**: Copilot auto-discovers skills globally; no per-workspace setup needed.
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
- `/history` now queries Copilot's native SQLite session database (`~/.vscode/extensions/github.copilot-chat/session-store.db`) instead of workspace sessions
|
|
18
|
+
- All SKILL.md frontmatter updated for Copilot compatibility
|
|
19
|
+
- `tools-install.js` completely rewritten: targets `~/.copilot/skills/`, simplified workflow
|
|
20
|
+
- README rewritten with Copilot-specific installation and usage instructions
|
|
21
|
+
- All documentation updated to use `/` command syntax
|
|
22
|
+
|
|
23
|
+
### Removed
|
|
24
|
+
- `.codewhale/` directory and workspace-specific instructions
|
|
25
|
+
- Per-workspace installer mode (`-p` flag)
|
|
26
|
+
- CodeWhale-specific configuration
|
|
27
|
+
|
|
28
|
+
### Requirements
|
|
29
|
+
- VS Code + GitHub Copilot extension (instead of CodeWhale CLI)
|
|
30
|
+
- Node.js ≥14 (unchanged)
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## [2.11.15] — 2026-07-11
|
|
35
|
+
|
|
36
|
+
### Added
|
|
37
|
+
- README: requirements list now includes LLM API key prerequisite
|
|
38
|
+
|
|
39
|
+
## [2.11.14] — 2026-07-11
|
|
40
|
+
|
|
41
|
+
### Fixed
|
|
42
|
+
- README: trigger table and theme modifiers now show both spec↔code directions (was only showing spec→code)
|
|
43
|
+
|
|
44
|
+
## [2.11.13] — 2026-07-11
|
|
45
|
+
|
|
46
|
+
### Added
|
|
47
|
+
- README: "How to use" section — cd → codewhale → TAB → //trigger
|
|
48
|
+
|
|
49
|
+
## [2.11.12] — 2026-07-11
|
|
50
|
+
|
|
51
|
+
### Fixed
|
|
52
|
+
- README: moved AGPL notice to footer (was cluttering npm page header)
|
|
53
|
+
|
|
54
|
+
## [2.11.11] — 2026-07-11
|
|
55
|
+
|
|
56
|
+
### Added
|
|
57
|
+
- AGPL copyright headers to all source files (4 JS files, 4 SKILL.md files, instructions; README gets footer notice only)
|
|
58
|
+
|
|
59
|
+
## [2.11.10] — 2026-07-09
|
|
60
|
+
|
|
61
|
+
### Changed
|
|
62
|
+
- README: clarified install instructions — navigate to your project folder first
|
|
63
|
+
|
|
64
|
+
## [2.11.9] — 2026-07-07
|
|
65
|
+
|
|
66
|
+
### Removed
|
|
67
|
+
- README image (npm doesn't render local files)
|
|
68
|
+
- teach_me-overview.png from npm package (files array)
|
|
69
|
+
- tools-install.js: removed diagram copy step and verification
|
|
70
|
+
|
|
71
|
+
## [2.11.8] — 2026-07-07
|
|
72
|
+
|
|
73
|
+
### Changed
|
|
74
|
+
- Moved diagram to package root: teach_me-overview.png
|
|
75
|
+
- package.json: images/ → teach_me-overview.png in files array
|
|
76
|
+
- tools-install.js: copy diagram directly to ~/.codewhale/
|
|
77
|
+
|
|
78
|
+
## [2.11.7] — 2026-07-07
|
|
79
|
+
|
|
80
|
+
### Added
|
|
81
|
+
- README: teach-me workflow diagram (images/teach_me-overview.png)
|
|
82
|
+
- package.json: include images/ in "files" array for npm publish
|
|
83
|
+
- tools-install.js: copy images to ~/.codewhale/images/ on install
|
|
84
|
+
|
|
85
|
+
## [2.11.6] — 2026-07-06
|
|
86
|
+
|
|
87
|
+
### Added
|
|
88
|
+
- README: "Want to take this further" section — promotes //spec-analysis product
|
|
89
|
+
|
|
90
|
+
## [2.11.5] — 2026-07-06
|
|
91
|
+
|
|
92
|
+
### Added
|
|
93
|
+
- README: "Want to take this further" section — promotes //spec-analysis product
|
|
94
|
+
|
|
95
|
+
## [2.11.3] — 2026-06-24
|
|
96
|
+
|
|
97
|
+
### Added
|
|
98
|
+
- AGPLv3 license (repo root + package directory)
|
|
99
|
+
- DCO-based CONTRIBUTING.md with sign-off rules
|
|
100
|
+
|
|
101
|
+
### Changed
|
|
102
|
+
- README: AGPLv3 license badge
|
|
103
|
+
|
|
104
|
+
## [2.11.2] — 2026-06-24
|
|
105
|
+
|
|
106
|
+
### Fixed
|
|
107
|
+
- README: move update instructions after install command
|
|
108
|
+
|
|
109
|
+
## [2.11.1] — 2026-06-24
|
|
110
|
+
|
|
111
|
+
### Added
|
|
112
|
+
- README: update instructions for existing installations
|
|
113
|
+
|
|
114
|
+
## [2.11.0] — 2026-06-24
|
|
115
|
+
|
|
116
|
+
### Added
|
|
117
|
+
- **BA-Gates theme** — document quality analysis for business analysts
|
|
118
|
+
- Loop continuation fix in interactive mode
|
|
119
|
+
|
|
120
|
+
## [2.10.1] — 2026-06-23
|
|
121
|
+
|
|
122
|
+
### Added
|
|
123
|
+
- README: Spec theme description — spec-to-code correlation
|
|
124
|
+
|
|
125
|
+
## [2.10.0] — 2026-06-23
|
|
126
|
+
|
|
127
|
+
### Added
|
|
128
|
+
- **Spec theme** — spec-to-code traceability via Office documents
|
|
129
|
+
- `codewhale-doc-extract` global binary for Office document extraction
|
|
130
|
+
|
|
131
|
+
## [2.9.3] — 2026-06-23
|
|
132
|
+
|
|
133
|
+
### Changed
|
|
134
|
+
- README: removed redundant SOLID subsection (covered by trigger table)
|
|
135
|
+
|
|
136
|
+
## [2.9.2] — 2026-06-23
|
|
137
|
+
|
|
138
|
+
### Changed
|
|
139
|
+
- **Restructured `//teach-me`** into two orthogonal dimensions:
|
|
140
|
+
- **Response modes**: passive, interactive, SOLID
|
|
141
|
+
- **Content themes**: general, decorators, async, generators, SOLID, spec, ba-gates
|
|
142
|
+
|
|
143
|
+
## [2.9.1] — 2026-06-23
|
|
144
|
+
|
|
145
|
+
### Added
|
|
146
|
+
- README: SOLID mode trigger table and how-it-works section
|
|
147
|
+
|
|
148
|
+
## [2.9.0] — 2026-06-23
|
|
149
|
+
|
|
150
|
+
### Added
|
|
151
|
+
- **SOLID mode** — anti-pattern reconstruction for teaching design principles
|
|
152
|
+
|
|
153
|
+
## [2.8.13] — 2026-06-22
|
|
154
|
+
|
|
155
|
+
### Added
|
|
156
|
+
- README: Contact Developer section
|
|
157
|
+
|
|
158
|
+
## [2.8.12] — 2026-06-21
|
|
159
|
+
|
|
160
|
+
### Added
|
|
161
|
+
- README: CodeWhale URL link
|
|
162
|
+
|
|
163
|
+
## [2.8.11] — 2026-06-21
|
|
164
|
+
|
|
165
|
+
### Changed
|
|
166
|
+
- `//teach-me`: restore files with `git checkout` for byte-perfect reset after interactive rounds
|
|
167
|
+
|
|
168
|
+
## [2.8.10] — 2026-06-21
|
|
169
|
+
|
|
170
|
+
### Changed
|
|
171
|
+
- `//teach-me`: use Skip thinking depth in interactive selection
|
|
172
|
+
- Acknowledged `edit_file` transparency in interactive mode
|
|
173
|
+
|
|
174
|
+
## [2.8.9] — 2026-06-21
|
|
175
|
+
|
|
176
|
+
### Changed
|
|
177
|
+
- `//teach-me`: suppress thinking during interactive selection/removal to avoid spoilers
|
|
178
|
+
|
|
179
|
+
## [2.8.8] — 2026-06-21
|
|
180
|
+
|
|
181
|
+
### Added
|
|
182
|
+
- `//teach-me`: **interactive (reconstruction) mode** — user edits files live to reconstruct missing code, alongside existing passive quiz mode
|
|
183
|
+
|
|
184
|
+
## [2.8.7] — 2026-06-21
|
|
185
|
+
|
|
186
|
+
### Changed
|
|
187
|
+
- `//teach-me`: mandate file re-read before each round for ground-truth accuracy
|
|
188
|
+
|
|
189
|
+
## [2.8.6] — 2026-06-21
|
|
190
|
+
|
|
191
|
+
### Changed
|
|
192
|
+
- README: simplified install command — postinstall handles the second step
|
|
193
|
+
|
|
194
|
+
## [2.8.5] — 2026-06-21
|
|
195
|
+
|
|
196
|
+
### Fixed
|
|
197
|
+
- Postinstall: use `INIT_CWD` instead of `cwd` for correct workspace detection
|
|
198
|
+
|
|
199
|
+
## [2.8.4] — 2026-06-21
|
|
200
|
+
|
|
201
|
+
### Added
|
|
202
|
+
- `postinstall` script to auto-run `codewhale-tools-install`
|
|
203
|
+
|
|
204
|
+
## [2.8.3] — 2026-06-21
|
|
205
|
+
|
|
206
|
+
### Added
|
|
207
|
+
- `//tools` now displays README in-session as help text
|
|
208
|
+
|
|
209
|
+
## [2.8.2] — 2026-06-21
|
|
210
|
+
|
|
211
|
+
### Added
|
|
212
|
+
- README: expanded After Install section with `//history`, `//snapshot`, `//teach-me` details
|
|
213
|
+
|
|
214
|
+
## [2.8.1] — 2026-06-21
|
|
215
|
+
|
|
216
|
+
### Added
|
|
217
|
+
- `//teach-me`: targeted concept drills — `teach me decorators`, `teach me async`, `teach me generators`, etc.
|
|
218
|
+
|
|
219
|
+
## [2.8.0] — 2026-06-21
|
|
220
|
+
|
|
221
|
+
### Added
|
|
222
|
+
- **`//teach-me` command** — interactive code quiz that selects random snippets from the current project and quizzes on application logic, language semantics, and documentation quality
|
|
223
|
+
- Trigger configuration in instructions.md
|
|
224
|
+
- Skill installation wiring in tools-install.js
|
|
225
|
+
|
|
226
|
+
## [2.7.0] — 2026-06-20
|
|
227
|
+
|
|
228
|
+
### Fixed
|
|
229
|
+
- `//snapshot`: removed stale note overwrite step (notes are session-cached)
|
|
230
|
+
|
|
231
|
+
## [2.6.0] — 2026-06-20
|
|
232
|
+
|
|
233
|
+
### Changed
|
|
234
|
+
- `//snapshot on` now overwrites stale caching notes with timestamp convention
|
|
235
|
+
|
|
236
|
+
## [2.5.0] — 2026-06-20
|
|
237
|
+
|
|
238
|
+
### Added
|
|
239
|
+
- **`//snapshot` command** — pre-edit file backups with timestamp naming, cross-platform, with retry
|
|
240
|
+
|
|
241
|
+
## [2.0.0] — 2026-06-19
|
|
242
|
+
|
|
243
|
+
### Changed
|
|
244
|
+
- Cleaned up installer; code published to npmjs
|
|
245
|
+
- Installs into global npm `node_modules/`
|
|
246
|
+
- Instructions appended to existing `instructions.md` (no longer replaced)
|
|
247
|
+
|
|
248
|
+
## [1.0.0] — 2026-06-19
|
|
249
|
+
|
|
250
|
+
### Added
|
|
251
|
+
- Initial release
|
|
252
|
+
- `//tools` — lists all available CodeWhale tools
|
|
253
|
+
- `//history` — lists CodeWhale chat sessions with message count, tokens, and cost
|
|
254
|
+
- Cross-platform installer (`tools-install.js`)
|
|
255
|
+
- Global npm package `codewhale.history`
|