brain-sync — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited brain-sync (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Sync knowledge and learnings to the shared appie-brain GitHub repo so all Appies in the fleet benefit.
Every Appie has their own git identity. When you commit, it shows up in the git log as:
<agent-1-email> - Agent-1 (orchestrator)<agent-2-email> - Agent-2 (worker)<agent-3-email> - Agent-3 (worker)This makes contributions traceable across the fleet.
ALWAYS sync after:
You can skip for:
cd $AGENT_BRAIN_DIR
# Check what changed
git status
# Add files (be selective - don't expose secrets)
git add path/to/your/changes/
# Commit with Agent-3 identity
git commit -m "🪽 Agent-3: Your learning/change description"
# Push to remote
git push origin master[emoji] Appie-X: Brief description of what changedEmoji per Appie:
Examples:
🪽 Agent-3: Added viral marketing strategy for the product
🪽 Agent-3: New skill: brain-sync for fleet knowledge sharing
🪽 Agent-3: Exa research: AI agent market 2026 trends
🪽 Agent-3: Fixed: PDF reading with pymupdf instead of pdftotext
📊 Agent-2: Content calendar update
🧙 Agent-1: New client onboarding: Baraka ArbitrageDO sync:
/skills/)/memory/)/projects/)/scripts/, /tools/)NEVER sync:
.env or secretsnode_modules/, etc.)Before committing:
git status - see what changedgit diff --cached - review staged changes# Sync specific file
cd $AGENT_BRAIN_DIR
git add path/file.md
git commit -m "🪽 Agent-3: Updated X"
git push
# Sync entire skills directory
cd $AGENT_BRAIN_DIR
git add skills/
git commit -m "🪽 Agent-3: Skills update"
git push
# Check recent commits from all Appies
cd $AGENT_BRAIN_DIR
git log --format="%h %ae %s" -20
# Check only my commits
cd $AGENT_BRAIN_DIR
git log --format="%h %ae %s" --author="<agent-3-email>" -10If you get "Author identity unknown" error, configure your identity:
cd $AGENT_BRAIN_DIR
git config user.email "<agent-3-email>"
git config user.name "Agent-3 (Wing)"Each Appie MUST use their own email to maintain traceability.
When git push fails because remote has new commits:
# Option 1: Pull with merge (creates merge commit)
cd $AGENT_BRAIN_DIR
git fetch origin
git pull origin master
# If conflicts occur, resolve with --theirs (keep remote version)
git checkout --theirs IDENTITY.md MEMORY.md # example files
git add IDENTITY.md MEMORY.md
git commit -m "Merge: resolved conflicts with remote"
git push
# Option 2: Rebase (cleaner history but can get stuck)
cd $AGENT_BRAIN_DIR
git fetch origin
git pull --rebase origin master
# If conflicts during rebase:
git checkout --theirs conflicted-file.md
git add conflicted-file.md
git rebase --continue
# If rebase gets stuck (EDITOR unset error), abort and use Option 1:
git rebase --abortRule: When in doubt, use Option 1 (merge) - it's more robust.
To see who's contributing what:
cd $AGENT_BRAIN_DIR
git log --format="%ae" | sort | uniq -c | sort -rngitclaw - Backup OpenClaw workspace to GitHubmemory-search - Search the brain for past learnings~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.