archived/skills/dogfood/SKILL.md
Generic reflective execution loop — learn from doing, capture friction, improve instructions
npx skillsauth add nicsuzor/academicops dogfoodInstall 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.
A generic loop for learning from doing. Works for framework development, research methodology, teaching design — any domain where the process itself is worth examining.
EXECUTE one step → REFLECT before proceeding → CODIFY if warranted → repeat
Per-step, not per-session. Reflect after every step, not batched at the end.
Do one discrete piece of work. While doing it, notice:
Before proceeding, ask: did the process work as designed?
| Observation | Action | | --------------------------------- | ------------------------------------------ | | One-time friction | Note in task body, continue | | Recurring pattern (seen 3+ times) | Check HEURISTICS.md — codify if missing | | Blocking current work | Fix minimally, file follow-up task | | Better approach found | Document what worked | | Tool or schema gap | File task under relevant project | | Strategic misalignment | Stop. Check vision doc. Discuss with user. |
The step most often skipped. Ask: "What did I learn that should change instructions for future work?"
| Learning type | Where it goes | | ------------------------- | ----------------------------- | | Better workflow steps | Update the workflow .md file | | Missing guardrail | HEURISTICS.md via /learn | | Agent behaviour fix | CORE.md or relevant SKILL.md | | Domain methodology update | The governing methodology doc | | Unclear instruction | Fix the instruction directly |
The loop only works if learnings are persisted as tasks. Otherwise they evaporate.
Create or bind to a parent task for the session's work. All findings are children.
If you found something worth acting on:
mcp__pkb__create_task(
title="[specific finding, not generic]",
parent="<session-task-id>",
tags=["learning", "<domain>"]
)
Title examples:
When creating or revising a plan, create an explicit feedback task:
mcp__pkb__create_task(
title="Review: [plan description] — get feedback on [specific question]",
tags=["feedback", "<domain>"]
)
When completing work that changed instructions or methodology:
mcp__pkb__create_task(
title="Verify: [change description] — did it work in practice?",
tags=["verification", "<domain>"],
body="Check in 3 sessions whether [specific observable outcome]."
)
Before starting, and when strategic misalignment is detected:
$AOPS/docs/VISION.md + $ACA_DATA/.agent/BUTLER.mdWhen explicitly dogfooding (e.g., "dogfood this", interactive framework session), the agent has scope over both the task being executed AND the instructions being tested. This is not scope expansion — it is the task. Custodiet should not flag inline fixes to the dogfooded artifact as out-of-scope.
aops-core/commands/learn.md — the framework's immune system (root cause → enforcement)aops-core/skills/hydrator/workflows/dogfooding.md — the original framework-specific versionspecs/feedback-loops.md — the full Observe→Analyze→Diagnose→Intervene→Verify architecturetools
Streamlit implementation of the analyst presentation layer. Use when building or updating a Streamlit dashboard that displays pre-computed research data. This is the Streamlit-specific HOW for the tech-agnostic principles in the aops-tools analyst skill — display only, never transform.
tools
Python plotting and statistical-modelling libraries (matplotlib, seaborn, statsmodels) for the analyst presentation and statistical-methodology layers. Use when producing publication-quality figures or fitting statistical models in Python. Library-specific HOW for the tech-agnostic principles in the aops-tools analyst skill.
tools
dbt (data build tool) implementation of the analyst transformation layer. Use when a project has a dbt/ directory or you need to build, test, or document SQL transformations as version-controlled, reproducible dbt models. This is the dbt-specific HOW for the tech-agnostic principles in the aops-tools analyst skill.
development
Core academicOps skill — institutional memory, strategic coordination, workflow routing, and framework governance. Merges butler (chief-of-staff) with framework development conventions.