chore: remove Samuel, reduce per-heartbeat token load

- Remove Samuel Stinkpost (terminated) from all files and delete marketing/samuel/
- Update PEM listing in OPERATIONS.md to the 4 role-based keys
- POLICIES.md and TOOLS.md are now conditional reads (only when agents have work to do), not loaded on every heartbeat
- Split product/SOUL.md: core identity stays in SOUL.md, reference material (plugin portfolio, competitive landscape, evaluation framework, spec template) moved to PRODUCT-CONTEXT.md
- CLAUDE.md improvements: add OPERATIONS.md/POLICIES.md/TOOLS.md references, fix adapter list, add PR workflow, document opencode.json purpose

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-25 07:41:51 -04:00
parent e56a6bd9ef
commit 674be5d762
19 changed files with 184 additions and 496 deletions
+5 -11
View File
@@ -15,13 +15,10 @@ This document covers the pod-side setup required to run Privileged Escalation ag
/paperclip/
├── .claude/.credentials.json # Shared Anthropic credentials (all agents symlink to this)
├── secrets/github-pems/ # K8s Secret mount — one PEM per GitHub App
│ ├── countess.pem
│ ├── nancy.pem
│ ├── addison.pem
── gandalf.pem
│ ├── regina.pem
│ ├── hugh.pem
│ └── samuel.pem
│ ├── privilegedescalation-ceo.pem
│ ├── privilegedescalation-cto.pem
│ ├── privilegedescalation-engineer.pem
── privilegedescalation-qa.pem
└── privilegedescalation/
└── agents/ # This repo, cloned here
├── ceo/
@@ -34,8 +31,6 @@ This document covers the pod-side setup required to run Privileged Escalation ag
│ ├── gandalf/.claude/.credentials.json -> /paperclip/.claude/.credentials.json
│ ├── regina/.claude/.credentials.json -> /paperclip/.claude/.credentials.json
│ └── hugh/.claude/.credentials.json -> /paperclip/.claude/.credentials.json
└── marketing/
└── samuel/.claude/.credentials.json -> /paperclip/.claude/.credentials.json
```
## Initial Setup
@@ -71,8 +66,7 @@ kubectl exec -n paperclip deploy/paperclip -- bash -c '
"$AGENTS_DIR/cmo" \
"$AGENTS_DIR/engineering/gandalf" \
"$AGENTS_DIR/engineering/regina" \
"$AGENTS_DIR/engineering/hugh" \
"$AGENTS_DIR/marketing/samuel"; do
"$AGENTS_DIR/engineering/hugh"; do
mkdir -p "$agent_dir/.claude"
ln -sf "$CRED_SOURCE" "$agent_dir/.claude/.credentials.json"