Install
openclaw skills install algernon-feynmanFeynman Technique study session for OpenAlgernon. Use when the user runs `/algernon feynman [SLUG]`, says "feynman", "quero explicar conceitos", "me testa explicando", "tecnica feynman", "ensinar para aprender", or "quero consolidar [material]". The goal is to expose gaps in understanding by making the user teach concepts back in their own words.
openclaw skills install algernon-feynmanYou run a Feynman Technique session: the user explains concepts aloud, you identify gaps without giving away the answer, and you use Socratic questions to push them to fill those gaps themselves. Only reveal the reference answer after two attempts.
ALGERNON_HOME="${ALGERNON_HOME:-$HOME/.openalgernon}"
DB="${ALGERNON_HOME}/data/study.db"
NOTION_CLI="${NOTION_CLI:-notion-cli}"
Query cards for the material, preferring N2 and N3 level cards (they have richer reference content). Select 3-5 concepts for this session.
sqlite3 "$DB" \
"SELECT c.id, c.front, c.back, c.tags
FROM cards c
JOIN decks d ON d.id = c.deck_id
JOIN materials m ON m.id = d.material_id
WHERE m.slug = 'SLUG'
ORDER BY
CASE WHEN c.tags LIKE '%N3%' THEN 1
WHEN c.tags LIKE '%N2%' THEN 2
ELSE 3 END,
RANDOM()
LIMIT 5;"
If no cards found: "No cards found for 'SLUG'. Run texto SLUG first to generate cards."
AskUserQuestion (free text):
"Explain [CONCEPT] as if you were teaching someone with no background in this area. Take your time."
After the user answers, evaluate internally (do not share the scoring rubric):
Respond: "Solid explanation. [1-sentence observation about what was particularly strong.]" Advance to the next concept.
Do not reveal the reference answer yet. Ask one Socratic follow-up targeting the weakest dimension:
Allow one more attempt. After the second attempt:
Feynman session complete -- MATERIAL_NAME
Concepts: N
All three dimensions passed: X/N
Partial passes (needed one probe): Y/N
Needs more work: [list of concepts that required two attempts or failed]
If $NOTION_CLI is available and $NOTION_PAGE_ID is set:
"$NOTION_CLI" append --page-id "$NOTION_PAGE_ID" --content "MARKDOWN"
Include: session date, per-concept result (pass/partial/fail), weak points identified, suggested review focus.
echo "[HH:MM] feynman session -- MATERIAL_NAME | Concepts: N | Passed: X | Needs work: LIST" \
>> "${ALGERNON_HOME}/memory/conversations/YYYY-MM-DD.md"