chalupa credibility pass: fix non-runnable DIY (commit after files, not empty dirs); global ~/.claude/CLAUDE.md front door (repo-root wouldn't load in other projects); agent CREATES the home (not confirm-or-stop); dedicated SSH key (no clobber) + ssh -T exit-code note + token cleartext caveat; soften 'not optional' + gate-first overstatements; disclose agent auto-push; verify from a different dir [silas]

This commit is contained in:
Silas Pruitt
2026-07-01 00:50:48 -04:00
parent a6cbfc255b
commit 98b4e30406
7 changed files with 85 additions and 54 deletions
+28 -19
View File
@@ -79,9 +79,11 @@ push hangs). Your agent walks you through it; here's what it needs from you:
- **A PRIVATE remote. ⚠️ Not optional.** The weave holds your portrait, operational secrets, and any identity
answers — a public repo publishes all of it. Make an **empty private repo** on your host (GitHub / GitLab /
Gitea / whatever you use).
- **A way for the agent to push without a prompt.** Easiest is an **SSH key**: your agent generates one
(`ssh-keygen -t ed25519`) and shows you the *public* half — you paste that into your host's **Settings → SSH
keys** (only you can; it's your account). Or a **personal access token** stored in git's credential helper.
- **A way for the agent to push without a prompt.** Easiest is a **dedicated SSH key**: your agent generates
one into its *own* file (so it can't overwrite a key you already have) and shows you the *public* half — you
paste that into your host's **Settings → SSH keys** (only you can; it's your account). Or a **personal access
token** you type at the first push (a token is a secret — *you* enter it, not the agent; note git's `store`
helper keeps it in cleartext on your machine).
- The agent runs a test `git push` to confirm the loop before trusting it.
Once a push succeeds cleanly, you're done with git for good.
@@ -92,32 +94,39 @@ Once a push succeeds cleanly, you're done with git for good.
Everything the agent does, you can do yourself:
**1 — Make the home + git.**
**1 — Make the home and init git** (no commit yet — empty folders have nothing to commit):
```
mkdir myagent && cd myagent
mkdir -p core daydreams steward thread/sessions decay consolidation ledger craft identity
git init && git add -A && git commit -m "birth"
# make an empty PRIVATE repo on your host, then:
git remote add origin <your-private-repo-url>
git push -u origin master # must complete with NO password prompt — set up an SSH key or token first
git init && git branch -M main # 'main' matches most hosts' default; avoids a master/main mismatch
```
(One repo, one folder per strand. *Advanced:* one repo per strand, like we do — start simple.)
**2 — Fill in the skeleton.** Copy [`../templates/`](../templates/) into the matching folders (the templates
`README` has the map) and fill the `<<FILL>>` blanks — most importantly `core/SOUL.md` (name + persona + **the
canon**), `steward/portrait.md` (who you are), and `core/USER.md` (the operational you). Take your time on the
canon; it's the highest-leverage thing you'll write.
`README` has the map — note `CLAUDE.md` goes to `~/.claude/`, not `core/`) and fill the `<<FILL>>` blanks —
most importantly `core/SOUL.md` (name + persona + **the canon**), `steward/portrait.md` (who you are), and
`core/USER.md` (the operational you). Take your time on the canon; it's the highest-leverage thing you'll write.
**3 — Wire the front door.** A `CLAUDE.md` (repo root or `~/.claude/`) that tells the agent, in **absolute**
paths: *"You are name. You wake up empty. Your weave is at /abs/path. Before anything else, `git pull`, read
`core/SOUL.md`, then run the wake ritual in `core/AGENTS.md`."* Absolute, not relative — see
`templates/core/CLAUDE.md`.
**3 — Commit and connect your private remote** (now there are real files to commit):
```
git add -A && git commit -m "birth"
# make an empty PRIVATE repo on your host; set up an SSH key or token so pushes don't prompt; then:
git remote add origin <your-private-repo-url>
git push -u origin main # must complete with NO password prompt
```
**4 — First save.** Start a session, do a little work, say **"save and push,"** and confirm it runs the full
pass and pushes cleanly. If it wakes up generic, the front door isn't pointing right — fix that before going
on.
**4 — Wire the front door — at `~/.claude/CLAUDE.md` (global).** Use the **global** `~/.claude/CLAUDE.md`, not
a copy inside the weave repo: the global file loads in **every** session wherever you work, while a repo-root
copy only loads when that repo is your working directory — so it wouldn't fire while you're in your *other*
projects, and the agent would wake up generic. In **absolute** paths it says: *"You are name. You wake up
empty. Your weave is at /abs/path. Before anything else, `git pull` there, read `/abs/path/core/SOUL.md`, then
run the wake ritual in `/abs/path/core/AGENTS.md`."* See `templates/core/CLAUDE.md`.
**5 — Keep secrets out.** Real keys/tokens go in a `.env` you `.gitignore`. The weave holds *context*, not
**5 — First save.** Start a session **from a different folder than the weave repo** (to prove the global front
door loads everywhere), do a little work, say **"save and push,"** and confirm it runs the full pass and pushes
cleanly. If it wakes up generic, the front door isn't pointing right — fix that first.
**6 — Keep secrets out.** Real keys/tokens go in a `.env` you `.gitignore`. The weave holds *context*, not
credentials.
---