@dzhechkov/skills-presentation-storyteller 0.1.0 → 0.1.1
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/package.json +1 -1
- package/src/commands/doctor.js +0 -29
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dzhechkov/skills-presentation-storyteller",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Presentation Storyteller — composite skill for Claude Code: build a selling presentation with verified sources + a slide-by-slide storytelling speaker script (AIDA / Hero's Journey / Problem-Solution)",
|
|
5
5
|
"main": "src/cli.js",
|
|
6
6
|
"bin": {
|
package/src/commands/doctor.js
CHANGED
|
@@ -155,34 +155,6 @@ function checkSkillGoap(targetDir) {
|
|
|
155
155
|
});
|
|
156
156
|
}
|
|
157
157
|
|
|
158
|
-
function checkSkillSolver(targetDir) {
|
|
159
|
-
return check('Problem Solver Enhanced skill', () => {
|
|
160
|
-
const skillDir = path.join(targetDir, '.claude', 'skills', 'problem-solver-enhanced');
|
|
161
|
-
|
|
162
|
-
if (!fileExists(skillDir)) {
|
|
163
|
-
return {
|
|
164
|
-
passed: false,
|
|
165
|
-
detail: '.claude/skills/problem-solver-enhanced/ directory not found',
|
|
166
|
-
fix: `Run ${cyan('@dzhechkov/skills-presentation-storyteller update')} to restore skill.`,
|
|
167
|
-
};
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
const skillMdPath = path.join(skillDir, 'SKILL.md');
|
|
171
|
-
if (!fileExists(skillMdPath)) {
|
|
172
|
-
return {
|
|
173
|
-
passed: false,
|
|
174
|
-
detail: '.claude/skills/problem-solver-enhanced/SKILL.md not found',
|
|
175
|
-
fix: `Run ${cyan('@dzhechkov/skills-presentation-storyteller update')} to restore SKILL.md.`,
|
|
176
|
-
};
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
return {
|
|
180
|
-
passed: true,
|
|
181
|
-
detail: 'SKILL.md present',
|
|
182
|
-
};
|
|
183
|
-
});
|
|
184
|
-
}
|
|
185
|
-
|
|
186
158
|
function checkCommandPresent(targetDir) {
|
|
187
159
|
return check('Presentation Storyteller command', () => {
|
|
188
160
|
const commandsDir = path.join(targetDir, '.claude', 'commands');
|
|
@@ -282,7 +254,6 @@ async function run(options) {
|
|
|
282
254
|
checkSkillAnalyst(targetDir),
|
|
283
255
|
checkSkillExplore(targetDir),
|
|
284
256
|
checkSkillGoap(targetDir),
|
|
285
|
-
checkSkillSolver(targetDir),
|
|
286
257
|
checkCommandPresent(targetDir),
|
|
287
258
|
checkKeysariumIntegration(targetDir),
|
|
288
259
|
];
|