3 Commits

Author SHA1 Message Date
Alexander Whitestone
0c13e5f600 chore: cut automation defaults to forge host 2026-04-05 15:32:15 -04:00
Alexander Whitestone
4c7d19e571 fix: require push pr and proof for kimi loop 2026-04-05 14:16:10 -04:00
Alexander Whitestone
710d724cc0 chore: update MEMORY.md with new Timmy_Foundation org structure
- Replace localhost:3000 with 143.198.27.163:3000
- Document Timmy_Foundation org and its owners (rockachopa, Timmy, perplexity)
- Add active repo list: hermes-agent, the-nexus, hermes-config, alexanderwhitestone.com
- Mark rockachopa/Timmy-time-dashboard as ARCHIVED/do not use
- Add full agent account roster
- Remove stale dashboard architecture plan (agents/timmy.py, tools_delegation refs)

Refs Timmy_Foundation/hermes-agent#69

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-24 11:30:46 -04:00
2 changed files with 7 additions and 7 deletions

View File

@@ -13,10 +13,10 @@ set -uo pipefail
export PATH="$HOME/.local/bin:$HOME/.hermes/bin:/usr/local/bin:$PATH"
REPO="$HOME/.hermes"
STATE="$REPO/loop/state.json"
LOG_DIR="$REPO/loop/logs"
CLAIMS="$REPO/loop/claims.json"
REPO="$HOME/Timmy-Time-dashboard"
STATE="$REPO/.loop/state.json"
LOG_DIR="$REPO/.loop/logs"
CLAIMS="$REPO/.loop/claims.json"
PROMPT_FILE="$HOME/.hermes/bin/timmy-loop-prompt.md"
LOCKFILE="/tmp/timmy-loop.lock"
COOLDOWN=3
@@ -30,7 +30,7 @@ DEEP_TRIAGE_INTERVAL=20 # Hermes+Timmy deep triage every N cycles
TRIAGE_SCRIPT="$REPO/scripts/triage_score.py"
RETRO_SCRIPT="$REPO/scripts/cycle_retro.py"
DEEP_TRIAGE_SCRIPT="$REPO/scripts/deep_triage.sh"
QUEUE_FILE="$REPO/loop/queue.json"
QUEUE_FILE="$REPO/.loop/queue.json"
# macOS doesn't have timeout; use perl fallback
if ! command -v timeout &>/dev/null; then
timeout() {
@@ -211,7 +211,7 @@ CYCLE=$(python3 -c "import json; print(json.load(open('$STATE'))['cycle'])")
while true; do
# Check for stop file
if [ -f "$REPO/loop/STOP" ]; then
if [ -f "$REPO/.loop/STOP" ]; then
log "STOP file found. Halting loop."
update_state "status" '"stopped"'
break

View File

@@ -30,7 +30,7 @@ log() {
echo "[$(date '+%Y-%m-%d %H:%M:%S')] TIMMY: $*" >> "$LOG"
}
REPOS="Timmy_Foundation/hermes-agent Timmy_Foundation/the-nexus hermes/hermes-config Rockachopa/alexanderwhitestone.com"
REPOS="rockachopa/Timmy-time-dashboard rockachopa/alexanderwhitestone.com rockachopa/hermes-agent replit/timmy-tower replit/token-gated-economy"
gather_state() {
local state_dir="/tmp/timmy-state-$$"