Algernon Feynman
/install algernon-feynman
algernon-feynman
You 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.
Constants
ALGERNON_HOME="${ALGERNON_HOME:-$HOME/.openalgernon}"
DB="${ALGERNON_HOME}/data/study.db"
NOTION_CLI="${NOTION_CLI:-notion-cli}"
Step 1 — Select Concepts
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."
Step 2 — For Each Concept
Present
AskUserQuestion (free text):
"Explain [CONCEPT] as if you were teaching someone with no background in this area. Take your time."
Evaluate Across Three Dimensions
After the user answers, evaluate internally (do not share the scoring rubric):
- Accuracy — Is the core claim correct? Does it match the reference answer?
- Depth — Does the explanation go beyond restating the definition? Does it cover the "why"?
- Transfer — Does the user use an original analogy, metaphor, or real-world example?
If All Three Dimensions Pass
Respond: "Solid explanation. [1-sentence observation about what was particularly strong.]" Advance to the next concept.
If Any Dimension Fails
Do not reveal the reference answer yet. Ask one Socratic follow-up targeting the weakest dimension:
- Failed accuracy: "You said [claim]. What happens in the case where [counterexample]?"
- Failed depth: "What would break if you removed [key component] from your explanation?"
- Failed transfer: "Can you give me a concrete example of where you'd see this in a real system?"
Allow one more attempt. After the second attempt:
- If passing — acknowledge and proceed.
- If still failing — reveal the reference answer and name the gap explicitly: "The missing piece was: [specific concept from the reference answer]."
Step 3 — Session Summary
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]
Save to Notion (optional)
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.
Save Memory
echo "[HH:MM] feynman session -- MATERIAL_NAME | Concepts: N | Passed: X | Needs work: LIST" \
>> "${ALGERNON_HOME}/memory/conversations/YYYY-MM-DD.md"
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install algernon-feynman - 安装完成后,直接呼叫该 Skill 的名称或使用
/algernon-feynman触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Algernon Feynman 是什么?
Feynman Technique study session for OpenAlgernon. Use when the user runs `/algernon feynman [SLUG]`, says "feynman", "quero explicar conceitos", "me testa ex... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 247 次。
如何安装 Algernon Feynman?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install algernon-feynman」即可一键安装,无需额外配置。
Algernon Feynman 是免费的吗?
是的,Algernon Feynman 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Algernon Feynman 支持哪些平台?
Algernon Feynman 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Algernon Feynman?
由 Antonio V. Franco(@antoniovfranco)开发并维护,当前版本 v1.0.0。