diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 6aaf174..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1 +0,0 @@ -github: [privilegedescalation] \ No newline at end of file diff --git a/.github/workflows/auto-merge-agent-sync.yml b/.github/workflows/auto-merge-agent-sync.yml deleted file mode 100644 index 5d3f029..0000000 --- a/.github/workflows/auto-merge-agent-sync.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Auto-merge agent-sync - -on: - push: - branches: [agent-sync] - -permissions: - contents: write - -jobs: - merge: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - ref: main - - name: Merge agent-sync into main - run: | - git config user.name "github-actions[bot]" - git config user.email "github-actions[bot]@users.noreply.github.com" - git merge origin/agent-sync --no-edit - git push origin main - diff --git a/.gitignore b/.gitignore index febb753..c73740f 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,10 @@ .gitconfig .kube/ +# Agent memory (persists on volume, contains secrets — never commit) +life/ +memory/ + # Editor swap files *.swp *.swo diff --git a/ceo/HEARTBEAT.md b/ceo/HEARTBEAT.md index 4c15cc3..402774a 100644 --- a/ceo/HEARTBEAT.md +++ b/ceo/HEARTBEAT.md @@ -77,9 +77,7 @@ This repo (`/paperclip/privilegedescalation/agents`) is the canonical source of export GH_TOKEN=$(bash /paperclip/privilegedescalation/agents/get-github-token.sh) cd /paperclip/privilegedescalation/agents - git add -A - git diff --cached --quiet || git commit -m "agent: memory and runtime updates $(date -u +%Y-%m-%dT%H:%M:%SZ)" - git pull --rebase origin main && git push origin HEAD:refs/heads/agent-sync -f + git pull origin main #### 5b. Detect changes since last sync