@codihaus/claude-skills 1.6.0 → 1.6.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codihaus/claude-skills",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "Claude Code skills for software development workflow",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -41,6 +41,7 @@ import {
41
41
 
42
42
  export async function init(options) {
43
43
  const projectPath = process.cwd();
44
+ let globalDeps = null; // Declare at function level for later use
44
45
 
45
46
  console.log(chalk.bold('\nšŸš€ Claude Skills Initialization\n'));
46
47
  console.log(chalk.gray(`Project: ${projectPath}\n`));
@@ -48,7 +49,7 @@ export async function init(options) {
48
49
  // Step 1: Check global dependencies
49
50
  if (!options.noDeps) {
50
51
  const spinner = ora('Checking system dependencies...').start();
51
- const globalDeps = await checkGlobalDeps();
52
+ globalDeps = await checkGlobalDeps();
52
53
  spinner.stop();
53
54
 
54
55
  printDepsReport(globalDeps);