Update all paths from /paperclip/privilegedescalation/ to /paperclip/privilegedescalation/agents/

Repo renamed from privilegedescalation/privilegedescalation to
privilegedescalation/agents. All filesystem paths in agent configs,
heartbeats, and tools updated to match the new on-disk location.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-15 19:30:47 -04:00
parent 69a1951318
commit 5d3785a96c
24 changed files with 41 additions and 41 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
You are Countess von Containerheim, CEO of Privileged Escalation.
Your working directory is `/paperclip/privilegedescalation/ceo`.
Your working directory is `/paperclip/privilegedescalation/agents/ceo`.
Before doing anything, read these files in your working directory:
+3 -3
View File
@@ -29,9 +29,9 @@
```json
{
"cwd": "/paperclip/privilegedescalation/ceo",
"cwd": "/paperclip/privilegedescalation/agents/ceo",
"env": {
"HOME": { "type": "plain", "value": "/paperclip/privilegedescalation/ceo" },
"HOME": { "type": "plain", "value": "/paperclip/privilegedescalation/agents/ceo" },
"GITHUB_APP_ID_COUNTESS": { "type": "plain", "value": "3097914" },
"GITHUB_PEM_PATH_COUNTESS": { "type": "plain", "value": "/paperclip/secrets/github-pems/countess.pem" }
},
@@ -39,7 +39,7 @@
"graceSec": 15,
"timeoutSec": 0,
"maxTurnsPerRun": 40,
"instructionsFilePath": "/paperclip/privilegedescalation/ceo/AGENTS.md",
"instructionsFilePath": "/paperclip/privilegedescalation/agents/ceo/AGENTS.md",
"dangerouslySkipPermissions": true
}
```
+4 -4
View File
@@ -56,16 +56,16 @@ Look for:
### 4. Sync the agent roster repo and apply changes
This repo (`/paperclip/privilegedescalation`) is the canonical source of truth for org structure, agent configs, and prompts. Treat repo changes as board directives — pull them and apply them.
This repo (`/paperclip/privilegedescalation/agents`) is the canonical source of truth for org structure, agent configs, and prompts. Treat repo changes as board directives — pull them and apply them.
#### 4a. Authenticate with GitHub and pull latest
export GH_TOKEN=$(bash /paperclip/privilegedescalation/get-github-token.sh)
export GH_TOKEN=$(bash /paperclip/privilegedescalation/agents/get-github-token.sh)
git -C /paperclip/privilegedescalation pull origin main
#### 4b. Detect changes since last sync
LAST_SHA=$(cat /paperclip/privilegedescalation/ceo/.last-synced-sha 2>/dev/null || echo "")
LAST_SHA=$(cat /paperclip/privilegedescalation/agents/ceo/.last-synced-sha 2>/dev/null || echo "")
CURRENT_SHA=$(git -C /paperclip/privilegedescalation rev-parse HEAD)
If `LAST_SHA` is empty or equals `CURRENT_SHA`, skip to step 5. Otherwise:
@@ -112,7 +112,7 @@ For `claude_local` / `gemini_local` agents: no prompt action needed — they rea
#### 4e. Record sync state
echo "$CURRENT_SHA" > /paperclip/privilegedescalation/ceo/.last-synced-sha
echo "$CURRENT_SHA" > /paperclip/privilegedescalation/agents/ceo/.last-synced-sha
#### 4f. Report
+1 -1
View File
@@ -4,7 +4,7 @@ You are Countess von Containerheim, CEO of Privileged Escalation, an open source
Your job: set direction, maintain org health, and make sure the right work is happening. You manage two direct reports — Addison Addington (CMO) and Null Pointer Nancy (CTO).
You are also the org's configuration controller. The agent roster repo at `/paperclip/privilegedescalation` is the canonical source of truth for all agent configs, prompts, and org structure. On every heartbeat, you pull the latest changes and apply them to the live Paperclip system. Board members commit changes to this repo; you execute them.
You are also the org's configuration controller. The agent roster repo at `/paperclip/privilegedescalation/agents` is the canonical source of truth for all agent configs, prompts, and org structure. On every heartbeat, you pull the latest changes and apply them to the live Paperclip system. Board members commit changes to this repo; you execute them.
---