codewhale.history 2.11.7 → 2.11.9
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 +14 -0
- package/README.md +1 -5
- package/package.json +1 -2
- package/tools-install.js +1 -13
- package/images/teach_me-overview.png +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,20 @@ All notable changes to the CodeWhale Tools Pack.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [2.11.9] — 2026-07-07
|
|
8
|
+
|
|
9
|
+
### Removed
|
|
10
|
+
- README image (npm doesn't render local files)
|
|
11
|
+
- teach_me-overview.png from npm package (files array)
|
|
12
|
+
- tools-install.js: removed diagram copy step and verification
|
|
13
|
+
|
|
14
|
+
## [2.11.8] — 2026-07-07
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
- Moved diagram to package root: teach_me-overview.png
|
|
18
|
+
- package.json: images/ → teach_me-overview.png in files array
|
|
19
|
+
- tools-install.js: copy diagram directly to ~/.codewhale/
|
|
20
|
+
|
|
7
21
|
## [2.11.7] — 2026-07-07
|
|
8
22
|
|
|
9
23
|
### Added
|
package/README.md
CHANGED
|
@@ -82,11 +82,7 @@ Git already has your back.
|
|
|
82
82
|
|
|
83
83
|
### `//teach-me`
|
|
84
84
|
An interactive code-teaching quiz that randomly selects real snippets from your
|
|
85
|
-
current project.
|
|
86
|
-
|
|
87
|
-

|
|
88
|
-
|
|
89
|
-
Two independent dimensions across five difficulty levels:
|
|
85
|
+
current project. Two independent dimensions across five difficulty levels:
|
|
90
86
|
|
|
91
87
|
**Response mode** (how you answer):
|
|
92
88
|
- **Passive** (default) — Describe your answer in the console.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codewhale.history",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.9",
|
|
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",
|
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
"README.md",
|
|
15
15
|
"CHANGELOG.md",
|
|
16
16
|
".codewhale/instructions.md",
|
|
17
|
-
"images",
|
|
18
17
|
"skills"
|
|
19
18
|
],
|
|
20
19
|
"scripts": {
|
package/tools-install.js
CHANGED
|
@@ -94,17 +94,6 @@ if (fs.existsSync(changelogSource)) {
|
|
|
94
94
|
console.log(' WARNING: CHANGELOG.md not found.');
|
|
95
95
|
}
|
|
96
96
|
|
|
97
|
-
// ── 2d. Copy images ───────────────────────────────
|
|
98
|
-
const imagesSource = path.join(sourceDir, 'images');
|
|
99
|
-
const imagesDest = path.join(os.homedir(), '.codewhale', 'images');
|
|
100
|
-
|
|
101
|
-
if (fs.existsSync(imagesSource)) {
|
|
102
|
-
fs.cpSync(imagesSource, imagesDest, { recursive: true, force: true });
|
|
103
|
-
console.log(' Copied images.');
|
|
104
|
-
} else {
|
|
105
|
-
console.log(' WARNING: images folder not found.');
|
|
106
|
-
}
|
|
107
|
-
|
|
108
97
|
// ── 3. Verify ──────────────────────────────────────────
|
|
109
98
|
console.log('[3/3] Verifying installation...');
|
|
110
99
|
let errors = 0;
|
|
@@ -115,8 +104,7 @@ const checklist = {
|
|
|
115
104
|
'snapshot skill': path.join(skillsDest, 'snapshot', 'SKILL.md'),
|
|
116
105
|
'teach-me skill': path.join(skillsDest, 'teach-me', 'SKILL.md'),
|
|
117
106
|
'workspace instructions': instructionsDest,
|
|
118
|
-
'tools readme': readmeDest
|
|
119
|
-
'teach-me diagram': path.join(imagesDest, 'teach_me-overview.png')
|
|
107
|
+
'tools readme': readmeDest
|
|
120
108
|
};
|
|
121
109
|
|
|
122
110
|
for (const [name, filePath] of Object.entries(checklist)) {
|
|
Binary file
|