@deftai/directive-types 0.92.0 → 0.94.0

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.
Files changed (2) hide show
  1. package/dist/policy.d.ts +10 -0
  2. package/package.json +1 -1
package/dist/policy.d.ts CHANGED
@@ -39,6 +39,16 @@ export interface PlanPolicy {
39
39
  readonly projectionProviders?: Record<string, ProjectionProviderPolicy>;
40
40
  /** Per-host Directive hook deposit toggles (#2752). Default: all true. */
41
41
  readonly hostHooks?: Partial<Record<"claude" | "cursor" | "grok" | "codex", boolean>>;
42
+ /**
43
+ * Per-host native slash command deposit toggles (#3054 / epic #55 L6).
44
+ * Default: all true for hosts with real emitters (claude, cursor, grok, codex).
45
+ */
46
+ readonly hostSlashCommands?: Partial<Record<"claude" | "cursor" | "grok" | "codex", boolean>>;
47
+ /**
48
+ * Per-host multi-host skill discovery deposit toggles (#75 residual).
49
+ * Default: all true. Distinct from hostHooks and from #55 slash deposit.
50
+ */
51
+ readonly hostSkillDiscovery?: Partial<Record<"claude" | "cursor" | "codex" | "github", boolean>>;
42
52
  /**
43
53
  * When true, agents may open PRs but must not merge (#1193). Defaults true
44
54
  * when `autoDeployOnMerge` is also true. Override: `policy:allow-bot-merge`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deftai/directive-types",
3
- "version": "0.92.0",
3
+ "version": "0.94.0",
4
4
  "description": "Shared TypeScript types for the Directive framework engine.",
5
5
  "license": "MIT",
6
6
  "type": "module",