skills/43-wentorai-research-plugins/skills/domains/education/learning-science-guide/SKILL.md
Evidence-based learning science principles for educational research and practice
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research learning-science-guideInstall 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 comprehensive skill for applying evidence-based learning science principles to educational research, instructional design, and teaching practice. Grounded in cognitive psychology and educational neuroscience.
Working memory has limited capacity. Effective instruction manages three types of cognitive load:
| Load Type | Definition | Design Strategy | |-----------|-----------|-----------------| | Intrinsic | Complexity inherent to the material | Sequence from simple to complex; chunk information | | Extraneous | Load from poor instructional design | Eliminate redundancy; use spatial contiguity | | Germane | Load from schema construction | Use worked examples; encourage self-explanation |
# Estimate cognitive load using element interactivity
def estimate_intrinsic_load(elements: list, interactions: list) -> str:
"""
elements: list of knowledge components
interactions: list of (element_i, element_j) tuples that must be
processed simultaneously
"""
interactivity = len(interactions) / max(len(elements), 1)
if interactivity < 0.3:
return "low intrinsic load - suitable for independent study"
elif interactivity < 0.7:
return "moderate intrinsic load - scaffold with worked examples"
else:
return "high intrinsic load - use fading strategy and segmenting"
# Example: teaching statistical regression
elements = ['variable', 'coefficient', 'intercept', 'residual', 'R-squared']
interactions = [('coefficient', 'variable'), ('intercept', 'residual'),
('coefficient', 'R-squared'), ('residual', 'R-squared')]
print(estimate_intrinsic_load(elements, interactions))
Constructivist approaches emphasize that learners build knowledge through experience. Key active learning strategies with measured effect sizes (Freeman et al., 2014, PNAS):
Testing is not just assessment -- it is a powerful learning tool (Roediger & Karpicke, 2006). Implement the testing effect:
Study Session Structure:
1. Initial encoding (read/watch) - 15 min
2. Free recall (close materials, write) - 10 min
3. Check accuracy and fill gaps - 5 min
4. Spaced retrieval after 1 day - 10 min
5. Spaced retrieval after 7 days - 10 min
6. Spaced retrieval after 30 days - 10 min
Implement optimal review scheduling:
def next_review_interval(repetition: int, ease_factor: float = 2.5,
quality: int = 4) -> float:
"""
SM-2 inspired algorithm.
repetition: number of successful reviews
ease_factor: item difficulty (>= 1.3)
quality: response quality 0-5
"""
if quality < 3:
return 1 # reset to 1 day
if repetition == 0:
return 1
elif repetition == 1:
return 6
else:
interval = 6 * (ease_factor ** (repetition - 1))
# Adjust ease factor
new_ef = ease_factor + (0.1 - (5 - quality) * (0.08 + (5 - quality) * 0.02))
return round(interval, 1)
# Schedule for a moderately difficult concept
for rep in range(6):
days = next_review_interval(rep)
print(f"Review {rep + 1}: after {days} days")
Research shows interleaved practice (mixing problem types) outperforms blocked practice for long-term retention (Rohrer & Taylor, 2007):
Map learning objectives to assessment items across cognitive levels:
remember:
verbs: [define, list, recall, identify]
assessment: "Multiple choice, matching"
understand:
verbs: [explain, summarize, compare, classify]
assessment: "Short answer, concept maps"
apply:
verbs: [solve, demonstrate, use, implement]
assessment: "Problem sets, simulations"
analyze:
verbs: [differentiate, organize, attribute, deconstruct]
assessment: "Case studies, data interpretation"
evaluate:
verbs: [judge, critique, justify, appraise]
assessment: "Peer review, rubric-based essays"
create:
verbs: [design, construct, produce, formulate]
assessment: "Research projects, portfolios"
After administering assessments, compute item difficulty (p-value) and discrimination index to validate question quality. Target p-values between 0.30 and 0.70 and discrimination indices above 0.30 for optimal measurement.
tools
Recommend AND run open-source AI tools, agents, Claude Code / Codex skills, and MCP servers for any stage of a literature review — searching, reading, extracting, synthesizing, screening, citation-checking, and paper writing. Use when the user asks "what tool should I use to..." OR "install/run/use <tool> to ..." for research/lit-review work: automating a survey or related-work section, PDF→Markdown extraction for LLMs (MinerU/marker/docling), PRISMA / systematic review (ASReview), citation-backed Q&A over PDFs (PaperQA2), wiring papers into Claude/Cursor via MCP (arxiv/paper-search/zotero servers), or chatting with a Zotero library. Ships a launcher (scripts/litrun.py) that installs each tool in an isolated venv and runs it. Curated catalog of 70+ vetted projects. 支持中英文(用于「文献综述工具选型」与「一键安装/运行」)。
development
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
documentation
Use when the project collects primary data or runs a field, lab, or survey experiment, before the intervention begins — write the pre-analysis plan, size the sample from a power calculation, and register with the AEA RCT Registry. Apply after the design is chosen in aer-identification and before any outcome data are seen.
tools
Guide economists to authoritative data sources with explicit, confirmed data specifications before retrieval; interfaces with Playwright MCP to navigate portals and extract real data, not articles about data.