cleargate 0.11.0 → 0.11.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/CHANGELOG.md +7 -0
- package/dist/MANIFEST.json +2 -2
- package/dist/cli.cjs +3 -3
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +3 -3
- package/dist/cli.js.map +1 -1
- package/dist/templates/cleargate-planning/MANIFEST.json +2 -2
- package/package.json +1 -1
- package/templates/cleargate-planning/MANIFEST.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -21,7 +21,7 @@ import { Command } from "commander";
|
|
|
21
21
|
// package.json
|
|
22
22
|
var package_default = {
|
|
23
23
|
name: "cleargate",
|
|
24
|
-
version: "0.11.
|
|
24
|
+
version: "0.11.1",
|
|
25
25
|
private: false,
|
|
26
26
|
type: "module",
|
|
27
27
|
description: "Planning framework for Claude Code agents \u2014 sprint/epic/story protocol, five-role agent team (architect/developer/qa/devops/reporter), Karpathy-style awareness wiki.",
|
|
@@ -4617,9 +4617,9 @@ function runHookHealth(stdout, cwd, now, outcome) {
|
|
|
4617
4617
|
if (outcome) outcome.configError = true;
|
|
4618
4618
|
return;
|
|
4619
4619
|
}
|
|
4620
|
-
const manifestPath = path26.join(cwd, "cleargate
|
|
4620
|
+
const manifestPath = path26.join(cwd, ".cleargate", ".install-manifest.json");
|
|
4621
4621
|
if (!fs25.existsSync(manifestPath)) {
|
|
4622
|
-
stdout(`cleargate misconfigured: cleargate-
|
|
4622
|
+
stdout(`cleargate misconfigured: .cleargate/.install-manifest.json not found. Run: cleargate init`);
|
|
4623
4623
|
if (outcome) outcome.configError = true;
|
|
4624
4624
|
}
|
|
4625
4625
|
const settingsPath = path26.join(cwd, ".claude", "settings.json");
|