opencode-code-archaeology 2.2.5 → 2.2.6

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,3 +1,10 @@
1
+ ## [2.2.6](https://github.com/Maleick/Code-Archaeology/compare/v2.2.5...v2.2.6) (2026-05-07)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * record completed timestamp for complete status ([#19](https://github.com/Maleick/Code-Archaeology/issues/19)) ([5e17231](https://github.com/Maleick/Code-Archaeology/commit/5e17231b095b7ae1e8615a1f0c55adedda15489f))
7
+
1
8
  ## [2.2.5](https://github.com/Maleick/Code-Archaeology/compare/v2.2.4...v2.2.5) (2026-05-07)
2
9
 
3
10
 
@@ -24,7 +24,7 @@ foreach ($expedition in $session.expeditions) {
24
24
  if ($expedition.phase -eq $PHASE) {
25
25
  $expedition.status = $STATUS
26
26
  $expedition.findings_count = $FINDINGS
27
- if ($STATUS -eq "completed" -or $STATUS -eq "done") {
27
+ if ($STATUS -eq "complete" -or $STATUS -eq "completed" -or $STATUS -eq "done") {
28
28
  $expedition | Add-Member -MemberType NoteProperty -Name "completed_at" -Value $NOW -Force
29
29
  }
30
30
  if ($ERROR_MSG) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-code-archaeology",
3
- "version": "2.2.5",
3
+ "version": "2.2.6",
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",