opencode-code-archaeology 2.6.1 → 2.7.0

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
@@ -1,9 +1,14 @@
1
- ## [2.6.1](https://github.com/Maleick/Code-Archaeology/compare/v2.6.0...v2.6.1) (2026-05-11)
1
+ # [2.7.0](https://github.com/Maleick/Code-Archaeology/compare/v2.6.1...v2.7.0) (2026-05-11)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
5
 
6
- * remove hook auto-sync pulls ([#34](https://github.com/Maleick/Code-Archaeology/issues/34)) ([026db32](https://github.com/Maleick/Code-Archaeology/commit/026db324cd9d646eb701fa212e652700142b98db))
6
+ * tolerate missing origin main in Hermes setup ([#35](https://github.com/Maleick/Code-Archaeology/issues/35)) ([60744fb](https://github.com/Maleick/Code-Archaeology/commit/60744fbf19a828a784be67e4fb81ddd3976a113f))
7
+
8
+
9
+ ### Features
10
+
11
+ * re-add guarded auto-sync to all hooks ([5976a89](https://github.com/Maleick/Code-Archaeology/commit/5976a89e4c771a63b3ed48c4bacd03c9406b4576))
7
12
 
8
13
  ## Unreleased
9
14
 
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.6.1
1
+ 2.7.0
@@ -55,16 +55,16 @@ if [[ ! -f "$SESSION_FILE" ]]; then
55
55
  started_at: $now,
56
56
  updated_at: $now,
57
57
  expeditions: [
58
- {phase: "survey", name: "Site Survey \u0026 Baseline", status: "pending", findings_count: 0},
58
+ {phase: "survey", name: "Site Survey & Baseline", status: "pending", findings_count: 0},
59
59
  {phase: "dead_code", name: "Dead Code Excavation", status: "pending", findings_count: 0},
60
60
  {phase: "legacy", name: "Legacy Stratum Removal", status: "pending", findings_count: 0},
61
61
  {phase: "dependencies", name: "Circular Dependency Cartography", status: "pending", findings_count: 0},
62
62
  {phase: "types_consolidate", name: "Type Catalog Consolidation", status: "pending", findings_count: 0},
63
- {phase: "types_harden", name: "Type Restoration \u0026 Hardening", status: "pending", findings_count: 0},
63
+ {phase: "types_harden", name: "Type Restoration & Hardening", status: "pending", findings_count: 0},
64
64
  {phase: "dry", name: "DRY Stratification", status: "pending", findings_count: 0},
65
65
  {phase: "errors", name: "Error Handling Stratigraphy", status: "pending", findings_count: 0},
66
- {phase: "polish", name: "Artifact Cleaning \u0026 Documentation", status: "pending", findings_count: 0},
67
- {phase: "final_verify", name: "Site Preservation \u0026 Final Catalog", status: "pending", findings_count: 0}
66
+ {phase: "polish", name: "Artifact Cleaning & Documentation", status: "pending", findings_count: 0},
67
+ {phase: "final_verify", name: "Site Preservation & Final Catalog", status: "pending", findings_count: 0}
68
68
  ],
69
69
  total_findings: 0,
70
70
  auto_fixable_count: 0,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-code-archaeology",
3
- "version": "2.6.1",
3
+ "version": "2.7.0",
4
4
  "description": "Excavate, catalog, and restore a codebase by removing accumulated sediment—dead code, legacy fallbacks, circular dependencies, weak types, and defensive programming slop.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",