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 CHANGED
@@ -3,6 +3,13 @@
3
3
  All notable changes to this project are documented in this file.
4
4
  Format: [Common Changelog](https://common-changelog.org/) — most-recent version first.
5
5
 
6
+ ## [0.11.1] — 2026-05-05
7
+
8
+ Hotfix.
9
+
10
+ ### Fixed
11
+ - **`cleargate doctor` no longer reports false-positive `cleargate misconfigured: cleargate-planning/MANIFEST.json not found`** — `cleargate-cli/src/commands/doctor.ts` `runHookHealth()` was checking `cleargate-planning/MANIFEST.json`, a path that `copy-payload.ts` (CR-053, v0.11.0) explicitly never creates in target repos. Doctor now checks `.cleargate/.install-manifest.json` (the actual install snapshot written by `init`). Every healthy v0.11.0 install previously printed the warning + exited 2 from `doctor`.
12
+
6
13
  ## [0.11.0] — 2026-05-04
7
14
 
8
15
  SDLC Hardening Wrap-Up + Docs Aligned (SPRINT-25). Six CRs shipped (CR-053..CR-058); the SDLC Hardening arc closes here.
@@ -1,6 +1,6 @@
1
1
  {
2
- "cleargate_version": "0.11.0",
3
- "generated_at": "2026-05-04T21:55:12.920Z",
2
+ "cleargate_version": "0.11.1",
3
+ "generated_at": "2026-05-04T22:23:50.738Z",
4
4
  "files": [
5
5
  {
6
6
  "path": ".claude/agents/architect.md",
package/dist/cli.cjs CHANGED
@@ -696,7 +696,7 @@ var import_commander = require("commander");
696
696
  // package.json
697
697
  var package_default = {
698
698
  name: "cleargate",
699
- version: "0.11.0",
699
+ version: "0.11.1",
700
700
  private: false,
701
701
  type: "module",
702
702
  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.",
@@ -5379,9 +5379,9 @@ function runHookHealth(stdout, cwd, now, outcome) {
5379
5379
  if (outcome) outcome.configError = true;
5380
5380
  return;
5381
5381
  }
5382
- const manifestPath = path30.join(cwd, "cleargate-planning", "MANIFEST.json");
5382
+ const manifestPath = path30.join(cwd, ".cleargate", ".install-manifest.json");
5383
5383
  if (!fs28.existsSync(manifestPath)) {
5384
- stdout(`cleargate misconfigured: cleargate-planning/MANIFEST.json not found. Run: cleargate init`);
5384
+ stdout(`cleargate misconfigured: .cleargate/.install-manifest.json not found. Run: cleargate init`);
5385
5385
  if (outcome) outcome.configError = true;
5386
5386
  }
5387
5387
  const settingsPath = path30.join(cwd, ".claude", "settings.json");