@essentialai/cogent-bridge 3.4.6 → 3.4.7

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,24 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.4.7 — 2026-05-29
4
+
5
+ ### Changed (developer tooling / agent harness — no runtime code change)
6
+ - **Vault-first self-check Stop hook** (`.claude/scripts/vault-self-check-stop.py`, wired
7
+ in `.claude/settings.json`) — a mechanical Claude Code Stop-hook gate that blocks
8
+ finishing any working turn which made tool calls without consulting the project vault,
9
+ re-injecting a redo instruction. Fails open on infra error; loop-guarded via
10
+ `stop_hook_active`. Escape hatch: a `memory/claude-tech/vault-silent/` attestation.
11
+ Built from `docs/memory_hook.md`.
12
+ - **Git push routine** (`.claude/skills/git-push.md`) rewritten for the working
13
+ gh-CLI-over-HTTPS path; `origin` switched from SSH to HTTPS (both sandbox SSH keys are
14
+ unauthorized on the repo; `gh` is authenticated as the repo owner).
15
+ - `.gitignore` now ignores the hook's runtime log `.claude/logs/`; fixed the
16
+ `chaude-tech`→`claude-tech` synthesis-dir typo in `CLAUDE.md`.
17
+
18
+ > No `src/`, `server.json` package, or plugin runtime changes — the published npm package
19
+ > is functionally identical to 3.4.6. Version bumped to keep all artifacts aligned with
20
+ > the stable reference tag.
21
+
3
22
  ## 3.4.6 — 2026-05-28
4
23
 
5
24
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@essentialai/cogent-bridge",
3
- "version": "3.4.6",
3
+ "version": "3.4.7",
4
4
  "description": "MCP server for inter-Claude-Code session communication bridge",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/server.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "name": "io.github.eaisdevelopment/cogent",
4
4
  "title": "Cogent Bridge from Essential AI Solutions (essentialai.uk)",
5
5
  "description": "MCP bridge for inter-session communication between Claude Code instances",
6
- "version": "3.4.6",
6
+ "version": "3.4.7",
7
7
  "repository": {
8
8
  "url": "https://github.com/eaisdevelopment/cogent",
9
9
  "source": "github"
@@ -12,7 +12,7 @@
12
12
  {
13
13
  "registryType": "npm",
14
14
  "identifier": "@essentialai/cogent-bridge",
15
- "version": "3.4.6",
15
+ "version": "3.4.7",
16
16
  "runtimeHint": "npx",
17
17
  "transport": {
18
18
  "type": "stdio"