codewhale.history 2.11.10 → 2.11.12
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/.codewhale/instructions.md +15 -0
- package/CHANGELOG.md +10 -0
- package/README.md +4 -1
- package/_extract_office.js +17 -0
- package/_list_sessions.js +17 -0
- package/package.json +1 -1
- package/skills/history/SKILL.md +15 -0
- package/skills/snapshot/SKILL.md +15 -0
- package/skills/teach-me/SKILL.md +15 -0
- package/skills/tools/tools-skill/SKILL.md +15 -0
- package/tools-install.js +17 -0
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
Copyright (C) 2026 Celestial Consulting Ltd
|
|
2
|
+
|
|
3
|
+
This program is free software: you can redistribute it and/or modify
|
|
4
|
+
it under the terms of the GNU Affero General Public License as
|
|
5
|
+
published by the Free Software Foundation, either version 3 of the
|
|
6
|
+
License, or (at your option) any later version.
|
|
7
|
+
|
|
8
|
+
This program is distributed in the hope that it will be useful,
|
|
9
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
10
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
11
|
+
GNU Affero General Public License for more details.
|
|
12
|
+
|
|
13
|
+
You should have received a copy of the GNU Affero General Public License
|
|
14
|
+
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
15
|
+
|
|
1
16
|
# Delegated Instructions
|
|
2
17
|
|
|
3
18
|
## //tools Command
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,16 @@ All notable changes to the CodeWhale Tools Pack.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [2.11.12] — 2026-07-11
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- README: moved AGPL notice to footer (was cluttering npm page header)
|
|
11
|
+
|
|
12
|
+
## [2.11.11] — 2026-07-11
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- AGPL copyright headers to all source files (4 JS files, 4 SKILL.md files, instructions; README gets footer notice only)
|
|
16
|
+
|
|
7
17
|
## [2.11.10] — 2026-07-09
|
|
8
18
|
|
|
9
19
|
### Changed
|
package/README.md
CHANGED
|
@@ -175,4 +175,7 @@ If you've enjoyed using //teach-me and want to audit your entire specification r
|
|
|
175
175
|
- [CodeWhale](https://codewhale.net/en/docs)
|
|
176
176
|
|
|
177
177
|
## Contact Developer
|
|
178
|
-
[species8472](mailto:swyuri@yahoo.com)
|
|
178
|
+
[species8472](mailto:swyuri@yahoo.com)
|
|
179
|
+
|
|
180
|
+
---
|
|
181
|
+
Copyright © 2026 Celestial Consulting Ltd. Licensed under the [GNU Affero General Public License v3.0](LICENSE).
|
package/_extract_office.js
CHANGED
|
@@ -1,4 +1,21 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* Copyright (C) 2026 Celestial Consulting Ltd
|
|
4
|
+
*
|
|
5
|
+
* This program is free software: you can redistribute it and/or modify
|
|
6
|
+
* it under the terms of the GNU Affero General Public License as
|
|
7
|
+
* published by the Free Software Foundation, either version 3 of the
|
|
8
|
+
* License, or (at your option) any later version.
|
|
9
|
+
*
|
|
10
|
+
* This program is distributed in the hope that it will be useful,
|
|
11
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
* GNU Affero General Public License for more details.
|
|
14
|
+
*
|
|
15
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
16
|
+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
17
|
+
*/
|
|
18
|
+
|
|
2
19
|
/**
|
|
3
20
|
* Office Document Text Extractor
|
|
4
21
|
*
|
package/_list_sessions.js
CHANGED
|
@@ -1,4 +1,21 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* Copyright (C) 2026 Celestial Consulting Ltd
|
|
4
|
+
*
|
|
5
|
+
* This program is free software: you can redistribute it and/or modify
|
|
6
|
+
* it under the terms of the GNU Affero General Public License as
|
|
7
|
+
* published by the Free Software Foundation, either version 3 of the
|
|
8
|
+
* License, or (at your option) any later version.
|
|
9
|
+
*
|
|
10
|
+
* This program is distributed in the hope that it will be useful,
|
|
11
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
* GNU Affero General Public License for more details.
|
|
14
|
+
*
|
|
15
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
16
|
+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
17
|
+
*/
|
|
18
|
+
|
|
2
19
|
const fs = require('fs');
|
|
3
20
|
const path = require('path');
|
|
4
21
|
const os = require('os');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codewhale.history",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.12",
|
|
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",
|
package/skills/history/SKILL.md
CHANGED
|
@@ -3,6 +3,21 @@ name: history
|
|
|
3
3
|
description: Lists all CodeWhale chat sessions for the current workspace with message count, tokens, cost, and totals. Triggered when the user types `//history`.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
+
Copyright (C) 2026 Celestial Consulting Ltd
|
|
7
|
+
|
|
8
|
+
This program is free software: you can redistribute it and/or modify
|
|
9
|
+
it under the terms of the GNU Affero General Public License as
|
|
10
|
+
published by the Free Software Foundation, either version 3 of the
|
|
11
|
+
License, or (at your option) any later version.
|
|
12
|
+
|
|
13
|
+
This program is distributed in the hope that it will be useful,
|
|
14
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
GNU Affero General Public License for more details.
|
|
17
|
+
|
|
18
|
+
You should have received a copy of the GNU Affero General Public License
|
|
19
|
+
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
20
|
+
|
|
6
21
|
# `//history` Command
|
|
7
22
|
|
|
8
23
|
When the user types `//history`, list all chat sessions from the current workspace with their metadata and a total summary row.
|
package/skills/snapshot/SKILL.md
CHANGED
|
@@ -3,6 +3,21 @@ name: snapshot
|
|
|
3
3
|
description: Toggle automatic pre-edit file snapshotting on or off. Triggered by //snapshot on and //snapshot off.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
+
Copyright (C) 2026 Celestial Consulting Ltd
|
|
7
|
+
|
|
8
|
+
This program is free software: you can redistribute it and/or modify
|
|
9
|
+
it under the terms of the GNU Affero General Public License as
|
|
10
|
+
published by the Free Software Foundation, either version 3 of the
|
|
11
|
+
License, or (at your option) any later version.
|
|
12
|
+
|
|
13
|
+
This program is distributed in the hope that it will be useful,
|
|
14
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
GNU Affero General Public License for more details.
|
|
17
|
+
|
|
18
|
+
You should have received a copy of the GNU Affero General Public License
|
|
19
|
+
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
20
|
+
|
|
6
21
|
# `//snapshot` Command
|
|
7
22
|
|
|
8
23
|
When the user types `//snapshot on`, `//snapshot off`, or `//snapshot status`, manage automatic file backup before edits.
|
package/skills/teach-me/SKILL.md
CHANGED
|
@@ -3,6 +3,21 @@ name: teach-me
|
|
|
3
3
|
description: Interactive code-teaching quiz. Selects random snippets from the current project and quizzes the user on application logic, language semantics, or BA documentation quality. Triggered by 'teach me', 'quiz me', 'test my knowledge', 'code quiz', or 'drill me'. Supports difficulty levels 1–5 and four themes: passive (explain), interactive (reconstruct), solid (anti-pattern detection), spec (spec-to-code traceability), and ba-gates (BA documentation quality analysis).
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
+
Copyright (C) 2026 Celestial Consulting Ltd
|
|
7
|
+
|
|
8
|
+
This program is free software: you can redistribute it and/or modify
|
|
9
|
+
it under the terms of the GNU Affero General Public License as
|
|
10
|
+
published by the Free Software Foundation, either version 3 of the
|
|
11
|
+
License, or (at your option) any later version.
|
|
12
|
+
|
|
13
|
+
This program is distributed in the hope that it will be useful,
|
|
14
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
GNU Affero General Public License for more details.
|
|
17
|
+
|
|
18
|
+
You should have received a copy of the GNU Affero General Public License
|
|
19
|
+
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
20
|
+
|
|
6
21
|
# Teach Me — Interactive Code Quiz
|
|
7
22
|
|
|
8
23
|
An interactive teaching session that randomly selects code snippets or BA documentation fragments from the
|
|
@@ -3,6 +3,21 @@ name: tools
|
|
|
3
3
|
description: Lists all available tools and their capabilities. Triggered when the user types /tools.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
+
Copyright (C) 2026 Celestial Consulting Ltd
|
|
7
|
+
|
|
8
|
+
This program is free software: you can redistribute it and/or modify
|
|
9
|
+
it under the terms of the GNU Affero General Public License as
|
|
10
|
+
published by the Free Software Foundation, either version 3 of the
|
|
11
|
+
License, or (at your option) any later version.
|
|
12
|
+
|
|
13
|
+
This program is distributed in the hope that it will be useful,
|
|
14
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
GNU Affero General Public License for more details.
|
|
17
|
+
|
|
18
|
+
You should have received a copy of the GNU Affero General Public License
|
|
19
|
+
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
20
|
+
|
|
6
21
|
# `//tools` Command
|
|
7
22
|
|
|
8
23
|
When the user types `//tools`, enumerate every tool available to the model in this session, grouped by category with a brief description of each. I want the tool listing, not just the activation notice.
|
package/tools-install.js
CHANGED
|
@@ -1,4 +1,21 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* Copyright (C) 2026 Celestial Consulting Ltd
|
|
4
|
+
*
|
|
5
|
+
* This program is free software: you can redistribute it and/or modify
|
|
6
|
+
* it under the terms of the GNU Affero General Public License as
|
|
7
|
+
* published by the Free Software Foundation, either version 3 of the
|
|
8
|
+
* License, or (at your option) any later version.
|
|
9
|
+
*
|
|
10
|
+
* This program is distributed in the hope that it will be useful,
|
|
11
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
* GNU Affero General Public License for more details.
|
|
14
|
+
*
|
|
15
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
16
|
+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
17
|
+
*/
|
|
18
|
+
|
|
2
19
|
/**
|
|
3
20
|
* CodeWhale Tools Installer
|
|
4
21
|
*
|