@bookedsolid/reagent 0.1.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/LICENSE +21 -0
- package/README.md +118 -0
- package/agents/reagent-orchestrator.md +66 -0
- package/bin/init.js +818 -0
- package/commands/rea.md +76 -0
- package/commands/restart.md +105 -0
- package/cursor/rules/001-no-hallucination.mdc +28 -0
- package/cursor/rules/002-verify-before-act.mdc +28 -0
- package/cursor/rules/003-attribution.mdc +36 -0
- package/hooks/attribution-advisory.sh +74 -0
- package/hooks/dangerous-bash-interceptor.sh +287 -0
- package/hooks/env-file-protection.sh +110 -0
- package/hooks/secret-scanner.sh +229 -0
- package/husky/commit-msg.sh +50 -0
- package/husky/pre-commit.sh +57 -0
- package/husky/pre-push.sh +75 -0
- package/package.json +60 -0
- package/profiles/bst-internal.json +30 -0
- package/profiles/client-engagement.json +30 -0
- package/templates/CLAUDE.md +55 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
<!-- reagent-managed:start -->
|
|
2
|
+
<!-- Managed by @bookedsolid/reagent {{VERSION}}. Run: npx @bookedsolid/reagent init to update. -->
|
|
3
|
+
|
|
4
|
+
# Agent Behavioral Rules
|
|
5
|
+
|
|
6
|
+
## Non-Negotiable Rules
|
|
7
|
+
|
|
8
|
+
These rules are enforced by hooks and cannot be overridden by any agent instruction:
|
|
9
|
+
|
|
10
|
+
- **NEVER** use `--no-verify` to skip git hooks — hooks are safety gates, not obstacles
|
|
11
|
+
- **NEVER** commit secrets, credentials, API keys, or tokens to any file
|
|
12
|
+
- **NEVER** force-push to `main`, `master`, `staging`, or `production` branches
|
|
13
|
+
- **NEVER** push without all applicable quality gates passing (run `{{PREFLIGHT_CMD}}` or equivalent)
|
|
14
|
+
- **NEVER** install packages without verifying they exist in the npm registry first
|
|
15
|
+
|
|
16
|
+
## Verification Requirements
|
|
17
|
+
|
|
18
|
+
- Read files before editing them — understand existing code before modifying
|
|
19
|
+
- Verify package existence before installing: `npm view <package>` or check npmjs.com
|
|
20
|
+
- Confirm current state before claiming status — check git, files, build output
|
|
21
|
+
- Check tool availability before assuming it is installed
|
|
22
|
+
|
|
23
|
+
## Attribution
|
|
24
|
+
|
|
25
|
+
{{ATTRIBUTION_RULE}}
|
|
26
|
+
|
|
27
|
+
## Human-in-the-Loop Escalation
|
|
28
|
+
|
|
29
|
+
When you encounter an unexpected blocker, ambiguous requirement, or situation not covered by the current context:
|
|
30
|
+
|
|
31
|
+
1. **STOP** — do not invent a workaround or make assumptions
|
|
32
|
+
2. **Describe** the situation clearly: what you tried, what failed, what you need
|
|
33
|
+
3. **Wait** for explicit human instruction before proceeding
|
|
34
|
+
|
|
35
|
+
The cost of pausing is always lower than the cost of acting incorrectly.
|
|
36
|
+
|
|
37
|
+
## Policy File
|
|
38
|
+
|
|
39
|
+
Read `.reagent/policy.yaml` at the start of every session to confirm:
|
|
40
|
+
|
|
41
|
+
- The current `autonomy_level` (L0–L3) — your permitted operation scope
|
|
42
|
+
- `blocked_paths` — directories you must never modify
|
|
43
|
+
- `max_autonomy_level` — ceiling set by a human; never request escalation beyond it
|
|
44
|
+
|
|
45
|
+
## Audit Acknowledgment
|
|
46
|
+
|
|
47
|
+
This session may be subject to audit logging per `.reagent/policy.yaml`. All tool invocations may be recorded. Behave as if every action is observed.
|
|
48
|
+
|
|
49
|
+
## Delegation
|
|
50
|
+
|
|
51
|
+
For non-trivial implementation tasks, delegate to the `reagent-orchestrator` agent before proceeding. The orchestrator enforces BST engineering processes, selects specialist agents, and coordinates multi-step work.
|
|
52
|
+
|
|
53
|
+
Exception: simple read-only questions and direct clarifications may be answered without delegation.
|
|
54
|
+
|
|
55
|
+
<!-- reagent-managed:end -->
|