mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-02-18 20:23:08 +08:00
- Add try-catch around readFileSync in validate-agents, validate-commands, validate-skills to handle TOCTOU races and file read errors - Add validate-hooks.js and all test suites to package.json test script (was only running 4/5 validators and 0/4 test files) - Fix shell variable injection in observe.sh: use os.environ instead of interpolating $timestamp/$OBSERVATIONS_FILE into Python string literals - Fix $? always being 0 in start-observer.sh: capture exit code before conditional since `if !` inverts the status - Add OLD_VERSION validation in release.sh and use pipe delimiter in sed to avoid issues with slash-containing values - Add jq dependency check in evaluate-session.sh before parsing config - Sync .cursor/ copies of all modified shell scripts
144 lines
3.9 KiB
Bash
Executable File
144 lines
3.9 KiB
Bash
Executable File
#!/bin/bash
|
|
# Continuous Learning v2 - Observer Agent Launcher
|
|
#
|
|
# Starts the background observer agent that analyzes observations
|
|
# and creates instincts. Uses Haiku model for cost efficiency.
|
|
#
|
|
# Usage:
|
|
# start-observer.sh # Start observer in background
|
|
# start-observer.sh stop # Stop running observer
|
|
# start-observer.sh status # Check if observer is running
|
|
|
|
set -e
|
|
|
|
CONFIG_DIR="${HOME}/.claude/homunculus"
|
|
PID_FILE="${CONFIG_DIR}/.observer.pid"
|
|
LOG_FILE="${CONFIG_DIR}/observer.log"
|
|
OBSERVATIONS_FILE="${CONFIG_DIR}/observations.jsonl"
|
|
|
|
mkdir -p "$CONFIG_DIR"
|
|
|
|
case "${1:-start}" in
|
|
stop)
|
|
if [ -f "$PID_FILE" ]; then
|
|
pid=$(cat "$PID_FILE")
|
|
if kill -0 "$pid" 2>/dev/null; then
|
|
echo "Stopping observer (PID: $pid)..."
|
|
kill "$pid"
|
|
rm -f "$PID_FILE"
|
|
echo "Observer stopped."
|
|
else
|
|
echo "Observer not running (stale PID file)."
|
|
rm -f "$PID_FILE"
|
|
fi
|
|
else
|
|
echo "Observer not running."
|
|
fi
|
|
exit 0
|
|
;;
|
|
|
|
status)
|
|
if [ -f "$PID_FILE" ]; then
|
|
pid=$(cat "$PID_FILE")
|
|
if kill -0 "$pid" 2>/dev/null; then
|
|
echo "Observer is running (PID: $pid)"
|
|
echo "Log: $LOG_FILE"
|
|
echo "Observations: $(wc -l < "$OBSERVATIONS_FILE" 2>/dev/null || echo 0) lines"
|
|
exit 0
|
|
else
|
|
echo "Observer not running (stale PID file)"
|
|
rm -f "$PID_FILE"
|
|
exit 1
|
|
fi
|
|
else
|
|
echo "Observer not running"
|
|
exit 1
|
|
fi
|
|
;;
|
|
|
|
start)
|
|
# Check if already running
|
|
if [ -f "$PID_FILE" ]; then
|
|
pid=$(cat "$PID_FILE")
|
|
if kill -0 "$pid" 2>/dev/null; then
|
|
echo "Observer already running (PID: $pid)"
|
|
exit 0
|
|
fi
|
|
rm -f "$PID_FILE"
|
|
fi
|
|
|
|
echo "Starting observer agent..."
|
|
|
|
# The observer loop
|
|
(
|
|
trap 'rm -f "$PID_FILE"; exit 0' TERM INT
|
|
|
|
analyze_observations() {
|
|
# Only analyze if observations file exists and has enough entries
|
|
if [ ! -f "$OBSERVATIONS_FILE" ]; then
|
|
return
|
|
fi
|
|
obs_count=$(wc -l < "$OBSERVATIONS_FILE" 2>/dev/null || echo 0)
|
|
if [ "$obs_count" -lt 10 ]; then
|
|
return
|
|
fi
|
|
|
|
echo "[$(date)] Analyzing $obs_count observations..." >> "$LOG_FILE"
|
|
|
|
# Use Claude Code with Haiku to analyze observations
|
|
# This spawns a quick analysis session
|
|
if command -v claude &> /dev/null; then
|
|
exit_code=0
|
|
claude --model haiku --max-turns 3 --print \
|
|
"Read $OBSERVATIONS_FILE and identify patterns. If you find 3+ occurrences of the same pattern, create an instinct file in $CONFIG_DIR/instincts/personal/ following the format in the observer agent spec. Be conservative - only create instincts for clear patterns." \
|
|
>> "$LOG_FILE" 2>&1 || exit_code=$?
|
|
if [ "$exit_code" -ne 0 ]; then
|
|
echo "[$(date)] Claude analysis failed (exit $exit_code)" >> "$LOG_FILE"
|
|
fi
|
|
else
|
|
echo "[$(date)] claude CLI not found, skipping analysis" >> "$LOG_FILE"
|
|
fi
|
|
|
|
# Archive processed observations
|
|
if [ -f "$OBSERVATIONS_FILE" ]; then
|
|
archive_dir="${CONFIG_DIR}/observations.archive"
|
|
mkdir -p "$archive_dir"
|
|
mv "$OBSERVATIONS_FILE" "$archive_dir/processed-$(date +%Y%m%d-%H%M%S).jsonl" 2>/dev/null || true
|
|
touch "$OBSERVATIONS_FILE"
|
|
fi
|
|
}
|
|
|
|
# Handle SIGUSR1 for on-demand analysis
|
|
trap 'analyze_observations' USR1
|
|
|
|
echo "$$" > "$PID_FILE"
|
|
echo "[$(date)] Observer started (PID: $$)" >> "$LOG_FILE"
|
|
|
|
while true; do
|
|
# Check every 5 minutes
|
|
sleep 300
|
|
|
|
analyze_observations
|
|
done
|
|
) &
|
|
|
|
disown
|
|
|
|
# Wait a moment for PID file
|
|
sleep 1
|
|
|
|
if [ -f "$PID_FILE" ]; then
|
|
echo "Observer started (PID: $(cat "$PID_FILE"))"
|
|
echo "Log: $LOG_FILE"
|
|
else
|
|
echo "Failed to start observer"
|
|
exit 1
|
|
fi
|
|
;;
|
|
|
|
*)
|
|
echo "Usage: $0 {start|stop|status}"
|
|
exit 1
|
|
;;
|
|
esac
|