@bookedsolid/rea 0.30.1 → 0.31.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/cli/audit-specialists.d.ts +106 -24
- package/dist/cli/audit-specialists.js +239 -64
- package/dist/cli/delegation-advisory.d.ts +161 -0
- package/dist/cli/delegation-advisory.js +433 -0
- package/dist/cli/doctor.d.ts +110 -39
- package/dist/cli/doctor.js +302 -90
- package/dist/cli/hook.d.ts +6 -0
- package/dist/cli/hook.js +13 -0
- package/dist/cli/index.js +1 -1
- package/dist/cli/install/settings-merge.js +25 -0
- package/dist/cli/roster.d.ts +119 -0
- package/dist/cli/roster.js +141 -0
- package/dist/policy/loader.d.ts +23 -0
- package/dist/policy/loader.js +46 -0
- package/dist/policy/profiles.d.ts +23 -0
- package/dist/policy/profiles.js +16 -0
- package/dist/policy/types.d.ts +61 -0
- package/hooks/delegation-advisory.sh +162 -0
- package/package.json +1 -1
- package/profiles/bst-internal-no-codex.yaml +12 -0
- package/profiles/bst-internal.yaml +13 -0
- package/profiles/client-engagement.yaml +11 -0
- package/profiles/lit-wc.yaml +10 -0
- package/profiles/minimal.yaml +11 -0
- package/profiles/open-source-no-codex.yaml +11 -0
- package/profiles/open-source.yaml +11 -0
|
@@ -58,3 +58,15 @@ context_protection:
|
|
|
58
58
|
attribution:
|
|
59
59
|
co_author:
|
|
60
60
|
enabled: false
|
|
61
|
+
# 0.31.0 delegation-advisory nudge — enabled for bst-internal-no-codex.
|
|
62
|
+
# This is a bst-internal variant, so it inherits BST's delegation
|
|
63
|
+
# discipline: the delegation-advisory.sh PostToolUse hook emits a
|
|
64
|
+
# one-time stderr advisory when a session crosses `threshold`
|
|
65
|
+
# write-class tool calls (Bash/Edit/Write/MultiEdit/NotebookEdit)
|
|
66
|
+
# without dispatching a curated specialist. Advisory only — never
|
|
67
|
+
# blocks. `exempt_subagents` omitted → schema default applies
|
|
68
|
+
# (general-purpose, Explore, Plan, output-style-setup,
|
|
69
|
+
# statusline-setup don't count as real delegation).
|
|
70
|
+
delegation_advisory:
|
|
71
|
+
enabled: true
|
|
72
|
+
threshold: 25
|
|
@@ -67,3 +67,16 @@ architecture_review:
|
|
|
67
67
|
attribution:
|
|
68
68
|
co_author:
|
|
69
69
|
enabled: false
|
|
70
|
+
# 0.31.0 delegation-advisory nudge — enabled for bst-internal.
|
|
71
|
+
# The delegation-advisory.sh PostToolUse hook emits a one-time stderr
|
|
72
|
+
# advisory when a session crosses `threshold` write-class tool calls
|
|
73
|
+
# (Bash/Edit/Write/MultiEdit/NotebookEdit) without dispatching a
|
|
74
|
+
# curated specialist. Advisory only — never blocks a tool call. BST's
|
|
75
|
+
# own delegation discipline (CLAUDE.md routes all non-trivial work
|
|
76
|
+
# through rea-orchestrator) is load-bearing, so the nudge ships on.
|
|
77
|
+
# `exempt_subagents` omitted → the schema default applies
|
|
78
|
+
# (general-purpose, Explore, Plan, output-style-setup, statusline-setup
|
|
79
|
+
# don't count as real delegation).
|
|
80
|
+
delegation_advisory:
|
|
81
|
+
enabled: true
|
|
82
|
+
threshold: 25
|
|
@@ -35,3 +35,14 @@ context_protection:
|
|
|
35
35
|
attribution:
|
|
36
36
|
co_author:
|
|
37
37
|
enabled: false
|
|
38
|
+
# 0.31.0 delegation-advisory nudge — disabled for client-engagement.
|
|
39
|
+
# The delegation-advisory.sh PostToolUse hook emits a one-time stderr
|
|
40
|
+
# advisory when a session crosses `threshold` write-class tool calls
|
|
41
|
+
# without dispatching a curated specialist. Client projects vary too
|
|
42
|
+
# much in their delegation conventions to ship the nudge on by
|
|
43
|
+
# default — opt in per-repo via .rea/policy.yaml:
|
|
44
|
+
# delegation_advisory:
|
|
45
|
+
# enabled: true
|
|
46
|
+
# threshold: 25
|
|
47
|
+
delegation_advisory:
|
|
48
|
+
enabled: false
|
package/profiles/lit-wc.yaml
CHANGED
|
@@ -29,3 +29,13 @@ notification_channel: ''
|
|
|
29
29
|
attribution:
|
|
30
30
|
co_author:
|
|
31
31
|
enabled: false
|
|
32
|
+
# 0.31.0 delegation-advisory nudge — disabled for lit-wc.
|
|
33
|
+
# The delegation-advisory.sh PostToolUse hook emits a one-time stderr
|
|
34
|
+
# advisory when a session crosses `threshold` write-class tool calls
|
|
35
|
+
# without dispatching a curated specialist. External profiles ship
|
|
36
|
+
# `enabled: false` — opt in per-repo via .rea/policy.yaml:
|
|
37
|
+
# delegation_advisory:
|
|
38
|
+
# enabled: true
|
|
39
|
+
# threshold: 25
|
|
40
|
+
delegation_advisory:
|
|
41
|
+
enabled: false
|
package/profiles/minimal.yaml
CHANGED
|
@@ -25,3 +25,14 @@ notification_channel: ''
|
|
|
25
25
|
attribution:
|
|
26
26
|
co_author:
|
|
27
27
|
enabled: false
|
|
28
|
+
# 0.31.0 delegation-advisory nudge — disabled for minimal.
|
|
29
|
+
# The delegation-advisory.sh PostToolUse hook emits a one-time stderr
|
|
30
|
+
# advisory when a session crosses `threshold` write-class tool calls
|
|
31
|
+
# without dispatching a curated specialist. The minimal profile ships
|
|
32
|
+
# bare defaults — `enabled: false` keeps it opinion-free. Opt in
|
|
33
|
+
# per-repo via .rea/policy.yaml:
|
|
34
|
+
# delegation_advisory:
|
|
35
|
+
# enabled: true
|
|
36
|
+
# threshold: 25
|
|
37
|
+
delegation_advisory:
|
|
38
|
+
enabled: false
|
|
@@ -44,3 +44,14 @@ notification_channel: ''
|
|
|
44
44
|
attribution:
|
|
45
45
|
co_author:
|
|
46
46
|
enabled: false
|
|
47
|
+
# 0.31.0 delegation-advisory nudge — disabled for open-source-no-codex.
|
|
48
|
+
# The delegation-advisory.sh PostToolUse hook emits a one-time stderr
|
|
49
|
+
# advisory when a session crosses `threshold` write-class tool calls
|
|
50
|
+
# without dispatching a curated specialist. "You should delegate more"
|
|
51
|
+
# is an opinion not every OSS team shares, so external profiles ship
|
|
52
|
+
# `enabled: false` — opt in per-repo via .rea/policy.yaml:
|
|
53
|
+
# delegation_advisory:
|
|
54
|
+
# enabled: true
|
|
55
|
+
# threshold: 25
|
|
56
|
+
delegation_advisory:
|
|
57
|
+
enabled: false
|
|
@@ -29,3 +29,14 @@ notification_channel: ''
|
|
|
29
29
|
attribution:
|
|
30
30
|
co_author:
|
|
31
31
|
enabled: false
|
|
32
|
+
# 0.31.0 delegation-advisory nudge — disabled for open-source.
|
|
33
|
+
# The delegation-advisory.sh PostToolUse hook emits a one-time stderr
|
|
34
|
+
# advisory when a session crosses `threshold` write-class tool calls
|
|
35
|
+
# without dispatching a curated specialist. "You should delegate more"
|
|
36
|
+
# is an opinion not every OSS team shares, so external profiles ship
|
|
37
|
+
# `enabled: false` — opt in per-repo via .rea/policy.yaml:
|
|
38
|
+
# delegation_advisory:
|
|
39
|
+
# enabled: true
|
|
40
|
+
# threshold: 25
|
|
41
|
+
delegation_advisory:
|
|
42
|
+
enabled: false
|