mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-02-11 17:03:22 +08:00
- Add session ID to session filenames (Issue #62) - Add getSessionIdShort() helper for unique per-session tracking - Add async hooks documentation with example - Create iterative-retrieval skill for progressive context refinement - Add continuous-learning-v2 skill with instinct-based learning - Add ecc.tools ecosystem section to README - Update skills list in README All 67 tests passing.
135 lines
3.6 KiB
Bash
Executable File
135 lines
3.6 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 we have enough observations
|
|
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
|
|
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 || true
|
|
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"
|
|
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
|