create-claude-cabinet 0.29.10 → 0.29.11

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": "create-claude-cabinet",
3
- "version": "0.29.10",
3
+ "version": "0.29.11",
4
4
  "description": "Claude Cabinet — opinionated process scaffolding for Claude Code projects",
5
5
  "bin": {
6
6
  "create-claude-cabinet": "bin/create-claude-cabinet.js"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claude-cabinet/site-audit",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Comprehensive deployed-site quality audit engine for Claude Cabinet. Runs checks across performance, accessibility, security, SEO, content, DNS, and privacy against a deployed URL; single-site and comparison modes; standalone HTML report.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -10,8 +10,12 @@ export const whyItMatters = "Scans for known security vulnerabilities (CVEs) tha
10
10
  export const defaultTimeoutMs = 300_000;
11
11
 
12
12
  export async function detect(executor) {
13
- const r = await executor.spawn('nuclei', ['-version'], { timeoutMs: 10_000 });
14
- return r.code === 0 || r.stderr?.includes('nuclei');
13
+ try {
14
+ const r = await executor.spawn('nuclei', ['-version'], { timeoutMs: 10_000 });
15
+ return r.code === 0;
16
+ } catch {
17
+ return false;
18
+ }
15
19
  }
16
20
 
17
21
  export async function run(url, executor, opts = {}) {