kodingo-cli 1.0.9 → 1.0.10
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/dist/commands/doctor.js +0 -10
- package/package.json +2 -2
package/dist/commands/doctor.js
CHANGED
|
@@ -75,16 +75,6 @@ async function runDoctor(results) {
|
|
|
75
75
|
tempId = null; // already deleted — skip outer cleanup
|
|
76
76
|
}, results);
|
|
77
77
|
// ── Shared: environment checks ──────────────────────────────────────────────
|
|
78
|
-
if (process.env.ANTHROPIC_API_KEY) {
|
|
79
|
-
results.push({ name: "ANTHROPIC_API_KEY is set", ok: true });
|
|
80
|
-
}
|
|
81
|
-
else {
|
|
82
|
-
results.push({
|
|
83
|
-
name: "ANTHROPIC_API_KEY is not set",
|
|
84
|
-
ok: "warn",
|
|
85
|
-
message: "git inference will use fallback summaries",
|
|
86
|
-
});
|
|
87
|
-
}
|
|
88
78
|
const repoRoot = findRepoRoot(process.cwd());
|
|
89
79
|
const hookPath = path_1.default.join(repoRoot, ".git", "hooks", "post-commit");
|
|
90
80
|
if (fs_1.default.existsSync(hookPath) &&
|
package/package.json
CHANGED