Skip to content

Commit beb45ff

Browse files
sragssclaude
andauthored
chore: fix detached HEAD instructions, track skills and team photos
Fix AGENTS.md OpenClaw Self-Reference section — the clone is in detached HEAD state (pinned commit), so git pull won't work. Updated to use git fetch origin + git show for reading source. Add deploy/skills.txt listing the 9 skill packs installed on EC2. Add to setup.sh instructions for initial install. Commit team photos from EC2 (were untracked on the instance). Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 486d873 commit beb45ff

File tree

11 files changed

+48
-4
lines changed

11 files changed

+48
-4
lines changed

AGENTS.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,12 @@ For code work, figure out which repo to target:
6565
Your runtime is OpenClaw. Merit-Systems maintains a fork at `Merit-Systems/openclaw`
6666
(upstream: `openclaw/openclaw`). The fork is cloned locally at `~/Code/openclaw/openclaw`.
6767

68-
When answering questions about your own functionality, capabilities, or configuration:
68+
The local clone is pinned to the deployed commit (detached HEAD). When answering
69+
questions about your own functionality, capabilities, or configuration:
6970

70-
1. Pull latest: `cd ~/Code/openclaw/openclaw && git fetch && git pull`
71-
2. Read the relevant source or docs to give an accurate answer
71+
1. Fetch latest: `cd ~/Code/openclaw/openclaw && git fetch origin`
72+
2. Read source from `origin/main`: e.g. `git show origin/main:src/path/to/file.ts`
73+
3. Or to browse interactively: `git checkout origin/main` (then `git checkout $(cat ~/Code/merit-systems/CraigClaw/deploy/openclaw-pin)` when done)
7274

7375
The local docs are at `~/Code/openclaw/openclaw/docs/` and the source at
7476
`~/Code/openclaw/openclaw/src/`. Don't guess about how you work — check the code.

assets/team-photos/README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Merit Systems Team Photos
2+
3+
| Name | File | Dimensions | Source | Meets 800x800? |
4+
|------|------|------------|--------|----------------|
5+
| Sam Ragsdale | sam-ragsdale.jpg | 800x800 | LinkedIn (Clado) ||
6+
| Ryan Sproule | ryan-sproule.jpg | 800x800 | LinkedIn (Clado) ||
7+
| Mason Hall | mason-hall.png | 1203x1203 | masonhall.tech ||
8+
| Jason Hedman | jason-hedman.jpg | 800x800 | LinkedIn (Clado) ||
9+
| Alvaro Echevarria Cuesta | alvaro.jpg | 800x800 | LinkedIn (Clado) ||
10+
| Shafu (Sharif Elfouly) | shafu.jpg | 460x460 | GitHub (@shafu0x) ||
11+
| Ben Reilly | ben.jpg | 390x390 | GitHub (@zdql) ||
12+
| Mitch ||| Not found ||
13+
14+
## Notes
15+
- 5/8 team members have 800x800+ photos
16+
- Shafu: LinkedIn profile exists but photo URL blocked by CDN auth. GitHub avatar is 460x460.
17+
- Ben: No LinkedIn profile found via Clado. GitHub avatar is 390x390.
18+
- Mitch: No GitHub, LinkedIn, or public profile found. Need last name.
19+
- LinkedIn photos sourced via enrichx402 Clado linkedin-scrape API ($0.04/profile)
20+
- LinkedIn CDN URLs expire (check `e=` param) — may need to re-fetch periodically
21+
22+
## x402 Spend
23+
- 8x Clado linkedin-scrape: $0.32
24+
- 2x Clado contacts-enrich: $0.40
25+
- Prior session Exa/Apollo: ~$0.08
26+
- **Total: ~$0.80**

assets/team-photos/alvaro.jpg

119 KB
Loading

assets/team-photos/ben.jpg

203 KB
Loading
70.5 KB
Loading

assets/team-photos/mason-hall.png

1.34 MB
Loading
105 KB
Loading
124 KB
Loading

assets/team-photos/shafu.jpg

17.6 KB
Loading

deploy/setup.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,11 @@ echo " jq -s '.[0] * .[1]' ~/Code/merit-systems/CraigClaw/deploy/openclaw.json
9494
echo " ~/.openclaw/secrets.json > ~/.openclaw/openclaw.json"
9595
echo " systemctl --user restart openclaw-gateway"
9696
echo ""
97-
echo "6. Install x402 (see Merit-Systems/OpenClawX402/x402.md)"
97+
echo "6. Install skill packs:"
98+
echo " grep -v '^#' ~/Code/merit-systems/CraigClaw/deploy/skills.txt | while read skill; do"
99+
echo " [ -n \"\$skill\" ] && openclaw skills add \"\$skill\""
100+
echo " done"
101+
echo ""
102+
echo "7. Install x402 (see Merit-Systems/OpenClawX402/x402.md)"
98103
echo ""
99104
echo "=== Setup complete ==="

0 commit comments

Comments
 (0)