@faviovazquez/deliberate 0.2.5 → 0.2.6
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 +5 -0
- package/bin/cli.js +9 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.2.6] - 2025-04-03
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- `bin/cli.js`: all three install functions (Claude Code, Windsurf, Cursor) now copy `protocols/` to the skill directory — `protocols/research-grounding.md` was missing after install despite being in the npm package
|
|
12
|
+
|
|
8
13
|
## [0.2.5] - 2025-04-03
|
|
9
14
|
|
|
10
15
|
### Fixed
|
package/bin/cli.js
CHANGED
|
@@ -187,6 +187,10 @@ function installClaudeCode(isGlobal) {
|
|
|
187
187
|
copyDir(path.join(ROOT, 'templates'), path.join(skillDir, 'templates'));
|
|
188
188
|
console.log(` ${green}✓${reset} Installed output templates`);
|
|
189
189
|
|
|
190
|
+
// Protocols
|
|
191
|
+
copyDir(path.join(ROOT, 'protocols'), path.join(skillDir, 'protocols'));
|
|
192
|
+
console.log(` ${green}✓${reset} Installed protocols`);
|
|
193
|
+
|
|
190
194
|
console.log(`\n ${green}Done!${reset} Open Claude Code and try: ${cyan}/deliberate "your question here"${reset}`);
|
|
191
195
|
}
|
|
192
196
|
|
|
@@ -206,14 +210,15 @@ function installWindsurf(isGlobal) {
|
|
|
206
210
|
copyDir(path.join(ROOT, 'agents'), path.join(skillDir, 'agents'));
|
|
207
211
|
console.log(` ${green}✓${reset} Installed 17 agents`);
|
|
208
212
|
|
|
209
|
-
// Configs, Scripts, Templates
|
|
213
|
+
// Configs, Scripts, Templates, Protocols
|
|
210
214
|
copyDir(path.join(ROOT, 'configs'), path.join(skillDir, 'configs'));
|
|
211
215
|
copyDir(path.join(ROOT, 'scripts'), path.join(skillDir, 'scripts'));
|
|
212
216
|
copyDir(path.join(ROOT, 'templates'), path.join(skillDir, 'templates'));
|
|
217
|
+
copyDir(path.join(ROOT, 'protocols'), path.join(skillDir, 'protocols'));
|
|
213
218
|
makeExecutable(path.join(skillDir, 'scripts', 'start-server.sh'));
|
|
214
219
|
makeExecutable(path.join(skillDir, 'scripts', 'stop-server.sh'));
|
|
215
220
|
makeExecutable(path.join(skillDir, 'scripts', 'detect-platform.sh'));
|
|
216
|
-
console.log(` ${green}✓${reset} Installed configs, scripts, templates`);
|
|
221
|
+
console.log(` ${green}✓${reset} Installed configs, scripts, templates, protocols`);
|
|
217
222
|
|
|
218
223
|
console.log(`\n ${green}Done!${reset} Open Windsurf and try: ${cyan}@deliberate${reset} or just ask a complex decision question.`);
|
|
219
224
|
}
|
|
@@ -231,10 +236,11 @@ function installCursor(isGlobal) {
|
|
|
231
236
|
copyDir(path.join(ROOT, 'configs'), path.join(skillDir, 'configs'));
|
|
232
237
|
copyDir(path.join(ROOT, 'scripts'), path.join(skillDir, 'scripts'));
|
|
233
238
|
copyDir(path.join(ROOT, 'templates'), path.join(skillDir, 'templates'));
|
|
239
|
+
copyDir(path.join(ROOT, 'protocols'), path.join(skillDir, 'protocols'));
|
|
234
240
|
makeExecutable(path.join(skillDir, 'scripts', 'start-server.sh'));
|
|
235
241
|
makeExecutable(path.join(skillDir, 'scripts', 'stop-server.sh'));
|
|
236
242
|
makeExecutable(path.join(skillDir, 'scripts', 'detect-platform.sh'));
|
|
237
|
-
console.log(` ${green}✓${reset} Installed skill, agents, configs, scripts, templates`);
|
|
243
|
+
console.log(` ${green}✓${reset} Installed skill, agents, configs, scripts, templates, protocols`);
|
|
238
244
|
|
|
239
245
|
console.log(`\n ${green}Done!${reset} Open Cursor and try: ${cyan}@deliberate${reset} or just ask a complex decision question.`);
|
|
240
246
|
}
|