prjct-cli 1.56.6 → 1.56.12

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,5 +1,78 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.56.12] - 2026-04-14
4
+
5
+ ### Bug Fixes
6
+
7
+ - exclude .worktrees from indexing (#248)
8
+
9
+
10
+ ## [1.56.11] - 2026-04-13
11
+
12
+ ### Fixed
13
+ - Exclude `.worktrees` from BM25 and import graph indexing to eliminate duplicate search results
14
+ - Exclude `.worktrees` from biome config to prevent nested root configuration errors
15
+
16
+ ## [1.56.10] - 2026-04-11
17
+
18
+ ### Bug Fixes
19
+
20
+ - prefer direct Glob/Grep over Explore subagent (#247)
21
+ - chore: dead code purge + architecture docs (v1.56.8) (#246)
22
+
23
+
24
+ ## [1.56.9] - 2026-04-11
25
+
26
+ ### Changed
27
+ - `templates/tools/task.txt`: prefer direct `Glob`/`Grep` for simple
28
+ exploration; only delegate to `Explore` subagent when the search is
29
+ open-ended. Subagents inherit all MCP tool schemas from the parent
30
+ session and can start with heavy context, so prescriptive delegation
31
+ was hurting more than helping.
32
+
33
+ ## [1.56.8] - 2026-04-10
34
+
35
+ ### Removed
36
+ - **Dead code purge (-9400 LOC).** Deleted 43 unused files including the entire
37
+ `core/integrations/` subtree (Linear/Jira integration replaced by the MCP
38
+ gateway CLIs in `core/cli/linear.ts` and `core/cli/jira.ts`), orphan schemas
39
+ (`prd`, `issues`, `permissions`, `agents`, `command-context`, `enriched-task`,
40
+ `project`), orphan services (`skill-service`, `skill-installer`, `skill-lock`,
41
+ `context-selector`, `file-categorizer`, `git-analyzer`), orphan domain files
42
+ (`snapshot-manager`, `architecture-generator`, `context-estimator`,
43
+ `task-stack`), and various agentic/session/utility files.
44
+ - **24 re-export lines** across 16 files (`core/utils/output.ts`,
45
+ `core/utils/error-messages.ts`, `core/commands/maintenance.ts`, and others).
46
+ Import directly from the source module per the no-barrel rule.
47
+ - **Unused functions** trimmed from `core/utils/collection-filters.ts`,
48
+ `core/utils/runtime.ts`, `core/utils/jsonl-helper.ts`,
49
+ `core/utils/subtask-table.ts`, and `core/utils/mcp-config.ts`.
50
+
51
+ ### Added
52
+ - **`knip.json`** and `bun run knip` script for dead code detection. Entry
53
+ points reflect the five build targets from `scripts/build.js` plus tests.
54
+ - **`docs/architecture.md`** — layered architecture walkthrough, retrieval
55
+ triad (BM25 + import graph + git co-change) with ASCII diagram, schemas
56
+ pattern, storage and testing conventions, enforced code rules.
57
+ - **`docs/sqlite-migration.md`** — why v1.24.1 moved from JSON to SQLite,
58
+ what `migrate-json.ts` does, how to inspect `prjct.db` with `sqlite3`,
59
+ and troubleshooting recipes.
60
+ - **56 new tests** across `core/__tests__/sync/` (event-mapper, auth-config,
61
+ sync-client, sync-manager — 39 tests) and
62
+ `core/__tests__/tools/context/token-counter.test.ts` (17 tests).
63
+
64
+ ### Changed
65
+ - **Biome lint rules hardened.** `noUnusedVariables`, `noUnusedImports`, and
66
+ `noVoidTypeReturn` are now `"error"` (were `"warn"`). CI blocks on any
67
+ violation.
68
+ - **`AGENTS.md`** updated with a "Code rules" section (no barrels, SQLite
69
+ only, Biome errors blocking, Zod as source of truth) and references to the
70
+ new architecture docs.
71
+ - **`.gitignore`** no longer ignores `docs/` so documentation is versioned.
72
+
73
+ ### Tests
74
+ - Full suite: **1013 pass / 0 fail** (was 957).
75
+
3
76
  ## [1.56.6] - 2026-04-07
4
77
 
5
78
  ### Bug Fixes
@@ -7,7 +80,6 @@
7
80
  - resolve biome check lint and format errors (#244)
8
81
  - prefer installed dist over source files (#243)
9
82
 
10
-
11
83
  ## [1.56.5] - 2026-04-07
12
84
 
13
85
  ### Added