@deftai/directive-types 0.92.0 → 0.93.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.
- package/dist/policy.d.ts +10 -0
- 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`
|