@directive-run/claude-plugin 1.23.0 → 1.23.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@directive-run/claude-plugin",
3
- "version": "1.23.0",
3
+ "version": "1.23.1",
4
4
  "description": "Claude Code plugin for Directive — 12 skills covering modules, constraints, resolvers, derivations, AI orchestration, and adapters. Installable via Claude Code's plugin marketplace or consumable programmatically as an npm package.",
5
5
  "license": "(MIT OR Apache-2.0)",
6
6
  "author": "Jason Comes",
@@ -51,13 +51,13 @@
51
51
  "tsup": "^8.3.5",
52
52
  "tsx": "^4.19.2",
53
53
  "typescript": "^5.7.2",
54
- "vitest": "^3.0.0",
55
- "@directive-run/knowledge": "1.23.0"
54
+ "vitest": "^3.2.6",
55
+ "@directive-run/knowledge": "1.23.1"
56
56
  },
57
57
  "scripts": {
58
58
  "build": "tsx scripts/build-skills.ts && tsup",
59
59
  "build:skills": "tsx scripts/build-skills.ts",
60
- "test": "vitest run",
60
+ "test": "cd ../.. && vitest run packages/claude-plugin/",
61
61
  "typecheck": "tsc --noEmit",
62
62
  "clean": "rm -rf skills/* dist"
63
63
  }
@@ -86,6 +86,7 @@ Website: https://directive.run
86
86
  - [Persistence](https://directive.run/docs/plugins/persistence)
87
87
  - [Performance](https://directive.run/docs/plugins/performance)
88
88
  - [Circuit Breaker](https://directive.run/docs/plugins/circuit-breaker)
89
+ - [Clobber Loop Detector](https://directive.run/docs/plugins/clobber-loop)
89
90
  - [Observability](https://directive.run/docs/plugins/observability)
90
91
  - [Custom Plugins](https://directive.run/docs/plugins/custom)
91
92
 
@@ -108,6 +109,14 @@ Website: https://directive.run
108
109
  - [Resolver Binding](https://directive.run/docs/resolver-binding)
109
110
  - [Audit Ledger](https://directive.run/docs/audit-ledger)
110
111
 
112
+ ### Broadcast
113
+ - [Overview](https://directive.run/docs/broadcast)
114
+ - [GitHub Action](https://directive.run/docs/broadcast/action)
115
+ - [CLI](https://directive.run/docs/broadcast/cli)
116
+ - [Cloudflare Worker](https://directive.run/docs/broadcast/worker)
117
+ - [MCP server](https://directive.run/docs/broadcast/mcp)
118
+ - [README badge](https://directive.run/docs/broadcast/badge)
119
+
111
120
  ### Examples
112
121
  - [Number Match](https://directive.run/docs/examples/counter)
113
122
  - [Auth Flow](https://directive.run/docs/examples/auth-flow)
@@ -388,8 +388,8 @@ source publishes PII into a fact and the agent's prompt template embeds
388
388
  that fact (`"Hello ${facts.email}..."`), the PII reaches the LLM call
389
389
  without hitting the input guardrail chain.
390
390
 
391
- This is the documented R5 audit finding (red team, privacy, AI-integration
392
- reviewers independently flagged it). The Tier 0 fix:
391
+ This is a documented gap in the input-only guardrail chain — the fix
392
+ is a fact-store-boundary guardrail that runs on every fact write:
393
393
 
394
394
  ```ts
395
395
  import { createSystem, createModule, t } from "@directive-run/core";