5-phase-workflow 1.8.8 → 1.8.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.
Files changed (2) hide show
  1. package/bin/install.js +5 -3
  2. package/package.json +1 -1
package/bin/install.js CHANGED
@@ -280,7 +280,8 @@ const LEGACY_REMOVED_FILES = [
280
280
  'templates/STACK.md',
281
281
  'templates/STRUCTURE.md',
282
282
  'templates/CONVENTIONS.md',
283
- 'templates/INTEGRATIONS.md'
283
+ 'templates/INTEGRATIONS.md',
284
+ 'skills/configure-project'
284
285
  ];
285
286
 
286
287
  // Get list of workflow-owned files/directories (not user-created)
@@ -296,7 +297,8 @@ function getWorkflowManagedFiles() {
296
297
 
297
298
  // Skills: specific skill directories
298
299
  skills: [
299
- 'configure-project',
300
+ 'configure-docs-index',
301
+ 'configure-skills',
300
302
  'generate-readme'
301
303
  ],
302
304
 
@@ -966,7 +968,7 @@ function installCodexSkills(targetPath, sourcePath) {
966
968
  }
967
969
  log.success(`Installed ${files.length} workflow skills`);
968
970
 
969
- // Also convert and install original skills (configure-project, generate-readme)
971
+ // Also convert and install original workflow skills (configure-docs-index, configure-skills, generate-readme)
970
972
  const managed = getWorkflowManagedFiles();
971
973
  for (const skill of managed.skills) {
972
974
  const skillSrc = path.join(sourcePath, 'skills', skill);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "5-phase-workflow",
3
- "version": "1.8.8",
3
+ "version": "1.8.9",
4
4
  "description": "A 5-phase feature development workflow for Claude Code",
5
5
  "bin": {
6
6
  "5-phase-workflow": "bin/install.js"