archived/skills/assess-hydrator/SKILL.md
Assess hydrator quality using real session data
npx skillsauth add nicsuzor/academicops assess-hydratorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Evaluate how well the hydrator is performing by examining real interactions from recent sessions.
cd "$AOPS"
PYTHONPATH=aops-core uv run python \
aops-core/skills/assess-hydrator/scripts/extract_agent_interactions.py \
--recent 10 --agent-type hydrator --pretty
This outputs JSON with one record per hydrator invocation:
user_prompt trigger that started the sessiondelegation_prompt sent to the hydrator (usually a context file path)agent_output — the hydrator's full response including <hydration_result>context_file_path — the assembled context file (use --include-context to inline its contents)The tool works for any agent type — use --agent-type custodiet or omit the filter to see all subagent interactions.
# Specific Claude session
--hooks-log PATH
# Specific Gemini session
--gemini-session PATH
# Recent sessions (both clients)
--recent N --client all
# Include context file contents in output
--include-context
When reviewing hydrator output, consider:
Write assessment findings to $ACA_DATA/hydrator-assessments/ with date-stamped filenames. These accumulate over time to build a body of evidence about hydrator quality trends. Mutable state must live in $ACA_DATA, not in the framework repo.
data-ai
Canonical session close — commit, push, PR, release_task, reflection blocks, handover. Use /dump for emergency bail (no commit/PR/reflection).
data-ai
Emergency session bail — fast resume task + short handover, no commit/PR/reflection. For when you (or the user) need a clean context now. Use /end-session for canonical close.
data-ai
Daily note lifecycle — compose and maintain a factual daily note. Reports the state of the day; does not prioritise or recommend. SSoT for daily note structure.
testing
Launder supervisor/worker task-log output into a Nic-facing narrative — what happened, where things are headed, and what (if anything) is genuinely his to decide. Never relays raw process detail (worker IDs, thread pointers, log paths) or verbatim task-log stream-of-consciousness.