claude-cli-advanced-starter-pack 1.0.8 → 1.0.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-cli-advanced-starter-pack",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Advanced Claude Code CLI toolkit - agents, hooks, skills, MCP servers, phased development, and GitHub integration",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -1,5 +1,23 @@
1
1
  {
2
2
  "releases": [
3
+ {
4
+ "version": "1.0.9",
5
+ "date": "2026-01-30",
6
+ "summary": "Fix: Windows compatibility for update check hook",
7
+ "highlights": [
8
+ "Fixed npm commands failing silently on Windows",
9
+ "Removed bash-specific syntax (2>/dev/null)"
10
+ ],
11
+ "newFeatures": {
12
+ "commands": [],
13
+ "agents": [],
14
+ "skills": [],
15
+ "hooks": [],
16
+ "other": []
17
+ },
18
+ "breaking": [],
19
+ "deprecated": []
20
+ },
3
21
  {
4
22
  "version": "1.0.8",
5
23
  "date": "2026-01-30",
@@ -61,10 +61,11 @@ function saveState(state) {
61
61
  */
62
62
  function getCurrentVersion() {
63
63
  try {
64
- // Try global install first
65
- const result = execSync(`npm list -g ${PACKAGE_NAME} --json 2>/dev/null`, {
64
+ // Try global install first (Windows-compatible: use stdio to suppress stderr)
65
+ const result = execSync(`npm list -g ${PACKAGE_NAME} --json`, {
66
66
  encoding: 'utf8',
67
67
  timeout: 5000,
68
+ stdio: ['pipe', 'pipe', 'pipe'],
68
69
  });
69
70
  const data = JSON.parse(result);
70
71
  return data.dependencies?.[PACKAGE_NAME]?.version || null;