codewhale.history 2.11.8 → 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 CHANGED
@@ -4,6 +4,13 @@ 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
+
7
14
  ## [2.11.8] — 2026-07-07
8
15
 
9
16
  ### Changed
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
- ![teach-me](./teach_me-overview.png)
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.8",
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
- "teach_me-overview.png",
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 teach-me diagram ──────────────────────
98
- const diagramSource = path.join(sourceDir, 'teach_me-overview.png');
99
- const diagramDest = path.join(os.homedir(), '.codewhale', 'teach_me-overview.png');
100
-
101
- if (fs.existsSync(diagramSource)) {
102
- fs.copyFileSync(diagramSource, diagramDest);
103
- console.log(' Copied teach_me-overview.png.');
104
- } else {
105
- console.log(' WARNING: teach_me-overview.png 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': diagramDest
107
+ 'tools readme': readmeDest
120
108
  };
121
109
 
122
110
  for (const [name, filePath] of Object.entries(checklist)) {
Binary file