bluera-knowledge 0.12.4 → 0.12.5

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bluera-knowledge",
3
- "version": "0.12.4",
3
+ "version": "0.12.5",
4
4
  "description": "Clone repos, crawl docs, search locally. Fast, authoritative answers for AI coding agents.",
5
5
  "mcpServers": {
6
6
  "bluera-knowledge": {
package/CHANGELOG.md CHANGED
@@ -2,6 +2,21 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
4
4
 
5
+ ## [0.12.5](https://github.com/blueraai/bluera-knowledge/compare/v0.11.21...v0.12.5) (2026-01-15)
6
+
7
+
8
+ ### Features
9
+
10
+ * **hooks:** add PreToolUse hooks for BK suggestions ([23d3fa4](https://github.com/blueraai/bluera-knowledge/commit/23d3fa493dd16427d6bda3ea80064622c6244bba))
11
+ * **hooks:** add skill auto-activation system ([2b4e96b](https://github.com/blueraai/bluera-knowledge/commit/2b4e96bd29f28df63377cdaacab922d4f4321a8f))
12
+ * **hooks:** improve skill activation with forced evaluation pattern ([f044077](https://github.com/blueraai/bluera-knowledge/commit/f044077d260b78b55a00ebf735b68a2d933f34a7)), closes [#15345](https://github.com/blueraai/bluera-knowledge/issues/15345)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * **hooks:** use JSON output for PreToolUse hook context injection ([a73977e](https://github.com/blueraai/bluera-knowledge/commit/a73977e0f8f690d43b9d7c987300522dd501fe38))
18
+ * **tests:** stabilize watch service tests in coverage mode ([fdf6c3a](https://github.com/blueraai/bluera-knowledge/commit/fdf6c3a478adff9e4746b54a9519184ca280f344))
19
+
5
20
  ## [0.12.4](https://github.com/blueraai/bluera-knowledge/compare/v0.11.21...v0.12.4) (2026-01-15)
6
21
 
7
22
 
package/README.md CHANGED
@@ -1657,7 +1657,8 @@ This creates a separate `bluera-knowledge-dev` MCP server that runs source TypeS
1657
1657
  | `bun run test:coverage:verbose` | 📢 Coverage (full output) | Reviewing detailed coverage |
1658
1658
  | `bun run build:verbose` | 📢 Build (full output) | Debugging build issues |
1659
1659
  | `bun run gh:status` | 📋 List recent GitHub Actions runs | Monitor CI/CD status |
1660
- | `bun run gh:watch` | 👁️ Watch latest workflow run | Wait for CI completion |
1660
+ | `bun run gh:watch` | 👁️ Watch latest workflow (quiet, shows result + failures) | Wait for CI completion |
1661
+ | `bun run gh:watch:verbose` | 📢 Watch with live status updates | Debugging CI issues |
1661
1662
  | `bun run gh:releases` | 🏷️ List recent GitHub releases | Check release history |
1662
1663
 
1663
1664
  ### 🔄 Automatic Build & Dist Commit
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bluera-knowledge",
3
- "version": "0.12.4",
3
+ "version": "0.12.5",
4
4
  "description": "CLI tool for managing knowledge stores with semantic search",
5
5
  "type": "module",
6
6
  "bin": {
@@ -42,7 +42,8 @@
42
42
  "release:major": "commit-and-tag-version --release-as major && git push --follow-tags",
43
43
  "validate:npm": "./scripts/validate-npm-release.sh",
44
44
  "gh:status": "gh run list --limit 5",
45
- "gh:watch": "gh run list --limit 1 --json databaseId --jq '.[0].databaseId' | xargs -I {} gh run watch {} --exit-status",
45
+ "gh:watch": "bash -c 'RUN_ID=$(gh run list --limit 1 --json databaseId -q \".[0].databaseId\") && echo \"Watching run $RUN_ID...\" && gh run watch $RUN_ID --exit-status >/dev/null 2>&1 && echo \"✓ Workflow passed\" || { echo \"✗ Workflow failed:\"; gh run view $RUN_ID --log-failed 2>&1 | head -50; }'",
46
+ "gh:watch:verbose": "gh run list --limit 1 --json databaseId --jq '.[0].databaseId' | xargs -I {} gh run watch {} --exit-status",
46
47
  "gh:releases": "gh release list --limit 5"
47
48
  },
48
49
  "keywords": [