@ngockhoale/ukit 1.4.3 → 1.4.4

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
@@ -2,13 +2,24 @@
2
2
 
3
3
  All notable changes to UKit are documented here.
4
4
 
5
- ## Unreleased
5
+ ## 1.4.4 - 2026-05-11
6
+
7
+ ### Fixed
8
+
9
+ - Removed shipped `.gitignore` negations that accidentally unignored installed `.claude/` and `.codex/` files in fresh repos, preventing large post-install `git status` noise.
10
+ - Kept the intended local-only ignores for `AGENTS.md`, `CLAUDE.md`, `docs/STATUS.md`, `docs/TASKS.md`, runtime cache, and adapter state intact.
11
+
12
+ ### Tests
13
+
14
+ - Added install-pipeline regression coverage that initializes a fresh git repo, runs `ukit install`, and asserts managed UKit files stay ignored.
15
+
16
+ ## 1.4.3 - 2026-05-10
6
17
 
7
18
  ### Changed
8
19
 
9
- - Prepared the next local patch bump to `1.4.3`.
10
20
  - Tightened execute-first orchestration guidance so one clear safe path runs directly, while real user-choice or risk-confirmation moments still ask.
11
21
  - Added compact route-audit coverage and repeated write-lane rescue bias to reduce stop-and-explain loops.
22
+ - Published patch `1.4.3` after fresh full-suite, release-verify, and registry-smoke validation.
12
23
 
13
24
  ## 1.4.2 - 2026-05-10
14
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngockhoale/ukit",
3
- "version": "1.4.3",
3
+ "version": "1.4.4",
4
4
  "description": "Install/update an index-first AI workspace for Claude Code, Antigravity, OpenAI Codex, and OpenCode.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -49,7 +49,7 @@ export function buildDefaultRuntimeConfig(overrides = {}) {
49
49
  const safeOverrides = isPlainObject(overrides) ? overrides : {};
50
50
 
51
51
  return mergeObjects({
52
- version: '1.4.3',
52
+ version: '1.4.4',
53
53
  agent: 'claude-code',
54
54
  autonomy: {
55
55
  level: 'balanced',
@@ -178,7 +178,7 @@ export const ROUTE_CATALOG = [
178
178
  order: 20,
179
179
  contextMode: 'standalone',
180
180
  signals: [
181
- { type: 'prompt', regex: /\b(pdf|pdf form|fill (?:this )?pdf|merge pdf|split pdf|extract tables? from .*pdf|extract text from .*pdf)\b/i, score: 8 },
181
+ { type: 'prompt', regex: /\b(pdf form|fillable pdf|fill (?:this )?pdf|merge pdfs?|split pdfs?|extract tables? from .*pdf|extract text from .*pdf|read (?:this |the |a )?pdf|open (?:this |the |a )?pdf|analy(?:s|z)e (?:this |the |a )?pdf|annotate (?:this |the |a )?pdf|create pdf|convert .*pdf|pdf extraction|pdf parser|pdf parsing)\b/i, score: 8 },
182
182
  { type: 'command', regex: /\b(pdftotext|qpdf|pypdf|pdfplumber|reportlab)\b/i, score: 5 },
183
183
  { type: 'file', regex: /\.pdf$/i, score: 5 },
184
184
  ],
@@ -178,7 +178,7 @@ export const ROUTE_CATALOG = [
178
178
  order: 20,
179
179
  contextMode: 'standalone',
180
180
  signals: [
181
- { type: 'prompt', regex: /\b(pdf|pdf form|fill (?:this )?pdf|merge pdf|split pdf|extract tables? from .*pdf|extract text from .*pdf)\b/i, score: 8 },
181
+ { type: 'prompt', regex: /\b(pdf form|fillable pdf|fill (?:this )?pdf|merge pdfs?|split pdfs?|extract tables? from .*pdf|extract text from .*pdf|read (?:this |the |a )?pdf|open (?:this |the |a )?pdf|analy(?:s|z)e (?:this |the |a )?pdf|annotate (?:this |the |a )?pdf|create pdf|convert .*pdf|pdf extraction|pdf parser|pdf parsing)\b/i, score: 8 },
182
182
  { type: 'command', regex: /\b(pdftotext|qpdf|pypdf|pdfplumber|reportlab)\b/i, score: 5 },
183
183
  { type: 'file', regex: /\.pdf$/i, score: 5 },
184
184
  ],
@@ -57,20 +57,6 @@ docs/STATUS.md
57
57
  docs/TASKS.md
58
58
  .codex/settings.local.json
59
59
 
60
- # Keep tracked template hook sources under templates/.claude/hooks/
61
- !.claude/
62
- !.claude/hooks/
63
- !.claude/hooks/skill-router.sh
64
- !.claude/hooks/verification-guard.sh
65
- !.claude/ukit/
66
- !.claude/ukit/index/
67
- !.claude/ukit/index/resolve-context.mjs
68
- !.claude/ukit/index/verify-context.mjs
69
- !.claude/ukit/index/route-task.mjs
70
- !.codex/
71
- !.codex/README.md
72
- !.codex/settings.json
73
-
74
60
  # Database
75
61
  *.sqlite
76
62
  *.db
@@ -1,6 +1,6 @@
1
1
  # UKit Shared Runtime
2
2
 
3
- This folder stores shared UKit runtime state for v1.4.3 features.
3
+ This folder stores shared UKit runtime state for v1.4.4 features.
4
4
 
5
5
  - `storage/config.json` — runtime feature flags and defaults
6
6
  - `storage/cache/` — prompt-cache, compact history, compact pressure state, output summaries, and preserved raw tool outputs under `storage/cache/tee/`
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.4.3",
2
+ "version": "1.4.4",
3
3
  "agent": "claude-code",
4
4
  "autonomy": {
5
5
  "level": "balanced",