🚀. Socket Launch Week Day 2:Introducing Manifest Alerts.Learn more
Sign In

clawfix

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clawfix - npm Package Compare versions

Comparing version
0.6.0
to
0.6.1
+8
-1
bin/clawfix.js

@@ -658,6 +658,8 @@ #!/usr/bin/env node

try {
// Include locally-detected issues so server can match them to known fixes
const payload = { ...diagnostic, _localIssues: issues.map(i => ({ severity: i.severity, text: i.text })) };
const resp = await fetch(`${API_URL}/api/diagnose`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(diagnostic),
body: JSON.stringify(payload),
});

@@ -778,2 +780,7 @@ if (resp.ok) {

console.log(` Run ${c.cyan(`apply ${idx + 1}`)} to apply this fix.`);
} else {
// No fix script available — suggest asking AI
console.log('');
console.log(c.yellow(' No automatic fix script available for this issue.'));
console.log(` Try asking: ${c.cyan(`"how do I fix ${issue.title || issue.text}?"`)}`);
}

@@ -780,0 +787,0 @@ console.log('');

+1
-1
{
"name": "clawfix",
"version": "0.6.0",
"version": "0.6.1",
"description": "AI-powered diagnostic and repair for OpenClaw installations",

@@ -5,0 +5,0 @@ "bin": {