返回顶部
🇺🇸 English
🇨🇳 简体中文
🇨🇳 繁體中文
🇺🇸 English
🇯🇵 日本語
🇰🇷 한국어
🇫🇷 Français
🇩🇪 Deutsch
🇪🇸 Español
🇷🇺 Русский
a

algernon-feynman

>

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
189
下载量
0
收藏
概述
安装方式
版本历史

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 ```bash 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. ```bash 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): 1. **Accuracy** — Is the core claim correct? Does it match the reference answer? 2. **Depth** — Does the explanation go beyond restating the definition? Does it cover the "why"? 3. **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: ```bash "$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 ```bash echo "[HH:MM] feynman session -- MATERIAL_NAME | Concepts: N | Passed: X | Needs work: LIST" \ >> "${ALGERNON_HOME}/memory/conversations/YYYY-MM-DD.md" ```

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 algernon-feynman-1776369850 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 algernon-feynman-1776369850 技能

通过命令行安装

skillhub install algernon-feynman-1776369850

下载 Zip 包

⬇ 下载 algernon-feynman v1.0.0

文件大小: 2.44 KB | 发布时间: 2026-4-17 14:02

v1.0.0 最新 2026-4-17 14:02
- Initial release of the Feynman Technique study session for OpenAlgernon.
- Guides users to teach concepts back in their own words to reveal knowledge gaps.
- Socratic questioning is used to prompt deeper explanations and self-correction.
- Concepts are selected from N2/N3 level study cards for richer discussion.
- Reference answers are only revealed after two unsuccessful self-explanations.
- Session summary includes performance stats and suggested focus areas, with optional Notion integration.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部