eduevidence 5.2.0 → 6.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CONTRIBUTING.md +105 -0
- package/README.md +142 -75
- package/README.zh-CN.md +73 -30
- package/SKILL.md +397 -131
- package/agents/openai.yaml +4 -0
- package/assets/readme/controlled-execution.svg +34 -0
- package/assets/readme/landing-tour.gif +0 -0
- package/assets/readme/logo.png +0 -0
- package/assets/readme/research-workflow.svg +56 -0
- package/assets/readme/studio-graph.png +0 -0
- package/assets/readme/studio-overview.png +0 -0
- package/assets/readme/studio-reports.png +0 -0
- package/assets/readme/studio-tour.gif +0 -0
- package/autoevolve/config.yaml +17 -0
- package/autoevolve/program.md +25 -0
- package/autoevolve/protected.manifest.yaml +34 -0
- package/benchmarks/adversarial/cases.jsonl +7 -0
- package/benchmarks/evidence-library.json +5268 -0
- package/benchmarks/partitions.json +8 -0
- package/bin/eduevidence.js +2 -1
- package/docs/architecture.md +496 -0
- package/docs/autoresearch-evolution-plan.md +2903 -0
- package/docs/autoresearch-implementation-status.md +101 -0
- package/docs/demo-storyboard.md +20 -0
- package/docs/demo-workplace-ai.md +92 -0
- package/docs/demo.md +32 -0
- package/docs/install-guide.md +150 -0
- package/docs/orchestration-role-model.md +1254 -0
- package/docs/release-closeout/README.md +17 -0
- package/docs/release-closeout/frontend-acceptance.md +23 -0
- package/docs/release-closeout/issues.md +19 -0
- package/docs/release-closeout/verification.md +28 -0
- package/docs/release-contract.md +108 -0
- package/docs/research-studio-guide.zh-CN.md +166 -0
- package/docs/sciverse-api.md +125 -0
- package/eduevidence_cli.py +29 -13
- package/engine/_resources.py +13 -0
- package/engine/autoevolve/__init__.py +3 -0
- package/engine/autoevolve/agent_view.py +167 -0
- package/engine/autoevolve/core.py +357 -0
- package/engine/autoevolve/events.py +11 -0
- package/engine/autoevolve/git_workspace.py +77 -0
- package/engine/autoevolve/projection.py +23 -0
- package/engine/autoevolve/runner.py +413 -0
- package/engine/autoevolve/trust.py +146 -0
- package/engine/autoresearch/__init__.py +6 -0
- package/engine/autoresearch/commit.py +132 -0
- package/engine/autoresearch/contracts.py +126 -0
- package/engine/autoresearch/controller.py +207 -0
- package/engine/autoresearch/events.py +12 -0
- package/engine/autoresearch/gap_priority.py +168 -0
- package/engine/autoresearch/projection.py +30 -0
- package/engine/autoresearch/research_memory.py +59 -0
- package/engine/autoresearch/saturation.py +91 -0
- package/engine/briefs.py +2 -1
- package/engine/capabilities.py +1 -0
- package/engine/contracts.py +3 -1
- package/engine/decision_policy.py +96 -0
- package/engine/evidence_graph.py +14 -10
- package/engine/evidencecore.py +7 -5
- package/engine/gaps.py +132 -73
- package/engine/ids.py +2 -0
- package/engine/judge_pack.py +65 -0
- package/engine/library.py +6 -2
- package/engine/library_builtin.py +3 -1
- package/engine/living.py +36 -5
- package/engine/meta_synthesis.py +3 -1
- package/engine/migration.py +88 -3
- package/engine/orchestration.py +460 -0
- package/engine/paths.py +2 -0
- package/engine/pilot.py +36 -33
- package/engine/project.py +2 -2
- package/engine/research_service.py +113 -0
- package/engine/studio_read_model.py +400 -0
- package/engine/taxonomy.py +211 -0
- package/engine/tribunal.py +44 -33
- package/engine/update.py +1 -0
- package/engine/versions.py +1 -1
- package/engine/worker_result.py +109 -0
- package/engine/workflows.py +70 -0
- package/examples/ai-coding-assistant-evidence/EduEvidence_Report.html +2934 -0
- package/examples/ai-coding-assistant-evidence/artifact_manifest.json +15 -0
- package/examples/ai-coding-assistant-evidence/citation_check.json +79 -0
- package/examples/ai-coding-assistant-evidence/claims.jsonl +12 -0
- package/examples/ai-coding-assistant-evidence/evaluation.json +35 -0
- package/examples/ai-coding-assistant-evidence/evidence.jsonl +12 -0
- package/examples/ai-coding-assistant-evidence/final_verdict.json +107 -0
- package/examples/ai-coding-assistant-evidence/frame.json +48 -0
- package/examples/ai-coding-assistant-evidence/gate_report.json +101 -0
- package/examples/ai-coding-assistant-evidence/intervention.json +51 -0
- package/examples/ai-coding-assistant-evidence/methodology.json +36 -0
- package/examples/ai-coding-assistant-evidence/raw_verdict.json +86 -0
- package/examples/ai-coding-assistant-evidence/report_spec.json +230 -0
- package/examples/ai-coding-assistant-evidence/reports-5themes/EduEvidence_Report_academic.html +2934 -0
- package/examples/ai-coding-assistant-evidence/reports-5themes/EduEvidence_Report_claude.html +2934 -0
- package/examples/ai-coding-assistant-evidence/reports-5themes/EduEvidence_Report_datalab-dark.html +2934 -0
- package/examples/ai-coding-assistant-evidence/reports-5themes/EduEvidence_Report_datalab.html +2934 -0
- package/examples/ai-coding-assistant-evidence/reports-5themes/EduEvidence_Report_presentation.html +2934 -0
- package/examples/ai-coding-assistant-evidence/reports-5themes/report_academic.html +2934 -0
- package/examples/ai-coding-assistant-evidence/reports-5themes/report_claude.html +2934 -0
- package/examples/ai-coding-assistant-evidence/reports-5themes/report_datalab-dark.html +2934 -0
- package/examples/ai-coding-assistant-evidence/reports-5themes/report_datalab.html +2934 -0
- package/examples/ai-coding-assistant-evidence/reports-5themes/report_presentation.html +2934 -0
- package/examples/ai-coding-assistant-evidence/result.json +1457 -0
- package/examples/ai-coding-assistant-evidence/result.zh.json +1457 -0
- package/examples/ai-coding-assistant-evidence/skeptic.json +72 -0
- package/examples/ai-coding-assistant-evidence/sources.jsonl +8 -0
- package/examples/ai-coding-assistant-evidence/verdict.json +107 -0
- package/examples/spaced-retrieval-practice/applicability.json +14 -0
- package/examples/spaced-retrieval-practice/artifact_manifest.json +15 -0
- package/examples/spaced-retrieval-practice/claims.jsonl +3 -0
- package/examples/spaced-retrieval-practice/evidence.jsonl +6 -0
- package/examples/spaced-retrieval-practice/final_verdict.json +93 -0
- package/examples/spaced-retrieval-practice/frame.json +58 -0
- package/examples/spaced-retrieval-practice/gate_report.json +101 -0
- package/examples/spaced-retrieval-practice/methodology.json +78 -0
- package/examples/spaced-retrieval-practice/report_spec.json +212 -0
- package/examples/spaced-retrieval-practice/reports-5themes/EduEvidence_Report_academic.html +2728 -0
- package/examples/spaced-retrieval-practice/reports-5themes/EduEvidence_Report_claude.html +2728 -0
- package/examples/spaced-retrieval-practice/reports-5themes/EduEvidence_Report_datalab-dark.html +2728 -0
- package/examples/spaced-retrieval-practice/reports-5themes/EduEvidence_Report_datalab.html +2728 -0
- package/examples/spaced-retrieval-practice/reports-5themes/EduEvidence_Report_presentation.html +2728 -0
- package/examples/spaced-retrieval-practice/reports-5themes/report_academic.html +2728 -0
- package/examples/spaced-retrieval-practice/reports-5themes/report_claude.html +2728 -0
- package/examples/spaced-retrieval-practice/reports-5themes/report_datalab-dark.html +2728 -0
- package/examples/spaced-retrieval-practice/reports-5themes/report_datalab.html +2728 -0
- package/examples/spaced-retrieval-practice/reports-5themes/report_presentation.html +2728 -0
- package/examples/spaced-retrieval-practice/result.json +942 -0
- package/examples/spaced-retrieval-practice/result.zh.json +942 -0
- package/examples/spaced-retrieval-practice/skeptic.json +70 -0
- package/examples/spaced-retrieval-practice/sources.jsonl +7 -0
- package/examples/spaced-retrieval-practice/verdict.json +93 -0
- package/examples/workplace-ai-assistant/artifact_manifest.json +15 -0
- package/examples/workplace-ai-assistant/claims.jsonl +4 -0
- package/examples/workplace-ai-assistant/evaluation.json +19 -0
- package/examples/workplace-ai-assistant/evidence.jsonl +4 -0
- package/examples/workplace-ai-assistant/evidence_graph.json +444 -0
- package/examples/workplace-ai-assistant/final_verdict.json +78 -0
- package/examples/workplace-ai-assistant/frame.json +41 -0
- package/examples/workplace-ai-assistant/gate_report.json +101 -0
- package/examples/workplace-ai-assistant/intervention.json +27 -0
- package/examples/workplace-ai-assistant/legacy-link-check.json +16 -0
- package/examples/workplace-ai-assistant/methodology.json +60 -0
- package/examples/workplace-ai-assistant/report_spec.json +224 -0
- package/examples/workplace-ai-assistant/reports-5themes/EduEvidence_Report_academic.html +2814 -0
- package/examples/workplace-ai-assistant/reports-5themes/EduEvidence_Report_claude.html +2814 -0
- package/examples/workplace-ai-assistant/reports-5themes/EduEvidence_Report_datalab-dark.html +2814 -0
- package/examples/workplace-ai-assistant/reports-5themes/EduEvidence_Report_datalab.html +2814 -0
- package/examples/workplace-ai-assistant/reports-5themes/EduEvidence_Report_presentation.html +2814 -0
- package/examples/workplace-ai-assistant/reports-5themes/report_academic.html +2814 -0
- package/examples/workplace-ai-assistant/reports-5themes/report_claude.html +2814 -0
- package/examples/workplace-ai-assistant/reports-5themes/report_datalab-dark.html +2814 -0
- package/examples/workplace-ai-assistant/reports-5themes/report_datalab.html +2814 -0
- package/examples/workplace-ai-assistant/reports-5themes/report_presentation.html +2814 -0
- package/examples/workplace-ai-assistant/result.json +615 -0
- package/examples/workplace-ai-assistant/result.zh.json +615 -0
- package/examples/workplace-ai-assistant/search_log.json +19 -0
- package/examples/workplace-ai-assistant/skeptic.json +72 -0
- package/examples/workplace-ai-assistant/sources.jsonl +3 -0
- package/examples/workplace-ai-assistant/validation_result.json +9 -0
- package/examples/workplace-ai-assistant/verdict.json +78 -0
- package/install.sh +7 -7
- package/integrations/agent_mcp.py +2 -2
- package/integrations/orchestration_dispatch.py +146 -0
- package/package.json +46 -3
- package/pyproject.toml +14 -22
- package/references/autoresearch.md +30 -0
- package/references/evaluation-policy.md +24 -0
- package/references/orchestration.md +22 -0
- package/references/report-copy-style.md +67 -0
- package/references/retrieval-compliance.md +75 -0
- package/references/retrieval-protocol.md +20 -0
- package/references/scientific-invariants.md +19 -0
- package/retrieval/audit.py +178 -0
- package/retrieval/fetch.py +96 -0
- package/retrieval/sciverse.py +398 -0
- package/retrieval/search.py +47 -7
- package/schemas/applicability.schema.json +94 -0
- package/schemas/chart-spec.schema.json +10 -3
- package/schemas/evidence.schema.json +316 -43
- package/schemas/fetch-result.schema.json +2 -1
- package/schemas/intervention.schema.json +106 -21
- package/schemas/report-result.schema.json +12 -4
- package/schemas/report-spec.schema.json +98 -100
- package/schemas/skeptic.schema.json +86 -0
- package/schemas/source.schema.json +21 -2
- package/schemas/v2/finding.schema.json +5 -1
- package/schemas/v2/methodology-audit.schema.json +5 -1
- package/schemas/v2/outcome.schema.json +28 -5
- package/schemas/v2/project.schema.json +2 -2
- package/schemas/v2/run.schema.json +1 -1
- package/schemas/v2/study.schema.json +5 -1
- package/schemas/vNext/autoevolve-session.schema.json +34 -0
- package/schemas/vNext/eval-snapshot.schema.json +77 -0
- package/schemas/vNext/execution-plan.schema.json +50 -0
- package/schemas/vNext/gap-priority.schema.json +54 -0
- package/schemas/vNext/negative-search-record.schema.json +68 -0
- package/schemas/vNext/research-iteration.schema.json +87 -0
- package/schemas/vNext/research-strategy.schema.json +62 -0
- package/schemas/vNext/skill-experiment.schema.json +90 -0
- package/schemas/vNext/task-spec.schema.json +156 -0
- package/schemas/vNext/worker-result.schema.json +60 -0
- package/schemas/verdict.schema.json +164 -28
- package/scripts/benchmark_judge.py +2 -2
- package/scripts/benchmark_v3.py +26 -43
- package/scripts/build_esl_artifacts.py +4 -4
- package/scripts/build_evidence_library.py +2 -2
- package/scripts/build_gh_pages.py +98 -0
- package/scripts/build_readme_diagrams.py +72 -0
- package/scripts/build_report_variants.py +101 -0
- package/scripts/build_result.py +74 -9
- package/scripts/check_autoresearch_invariants.py +95 -0
- package/scripts/check_package_parity.py +85 -0
- package/scripts/check_protocol_alignment.py +375 -0
- package/scripts/check_versioned_schemas.py +254 -0
- package/scripts/claim_audit.py +13 -8
- package/scripts/compute_confidence.py +10 -0
- package/scripts/daily_evolve.py +30 -0
- package/scripts/dashboard_server.py +130 -101
- package/scripts/did_regression.py +17 -32
- package/scripts/enrich_projects_human_and_lieflat.py +1 -1
- package/scripts/evidence_score.py +5 -2
- package/scripts/generate_metrics.py +4 -3
- package/scripts/generate_new_projects.py +5 -5
- package/scripts/orchestrator.py +286 -36
- package/scripts/pre_verdict_gate.py +224 -26
- package/scripts/quickstart.py +18 -2
- package/scripts/rebake_all_5themes.py +1 -2
- package/scripts/research_auto_cli.py +475 -0
- package/scripts/run_workspace.py +24 -8
- package/scripts/search_provenance.py +64 -0
- package/scripts/serve_web.py +9 -10
- package/scripts/skill_lint.py +1 -1
- package/scripts/skill_payload.py +81 -0
- package/scripts/test_adversarial_empirical.py +26 -19
- package/scripts/validate_schema.py +46 -2
- package/scripts/vnext_cli.py +133 -0
- package/setup.py +12 -0
- package/skill/agents/evaluation-designer.md +20 -4
- package/skill/agents/evidence-analyst.md +19 -3
- package/skill/agents/evidence-judge.md +50 -2
- package/skill/agents/evidence-retriever.md +20 -3
- package/skill/agents/intervention-designer.md +20 -4
- package/skill/agents/method-reviewer.md +18 -2
- package/skill/agents/{education-planner.md → research-planner.md} +19 -3
- package/skill/agents/skeptic.md +18 -2
- package/skill/roles/registry.yaml +45 -0
- package/skill/sub-skills/aihot-trend-analysis/SKILL.md +28 -9
- package/skill/sub-skills/contradiction-analysis/SKILL.md +31 -11
- package/skill/sub-skills/data-analysis/SKILL.md +34 -15
- package/skill/sub-skills/ethics-review/SKILL.md +33 -10
- package/skill/sub-skills/evidence-extraction/SKILL.md +29 -11
- package/skill/sub-skills/evidence-review/SKILL.md +31 -12
- package/skill/sub-skills/gap-analysis/SKILL.md +31 -9
- package/skill/sub-skills/literature-review/SKILL.md +35 -14
- package/skill/sub-skills/methodology-audit/SKILL.md +29 -12
- package/skill/sub-skills/report-generation/SKILL.md +40 -6
- package/skill/sub-skills/research-planning/SKILL.md +41 -14
- package/skill/sub-skills/study-design/SKILL.md +30 -9
- package/skill/task-briefs/adjudicate.md +32 -7
- package/skill/task-briefs/applicability.md +38 -0
- package/skill/task-briefs/audit.md +32 -7
- package/skill/task-briefs/challenge.md +34 -5
- package/skill/task-briefs/evaluate.md +30 -5
- package/skill/task-briefs/extract.md +31 -8
- package/skill/task-briefs/frame.md +39 -10
- package/skill/task-briefs/intervene.md +32 -6
- package/skill/task-briefs/present.md +32 -8
- package/skill/task-briefs/projection.md +37 -0
- package/skill/task-briefs/retrieve.md +36 -6
- package/skill/workflows/decision-and-pilot.md +85 -0
- package/skill/workflows/evaluate-and-update.md +93 -0
- package/skill/workflows/evidence-review.md +117 -0
- package/visualization/eduevidence-report/assets/base.css +2 -2
- package/visualization/eduevidence-report/assets/reader.css +752 -0
- package/visualization/eduevidence-report/assets/reader.js +132 -0
- package/visualization/eduevidence-report/references/chart-selection-catalog.md +109 -0
- package/visualization/eduevidence-report/references/lieflat-composition.md +3 -1
- package/visualization/eduevidence-report/scripts/build_figures.py +25 -3
- package/visualization/eduevidence-report/scripts/build_infographics.py +5 -1
- package/visualization/eduevidence-report/scripts/build_report.py +561 -121
- package/visualization/eduevidence-report/scripts/charts_data.py +2 -0
- package/visualization/eduevidence-report/scripts/lieflat_engine.py +371 -136
- package/visualization/eduevidence-report/scripts/zh_labels.py +80 -1
- package/visualization/eduevidence-report/themes/academic.css +1 -1
- package/visualization/eduevidence-report/themes/claude.css +1 -1
- package/visualization/eduevidence-report/themes/datalab-dark.css +2 -2
- package/visualization/eduevidence-report/themes/datalab.css +2 -2
- package/visualization/eduevidence-report/themes/presentation.css +2 -2
- package/web/README.md +18 -0
- package/web/architecture.html +14885 -0
- package/web/index.html +53 -0
- package/web/studio/THIRD_PARTY_LICENSES.txt +146 -0
- package/web/studio/assets/index-B8tkF44Q.css +1 -0
- package/web/studio/assets/index-CQ6Keoyc.js +230 -0
- package/web/studio/config.json +1 -0
- package/web/studio/index.html +14 -0
- package/engine/__pycache__/__init__.cpython-312.pyc +0 -0
- package/engine/__pycache__/analysis.cpython-312.pyc +0 -0
- package/engine/__pycache__/bias.cpython-312.pyc +0 -0
- package/engine/__pycache__/briefs.cpython-312.pyc +0 -0
- package/engine/__pycache__/capabilities.cpython-312.pyc +0 -0
- package/engine/__pycache__/citation_check.cpython-312.pyc +0 -0
- package/engine/__pycache__/contracts.cpython-312.pyc +0 -0
- package/engine/__pycache__/datasets.cpython-312.pyc +0 -0
- package/engine/__pycache__/events.cpython-312.pyc +0 -0
- package/engine/__pycache__/evidence_graph.cpython-312.pyc +0 -0
- package/engine/__pycache__/evidence_review.cpython-312.pyc +0 -0
- package/engine/__pycache__/evidencecore.cpython-312.pyc +0 -0
- package/engine/__pycache__/gap_lens.cpython-312.pyc +0 -0
- package/engine/__pycache__/gaps.cpython-312.pyc +0 -0
- package/engine/__pycache__/graph_store.cpython-312.pyc +0 -0
- package/engine/__pycache__/graph_validate.cpython-312.pyc +0 -0
- package/engine/__pycache__/ids.cpython-312.pyc +0 -0
- package/engine/__pycache__/library.cpython-312.pyc +0 -0
- package/engine/__pycache__/library_builtin.cpython-312.pyc +0 -0
- package/engine/__pycache__/living.cpython-312.pyc +0 -0
- package/engine/__pycache__/log.cpython-312.pyc +0 -0
- package/engine/__pycache__/meta_analysis.cpython-312.pyc +0 -0
- package/engine/__pycache__/meta_synthesis.cpython-312.pyc +0 -0
- package/engine/__pycache__/migration.cpython-312.pyc +0 -0
- package/engine/__pycache__/mode_router.cpython-312.pyc +0 -0
- package/engine/__pycache__/paths.cpython-312.pyc +0 -0
- package/engine/__pycache__/pilot.cpython-312.pyc +0 -0
- package/engine/__pycache__/planner.cpython-312.pyc +0 -0
- package/engine/__pycache__/project.cpython-312.pyc +0 -0
- package/engine/__pycache__/projections.cpython-312.pyc +0 -0
- package/engine/__pycache__/robustness.cpython-312.pyc +0 -0
- package/engine/__pycache__/run.cpython-312.pyc +0 -0
- package/engine/__pycache__/semantics.cpython-312.pyc +0 -0
- package/engine/__pycache__/study_design.cpython-312.pyc +0 -0
- package/engine/__pycache__/synthesis.cpython-312.pyc +0 -0
- package/engine/__pycache__/tribunal.cpython-312.pyc +0 -0
- package/engine/__pycache__/update.cpython-312.pyc +0 -0
- package/engine/__pycache__/versions.cpython-312.pyc +0 -0
- package/integrations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/integrations/__pycache__/agent_mcp.cpython-312.pyc +0 -0
- package/integrations/__pycache__/smart_web_fetch.cpython-312.pyc +0 -0
- package/retrieval/__pycache__/__init__.cpython-312.pyc +0 -0
- package/retrieval/__pycache__/corpus_store.cpython-312.pyc +0 -0
- package/retrieval/__pycache__/dedupe.cpython-312.pyc +0 -0
- package/retrieval/__pycache__/failures.cpython-312.pyc +0 -0
- package/retrieval/__pycache__/fetch.cpython-312.pyc +0 -0
- package/retrieval/__pycache__/search.cpython-312.pyc +0 -0
- package/retrieval/__pycache__/source.cpython-312.pyc +0 -0
- package/retrieval/__pycache__/validate.cpython-312.pyc +0 -0
- package/scripts/__pycache__/__init__.cpython-312.pyc +0 -0
- package/scripts/__pycache__/benchmark.cpython-312.pyc +0 -0
- package/scripts/__pycache__/benchmark_evaluator.cpython-312.pyc +0 -0
- package/scripts/__pycache__/benchmark_judge.cpython-312.pyc +0 -0
- package/scripts/__pycache__/benchmark_routing.cpython-312.pyc +0 -0
- package/scripts/__pycache__/benchmark_v2.cpython-312.pyc +0 -0
- package/scripts/__pycache__/benchmark_v3.cpython-312.pyc +0 -0
- package/scripts/__pycache__/build_result.cpython-312.pyc +0 -0
- package/scripts/__pycache__/claim_audit.cpython-312.pyc +0 -0
- package/scripts/__pycache__/complexity_gate.cpython-312.pyc +0 -0
- package/scripts/__pycache__/compute_confidence.cpython-312.pyc +0 -0
- package/scripts/__pycache__/dashboard_server.cpython-312.pyc +0 -0
- package/scripts/__pycache__/did_regression.cpython-312.pyc +0 -0
- package/scripts/__pycache__/effect_calculator.cpython-312.pyc +0 -0
- package/scripts/__pycache__/evidence_matrix.cpython-312.pyc +0 -0
- package/scripts/__pycache__/evidence_score.cpython-312.pyc +0 -0
- package/scripts/__pycache__/evidence_semantics.cpython-312.pyc +0 -0
- package/scripts/__pycache__/fetch_benchmark.cpython-312.pyc +0 -0
- package/scripts/__pycache__/lint_report_layout.cpython-312.pyc +0 -0
- package/scripts/__pycache__/orchestrator.cpython-312.pyc +0 -0
- package/scripts/__pycache__/pre_verdict_gate.cpython-312.pyc +0 -0
- package/scripts/__pycache__/recompute_demo_quality.cpython-312.pyc +0 -0
- package/scripts/__pycache__/render_report.cpython-312.pyc +0 -0
- package/scripts/__pycache__/render_report_html.cpython-312.pyc +0 -0
- package/scripts/__pycache__/run_workspace.cpython-312.pyc +0 -0
- package/scripts/__pycache__/skill_lint.cpython-312.pyc +0 -0
- package/scripts/__pycache__/startup_probe.cpython-312.pyc +0 -0
- package/scripts/__pycache__/sync_killer_demo_report.cpython-312.pyc +0 -0
- package/scripts/__pycache__/test_adversarial_empirical.cpython-312-pytest-9.0.2.pyc +0 -0
- package/scripts/__pycache__/test_adversarial_empirical.cpython-312-pytest-9.1.1.pyc +0 -0
- package/scripts/__pycache__/validate_schema.cpython-312.pyc +0 -0
- package/visualization/eduevidence-report/scripts/__pycache__/adapter_contract.cpython-312.pyc +0 -0
- package/visualization/eduevidence-report/scripts/__pycache__/build_artifact_manifest.cpython-312.pyc +0 -0
- package/visualization/eduevidence-report/scripts/__pycache__/build_charts.cpython-312.pyc +0 -0
- package/visualization/eduevidence-report/scripts/__pycache__/build_figures.cpython-312.pyc +0 -0
- package/visualization/eduevidence-report/scripts/__pycache__/build_infographics.cpython-312.pyc +0 -0
- package/visualization/eduevidence-report/scripts/__pycache__/build_report.cpython-312.pyc +0 -0
- package/visualization/eduevidence-report/scripts/__pycache__/charts_data.cpython-312.pyc +0 -0
- package/visualization/eduevidence-report/scripts/__pycache__/lieflat_engine.cpython-312.pyc +0 -0
- package/visualization/eduevidence-report/scripts/__pycache__/zh_labels.cpython-312.pyc +0 -0
|
@@ -0,0 +1,1457 @@
|
|
|
1
|
+
{
|
|
2
|
+
"meta": {
|
|
3
|
+
"skill": "eduevidence",
|
|
4
|
+
"version": "6.2.0",
|
|
5
|
+
"generated_at": "2026-08-24T04:39:14.576951+00:00",
|
|
6
|
+
"mode": "platform_native",
|
|
7
|
+
"question": "我们准备在大学一年级 C 语言课程中允许学生使用生成式 AI 编程助手。它到底会不会提高学习效果?应该怎样引入?",
|
|
8
|
+
"data_origin": "manual_curated"
|
|
9
|
+
},
|
|
10
|
+
"execution": {
|
|
11
|
+
"complexity": "M",
|
|
12
|
+
"mode": "platform_native",
|
|
13
|
+
"agents": [],
|
|
14
|
+
"usage": {
|
|
15
|
+
"measurement_status": "NOT_CAPTURED",
|
|
16
|
+
"input_tokens": null,
|
|
17
|
+
"output_tokens": null,
|
|
18
|
+
"cost_usd": null,
|
|
19
|
+
"latency_s": null
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"research_frame": {
|
|
23
|
+
"question": "我们准备在大学一年级 C 语言课程中允许学生使用生成式 AI 编程助手。它到底会不会提高学习效果?应该怎样引入?",
|
|
24
|
+
"decision_target": "teaching_decision",
|
|
25
|
+
"learner": {
|
|
26
|
+
"education_level": "undergraduate_year_1",
|
|
27
|
+
"major": "computer_science",
|
|
28
|
+
"prior_knowledge": "first_programming_course_no_prior_text_based_programming",
|
|
29
|
+
"special_characteristics": "mixed_ability_large_class_60_students"
|
|
30
|
+
},
|
|
31
|
+
"course": {
|
|
32
|
+
"subject": "C_programming",
|
|
33
|
+
"course_type": "lecture_lab",
|
|
34
|
+
"duration": "16_weeks_one_semester"
|
|
35
|
+
},
|
|
36
|
+
"intervention": {
|
|
37
|
+
"teaching_method": "lecture_with_lab_exercises",
|
|
38
|
+
"ai_tool": "generative_ai_coding_assistant",
|
|
39
|
+
"allowed_usage": "under_design_pending_evidence_review",
|
|
40
|
+
"frequency": "weekly_lab_sessions",
|
|
41
|
+
"duration": "one_semester"
|
|
42
|
+
},
|
|
43
|
+
"comparison": "no_ai_coding_assistant_control",
|
|
44
|
+
"outcomes": {
|
|
45
|
+
"primary": [
|
|
46
|
+
"independent_problem_solving",
|
|
47
|
+
"code_quality"
|
|
48
|
+
],
|
|
49
|
+
"secondary": [
|
|
50
|
+
"completion_time",
|
|
51
|
+
"retention",
|
|
52
|
+
"knowledge_gain"
|
|
53
|
+
],
|
|
54
|
+
"risk": [
|
|
55
|
+
"ai_dependency",
|
|
56
|
+
"over_reliance",
|
|
57
|
+
"reduced_transfer"
|
|
58
|
+
]
|
|
59
|
+
},
|
|
60
|
+
"context": {
|
|
61
|
+
"teacher_support": "TA_supported_two_TAs",
|
|
62
|
+
"class_size": "60_students",
|
|
63
|
+
"online_or_offline": "offline"
|
|
64
|
+
},
|
|
65
|
+
"scope": {
|
|
66
|
+
"time_range": "2021-2026",
|
|
67
|
+
"geography": "worldwide",
|
|
68
|
+
"study_types": [
|
|
69
|
+
"rct",
|
|
70
|
+
"quasi_experimental",
|
|
71
|
+
"observational"
|
|
72
|
+
]
|
|
73
|
+
},
|
|
74
|
+
"inclusion_criteria": [
|
|
75
|
+
"studies_of_generative_AI_coding_tools_in_learning_to_program",
|
|
76
|
+
"outcomes_measuring_learning_not_only_task_speed",
|
|
77
|
+
"university_or_novice_programming_populations"
|
|
78
|
+
],
|
|
79
|
+
"exclusion_criteria": [
|
|
80
|
+
"practitioner_anecdotes_without_data",
|
|
81
|
+
"industry_professional_populations_only"
|
|
82
|
+
],
|
|
83
|
+
"success_condition": "independent problem solving and code quality improve (or do not decline) while AI dependency risk stays controlled; evidence base supports a bounded pilot."
|
|
84
|
+
},
|
|
85
|
+
"decision": {
|
|
86
|
+
"decision_question": "大一 C 语言课程是否应该允许学生使用生成式 AI 编程助手?",
|
|
87
|
+
"target_population": "首次学习 C 语言编程的大一计算机专业学生",
|
|
88
|
+
"target_context": "16 周讲授课+实验课,60 人班级,助教支持,线下",
|
|
89
|
+
"supported_claims": [
|
|
90
|
+
"AI 编程助手在训练期间可靠地提升任务表现(完成速度、正确性)—— E-001、E-006。",
|
|
91
|
+
"无护栏的生成式 AI 访问在移除工具后可能损害独立问题解决能力 —— E-004。",
|
|
92
|
+
"护栏设计(给提示而非给答案)能大幅缓解负面学习效应 —— E-005。",
|
|
93
|
+
"任务表现提升并不自动等于学习提升 —— E-004 与 E-006 的研究内对照。",
|
|
94
|
+
"工具能力可观:Codex 能解出约半数至四分之三的 CS1 考试风格题目 —— E-010。",
|
|
95
|
+
"职业开发者 RCT 显示 Copilot 带来约 55% 任务提速;但职业人群限制直接性 —— E-008。",
|
|
96
|
+
"LLM 代码讲解的质量评级与学生自撰讲解相当,可作支架材料 —— E-011。"
|
|
97
|
+
],
|
|
98
|
+
"uncertain_claims": [
|
|
99
|
+
"AI 编程助手能否真正改善或保持大学新手的编程学习——本证据集中没有大学层面的直接 RCT [无直接证据]",
|
|
100
|
+
"Kazemitabaar 2023 的一周中性保持性能否延伸到一个学期 —— E-003。",
|
|
101
|
+
"基准质量结论(E-009)与讲解质量评级(E-011)能否转化为课堂学习收益。",
|
|
102
|
+
"可用性研究所记录的理解/所有权困难(E-012)在整学期护栏条件下会如何演变。"
|
|
103
|
+
],
|
|
104
|
+
"contradicted_claims": [
|
|
105
|
+
"'AI 工具总能提高学习'被 E-004 反驳(无护栏访问,独立考试 −17%)。",
|
|
106
|
+
"'速度收益等于学习收益'被 E-001/E-006/E-008 与 E-004 之间的任务-学习分离所反驳。"
|
|
107
|
+
],
|
|
108
|
+
"reason_for_disagreement": "分歧来自结果分离(任务 vs 学习)、工具设计(有护栏 vs 无护栏)与人群(K-12/职业者 vs 大学生)。随机实验与基准研究中任务表现证据一致为正;唯一测量移除 AI 后独立表现的研究显示无护栏时有害;可用性与工件研究补充依赖与质量警示而非解决学习问题。",
|
|
109
|
+
"methodology_summary": "八个真实来源:三项随机实验(Kazemitabaar 2023,n=69,K-12;Bastani 2025,n≈950,高中数学;Peng 2023,n=95,职业开发者,预印本)、一项 ESL 写作混合方法研究(Marzuki 2024),以及基准/能力/可用性研究(Yetistiren 2023;Finnie-Ansley 2022;讲解对比 2023;Vaithilingam 2022)。无大学编程课程的直接 RCT。核心 RCT 内部效度强;对大一 C 语言情境的直接性弱。所有来源均带注册表核验 DOI(见 benchmarks/doi-audit/report.md)。",
|
|
110
|
+
"outcome_specific_findings": {
|
|
111
|
+
"completion_time": "训练期与职业任务中为正(E-001、E-008)",
|
|
112
|
+
"independent_problem_solving": "无护栏时中性偏负(E-002、E-004)",
|
|
113
|
+
"retention": "一周内中性(E-003)",
|
|
114
|
+
"assignment_score": "练习期为正、闭卷考试为负(E-004、E-006);工具本身在 CS1 题目可达通过水平(E-010)",
|
|
115
|
+
"code_quality": "基准上结论不一;记录到安全隐患(E-009)",
|
|
116
|
+
"metacognition": "LLM 讲解对比占优(E-011),而新手理解/所有权困难仍存(E-012)",
|
|
117
|
+
"ai_dependency": "无护栏工具下记录到拐杖行为(E-004、E-005、E-012)"
|
|
118
|
+
},
|
|
119
|
+
"short_term_effect": "任务表现可靠提升;无护栏时学习效应中性偏负。",
|
|
120
|
+
"long_term_effect": "无超过一周的证据;长期学习效应未知。",
|
|
121
|
+
"transfer_effect": "无完整迁移证据;一项小样本研究中手动代码修改未受损(E-002)。",
|
|
122
|
+
"risk_effect": "无护栏使用的 AI 依赖与过度依赖风险真实且有记录(E-004),可用性发现亦予印证(E-012)。",
|
|
123
|
+
"applicability": {
|
|
124
|
+
"suitable_for": "在大一 C 课程以护栏化使用政策开展试点",
|
|
125
|
+
"not_suitable_for": "无使用政策的全面放开采用",
|
|
126
|
+
"required_conditions": [
|
|
127
|
+
"护栏化 AI 使用政策(给提示不给答案,仿 GPT Tutor 组)",
|
|
128
|
+
"无 AI 迁移评估",
|
|
129
|
+
"助教支持"
|
|
130
|
+
]
|
|
131
|
+
},
|
|
132
|
+
"confidence": "Moderate",
|
|
133
|
+
"confidence_breakdown": {
|
|
134
|
+
"score": 0.586,
|
|
135
|
+
"evidence_quality": 0.758,
|
|
136
|
+
"consistency": 0.667,
|
|
137
|
+
"directness": 0.458,
|
|
138
|
+
"evidence_count": 12,
|
|
139
|
+
"independent_studies": 8,
|
|
140
|
+
"independent_samples": 8,
|
|
141
|
+
"count_term": 1.0,
|
|
142
|
+
"conflict_penalty": 0.15,
|
|
143
|
+
"unsupported_penalty": 0.0
|
|
144
|
+
},
|
|
145
|
+
"what_can_be_claimed": [
|
|
146
|
+
"AI 编程助手在训练期提升新手任务表现。",
|
|
147
|
+
"无护栏访问存在损害独立问题解决的真实风险。",
|
|
148
|
+
"护栏设计可以缓解该风险。",
|
|
149
|
+
"大学 C 语言学习的直接证据缺失。",
|
|
150
|
+
"工具能力余量大(CS1 通过率;职业提速 RCT)。"
|
|
151
|
+
],
|
|
152
|
+
"what_cannot_be_claimed": [
|
|
153
|
+
"AI 编程助手能改善(乃至保持)大学生的编程学习。",
|
|
154
|
+
"任何长期或保持收益。",
|
|
155
|
+
"基于大学样本的任何『哪些学生受益』结论。",
|
|
156
|
+
"基准或可用性发现可替代课堂学习结果。"
|
|
157
|
+
],
|
|
158
|
+
"missing_evidence": [
|
|
159
|
+
"在大学编程课程中带保持与无 AI 迁移测试的 RCT。",
|
|
160
|
+
"同一课程内变化 AI 使用政策的研究。",
|
|
161
|
+
"跨越一门课的 AI 依赖纵向数据。",
|
|
162
|
+
"职业提速 RCT 的同行评审重复(Peng 等仍为预印本)。"
|
|
163
|
+
],
|
|
164
|
+
"recommended_action": "pilot",
|
|
165
|
+
"decision_rationale": "任务表现的正面证据 + 有据可查的无护栏风险 + 混合的质量/可用性信号 + 大学层面学习证据缺失 → 有界、护栏化、带评估的试点,而非全面采用。",
|
|
166
|
+
"exceeds_evidence_boundary": [
|
|
167
|
+
"『AI 编程助手提高学习效果』—— 超出边界:缺少直接学习效应证据。",
|
|
168
|
+
"『AI 对所有人都有效』—— 超出边界:人群与学科错配。"
|
|
169
|
+
],
|
|
170
|
+
"confidence_score": 0.586,
|
|
171
|
+
"confidence_policy_version": "2026-08-12.v3",
|
|
172
|
+
"independent_studies": 8,
|
|
173
|
+
"independent_samples": 8,
|
|
174
|
+
"raw_model_confidence": "Moderate",
|
|
175
|
+
"raw_model_confidence_breakdown": {
|
|
176
|
+
"score": 0.586,
|
|
177
|
+
"evidence_quality": 0.758,
|
|
178
|
+
"consistency": 0.667,
|
|
179
|
+
"directness": 0.458,
|
|
180
|
+
"evidence_count": 12,
|
|
181
|
+
"independent_studies": 8,
|
|
182
|
+
"independent_samples": 8,
|
|
183
|
+
"count_term": 1.0,
|
|
184
|
+
"conflict_penalty": 0.15,
|
|
185
|
+
"unsupported_penalty": 0.0
|
|
186
|
+
},
|
|
187
|
+
"strongest_support": "AI 编程助手在训练期稳定提升练习效率:69 名新手的随机对照中完成率 1.15 倍、用时 0.57 倍。",
|
|
188
|
+
"key_uncertainty": "缺少大学层面的直接学习证据;唯一大规模试验显示,无护栏使用 GPT-4 的学生独立考试成绩下降 17%。",
|
|
189
|
+
"main_risk": "无护栏使用会抬高练习表现却压低独立考试表现,而学习者往往意识不到这一落差。",
|
|
190
|
+
"next_action": "开展分阶段 CS1 试点:给提示而非答案、每周实验课使用、并以无 AI 迁移考试作为可叫停的验收条件。"
|
|
191
|
+
},
|
|
192
|
+
"outcomes": [
|
|
193
|
+
{
|
|
194
|
+
"outcome_type": "knowledge_gain",
|
|
195
|
+
"positive_count": 1,
|
|
196
|
+
"negative_count": 0,
|
|
197
|
+
"null_count": 0,
|
|
198
|
+
"evidence_ids": [
|
|
199
|
+
"E-007"
|
|
200
|
+
]
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"outcome_type": "retention",
|
|
204
|
+
"positive_count": 0,
|
|
205
|
+
"negative_count": 0,
|
|
206
|
+
"null_count": 1,
|
|
207
|
+
"evidence_ids": [
|
|
208
|
+
"E-003"
|
|
209
|
+
]
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"outcome_type": "independent_problem_solving",
|
|
213
|
+
"positive_count": 0,
|
|
214
|
+
"negative_count": 1,
|
|
215
|
+
"null_count": 2,
|
|
216
|
+
"evidence_ids": [
|
|
217
|
+
"E-002",
|
|
218
|
+
"E-004",
|
|
219
|
+
"E-005"
|
|
220
|
+
]
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"outcome_type": "completion_time",
|
|
224
|
+
"positive_count": 2,
|
|
225
|
+
"negative_count": 0,
|
|
226
|
+
"null_count": 0,
|
|
227
|
+
"evidence_ids": [
|
|
228
|
+
"E-001",
|
|
229
|
+
"E-008"
|
|
230
|
+
]
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"outcome_type": "code_quality",
|
|
234
|
+
"positive_count": 0,
|
|
235
|
+
"negative_count": 0,
|
|
236
|
+
"null_count": 1,
|
|
237
|
+
"evidence_ids": [
|
|
238
|
+
"E-009"
|
|
239
|
+
]
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"outcome_type": "assignment_score",
|
|
243
|
+
"positive_count": 2,
|
|
244
|
+
"negative_count": 0,
|
|
245
|
+
"null_count": 0,
|
|
246
|
+
"evidence_ids": [
|
|
247
|
+
"E-006",
|
|
248
|
+
"E-010"
|
|
249
|
+
]
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"outcome_type": "metacognition",
|
|
253
|
+
"positive_count": 1,
|
|
254
|
+
"negative_count": 0,
|
|
255
|
+
"null_count": 0,
|
|
256
|
+
"evidence_ids": [
|
|
257
|
+
"E-011"
|
|
258
|
+
]
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"outcome_type": "over_reliance",
|
|
262
|
+
"positive_count": 0,
|
|
263
|
+
"negative_count": 1,
|
|
264
|
+
"null_count": 0,
|
|
265
|
+
"evidence_ids": [
|
|
266
|
+
"E-012"
|
|
267
|
+
]
|
|
268
|
+
}
|
|
269
|
+
],
|
|
270
|
+
"outcome_mapping": {
|
|
271
|
+
"entries": [
|
|
272
|
+
{
|
|
273
|
+
"outcome_type": "ai_dependency",
|
|
274
|
+
"declared_in_frame": true,
|
|
275
|
+
"status": "no_evidence",
|
|
276
|
+
"support_count": 0,
|
|
277
|
+
"contradict_count": 0,
|
|
278
|
+
"neutral_count": 0,
|
|
279
|
+
"evidence_ids": []
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"outcome_type": "assignment_score",
|
|
283
|
+
"declared_in_frame": false,
|
|
284
|
+
"status": "supported",
|
|
285
|
+
"support_count": 2,
|
|
286
|
+
"contradict_count": 0,
|
|
287
|
+
"neutral_count": 0,
|
|
288
|
+
"evidence_ids": [
|
|
289
|
+
"E-006",
|
|
290
|
+
"E-010"
|
|
291
|
+
]
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"outcome_type": "code_quality",
|
|
295
|
+
"declared_in_frame": true,
|
|
296
|
+
"status": "null_evidence_only",
|
|
297
|
+
"support_count": 0,
|
|
298
|
+
"contradict_count": 0,
|
|
299
|
+
"neutral_count": 1,
|
|
300
|
+
"evidence_ids": [
|
|
301
|
+
"E-009"
|
|
302
|
+
]
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"outcome_type": "completion_time",
|
|
306
|
+
"declared_in_frame": true,
|
|
307
|
+
"status": "supported",
|
|
308
|
+
"support_count": 2,
|
|
309
|
+
"contradict_count": 0,
|
|
310
|
+
"neutral_count": 0,
|
|
311
|
+
"evidence_ids": [
|
|
312
|
+
"E-001",
|
|
313
|
+
"E-008"
|
|
314
|
+
]
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"outcome_type": "independent_problem_solving",
|
|
318
|
+
"declared_in_frame": true,
|
|
319
|
+
"status": "contested",
|
|
320
|
+
"support_count": 1,
|
|
321
|
+
"contradict_count": 1,
|
|
322
|
+
"neutral_count": 1,
|
|
323
|
+
"evidence_ids": [
|
|
324
|
+
"E-002",
|
|
325
|
+
"E-004",
|
|
326
|
+
"E-005"
|
|
327
|
+
]
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"outcome_type": "knowledge_gain",
|
|
331
|
+
"declared_in_frame": true,
|
|
332
|
+
"status": "supported",
|
|
333
|
+
"support_count": 1,
|
|
334
|
+
"contradict_count": 0,
|
|
335
|
+
"neutral_count": 0,
|
|
336
|
+
"evidence_ids": [
|
|
337
|
+
"E-007"
|
|
338
|
+
]
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"outcome_type": "metacognition",
|
|
342
|
+
"declared_in_frame": false,
|
|
343
|
+
"status": "supported",
|
|
344
|
+
"support_count": 1,
|
|
345
|
+
"contradict_count": 0,
|
|
346
|
+
"neutral_count": 0,
|
|
347
|
+
"evidence_ids": [
|
|
348
|
+
"E-011"
|
|
349
|
+
]
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"outcome_type": "over_reliance",
|
|
353
|
+
"declared_in_frame": true,
|
|
354
|
+
"status": "contradicted",
|
|
355
|
+
"support_count": 0,
|
|
356
|
+
"contradict_count": 1,
|
|
357
|
+
"neutral_count": 0,
|
|
358
|
+
"evidence_ids": [
|
|
359
|
+
"E-012"
|
|
360
|
+
]
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"outcome_type": "reduced_transfer",
|
|
364
|
+
"declared_in_frame": true,
|
|
365
|
+
"status": "no_evidence",
|
|
366
|
+
"support_count": 0,
|
|
367
|
+
"contradict_count": 0,
|
|
368
|
+
"neutral_count": 0,
|
|
369
|
+
"evidence_ids": []
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"outcome_type": "retention",
|
|
373
|
+
"declared_in_frame": true,
|
|
374
|
+
"status": "null_evidence_only",
|
|
375
|
+
"support_count": 0,
|
|
376
|
+
"contradict_count": 0,
|
|
377
|
+
"neutral_count": 1,
|
|
378
|
+
"evidence_ids": [
|
|
379
|
+
"E-003"
|
|
380
|
+
]
|
|
381
|
+
}
|
|
382
|
+
],
|
|
383
|
+
"declared_without_evidence": [
|
|
384
|
+
"ai_dependency",
|
|
385
|
+
"reduced_transfer"
|
|
386
|
+
]
|
|
387
|
+
},
|
|
388
|
+
"claims": [
|
|
389
|
+
{
|
|
390
|
+
"claim": "在练习环节,无护栏的 GPT Base(类标准 ChatGPT 界面)使高中生的练习成绩相对对照组提高 48%,带护栏的 GPT Tutor 提高 127%(Table 1:practice 系数 0.137/0.361,对照均值 0.284)",
|
|
391
|
+
"outcome_type": "completion_time",
|
|
392
|
+
"claim_id": "C-001",
|
|
393
|
+
"evidence_ids": [
|
|
394
|
+
"E-001"
|
|
395
|
+
],
|
|
396
|
+
"status": "SUPPORTED"
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"claim": "移除 AI 访问后的无辅助独立考试中,GPT Base 组成绩比从未使用 AI 的对照组低 17%(统计显著),表明无护栏使用 AI 损害技能习得;机制上学生把 GPT 当'拐杖'直接抄答案(GPT Base 答对率仅 51%,其中 42% 逻辑错误、8% 算术错误),且学生自评过度乐观、未察觉学习受损",
|
|
400
|
+
"outcome_type": "independent_problem_solving",
|
|
401
|
+
"claim_id": "C-002",
|
|
402
|
+
"evidence_ids": [
|
|
403
|
+
"E-002"
|
|
404
|
+
],
|
|
405
|
+
"status": "SUPPORTED"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"claim": "带护栏的 GPT Tutor(教师设计提示而非直接答案)在练习成绩 +127% 的同时,移除访问后的独立考试负效应基本消除(-0.004,不显著),说明精心设计的护栏可兼得练习提升与学习保持",
|
|
409
|
+
"outcome_type": "retention",
|
|
410
|
+
"claim_id": "C-003",
|
|
411
|
+
"evidence_ids": [
|
|
412
|
+
"E-003"
|
|
413
|
+
],
|
|
414
|
+
"status": "SUPPORTED"
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"claim": "训练阶段使用 OpenAI Codex 的 10-17 岁新手在 45 道 Python 代码编写任务上表现显著提升:完成率提高 1.15 倍、得分提高 1.8 倍",
|
|
418
|
+
"outcome_type": "independent_problem_solving",
|
|
419
|
+
"claim_id": "C-004",
|
|
420
|
+
"evidence_ids": [
|
|
421
|
+
"E-004"
|
|
422
|
+
],
|
|
423
|
+
"status": "SUPPORTED"
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"claim": "训练期使用 Codex 的学习者一周后评估后测成绩略好于对照组,但差异未达统计显著(保持力无显著差异);Scratch 前测高分者若有 Codex 使用史,保持后测显著更好",
|
|
427
|
+
"outcome_type": "independent_problem_solving",
|
|
428
|
+
"claim_id": "C-005",
|
|
429
|
+
"evidence_ids": [
|
|
430
|
+
"E-005"
|
|
431
|
+
],
|
|
432
|
+
"status": "SUPPORTED"
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"claim": "质性案例研究中,3 名 EFL 学生珍视 ChatGPT 的辅助价值(消除不确定性、澄清词汇、提供内容建议、语法/结构反馈,让学生专注于创意层面),并形成语言精修、观点生成与结构、校对与信心增强等使用策略",
|
|
436
|
+
"outcome_type": "assignment_score",
|
|
437
|
+
"claim_id": "C-006",
|
|
438
|
+
"evidence_ids": [
|
|
439
|
+
"E-006"
|
|
440
|
+
],
|
|
441
|
+
"status": "SUPPORTED"
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"claim": "同一质性研究中,学生担忧 AI 使用的学术真实性与过度依赖风险(建议过于复杂/正式、语气不符、文化刻板印象等局限),强调必须保持人的判断并寻求教师/同伴反馈,呼吁伦理指引与批判性思维培养",
|
|
445
|
+
"outcome_type": "knowledge_gain",
|
|
446
|
+
"claim_id": "C-007",
|
|
447
|
+
"evidence_ids": [
|
|
448
|
+
"E-007"
|
|
449
|
+
],
|
|
450
|
+
"status": "SUPPORTED"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"claim": "随机对照实验(n=95)显示:使用 Copilot 的职业开发者完成标准化编程任务的用时比对照组缩短约 55%。",
|
|
454
|
+
"outcome_type": "completion_time",
|
|
455
|
+
"claim_id": "C-008",
|
|
456
|
+
"evidence_ids": [
|
|
457
|
+
"E-008"
|
|
458
|
+
],
|
|
459
|
+
"status": "SUPPORTED"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"claim": "系统性基准评估显示 Copilot 生成代码相对人类代码的质量结论不一:部分正确性具竞争力,同时记录到安全相关缺陷。",
|
|
463
|
+
"outcome_type": "code_quality",
|
|
464
|
+
"claim_id": "C-009",
|
|
465
|
+
"evidence_ids": [
|
|
466
|
+
"E-009"
|
|
467
|
+
],
|
|
468
|
+
"status": "SUPPORTED"
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"claim": "Codex 在 CS1 考试风格题目上能给出通过水平的解答(依数据集约 50%–75%),表明新手手中存在可观的任务能力余量。",
|
|
472
|
+
"outcome_type": "assignment_score",
|
|
473
|
+
"claim_id": "C-010",
|
|
474
|
+
"evidence_ids": [
|
|
475
|
+
"E-010"
|
|
476
|
+
],
|
|
477
|
+
"status": "SUPPORTED"
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
"claim": "受控比较发现 LLM 生成的代码讲解与学生自撰讲解相当(部分更优),适合作为解释性支架材料,而非替代学生的解释练习。",
|
|
481
|
+
"outcome_type": "metacognition",
|
|
482
|
+
"claim_id": "C-011",
|
|
483
|
+
"evidence_ids": [
|
|
484
|
+
"E-011"
|
|
485
|
+
],
|
|
486
|
+
"status": "SUPPORTED"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"claim": "尽管首任务完成更快,参与者难以理解并调试 AI 生成的解法、对最终程序所有权感低——记录了纯速度指标遗漏的认知与依赖风险。",
|
|
490
|
+
"outcome_type": "over_reliance",
|
|
491
|
+
"claim_id": "C-012",
|
|
492
|
+
"evidence_ids": [
|
|
493
|
+
"E-012"
|
|
494
|
+
],
|
|
495
|
+
"status": "CONTRADICT"
|
|
496
|
+
}
|
|
497
|
+
],
|
|
498
|
+
"sources": [
|
|
499
|
+
{
|
|
500
|
+
"source_id": "S-2023-kazemitabaar",
|
|
501
|
+
"title": "Studying the effect of AI Code Generators on Supporting Novice Learners in Introductory Programming",
|
|
502
|
+
"year": 2023,
|
|
503
|
+
"doi": "10.1145/3544548.3580919",
|
|
504
|
+
"canonical_url": "https://dl.acm.org/doi/10.1145/3544548.3580919",
|
|
505
|
+
"authority_level": "tier1_paper_doi",
|
|
506
|
+
"source_location": "https://dl.acm.org/doi/10.1145/3544548.3580919",
|
|
507
|
+
"doi_verified": true,
|
|
508
|
+
"retracted": false
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"source_id": "S-2025-bastani",
|
|
512
|
+
"title": "Generative AI without guardrails can harm learning: Evidence from high school mathematics",
|
|
513
|
+
"year": 2025,
|
|
514
|
+
"doi": "10.1073/pnas.2422633122",
|
|
515
|
+
"canonical_url": "https://www.pnas.org/doi/10.1073/pnas.2422633122",
|
|
516
|
+
"authority_level": "tier1_paper_doi",
|
|
517
|
+
"source_location": "https://www.pnas.org/doi/10.1073/pnas.2422633122",
|
|
518
|
+
"doi_verified": true,
|
|
519
|
+
"retracted": false
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
"source_id": "S-2024-marzuki",
|
|
523
|
+
"title": "Impact of ChatGPT on ESL students' academic writing skills",
|
|
524
|
+
"year": 2024,
|
|
525
|
+
"doi": "10.1186/s40561-024-00295-9",
|
|
526
|
+
"canonical_url": "https://link.springer.com/article/10.1186/s40561-024-00295-9",
|
|
527
|
+
"authority_level": "tier1_paper_doi",
|
|
528
|
+
"source_location": "https://link.springer.com/article/10.1186/s40561-024-00295-9",
|
|
529
|
+
"doi_verified": true,
|
|
530
|
+
"retracted": false
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"source_id": "S-2023-peng",
|
|
534
|
+
"title": "The Impact of AI on Developer Productivity: Evidence from GitHub Copilot",
|
|
535
|
+
"year": 2023,
|
|
536
|
+
"doi": "10.48550/arXiv.2302.06590",
|
|
537
|
+
"canonical_url": "https://doi.org/10.48550/arXiv.2302.06590",
|
|
538
|
+
"authority_level": "tier2_academic_database",
|
|
539
|
+
"source_location": "https://arxiv.org/abs/2302.06590",
|
|
540
|
+
"doi_verified": true,
|
|
541
|
+
"retracted": false
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"source_id": "S-2023-yetistiren",
|
|
545
|
+
"title": "GitHub Copilot AI Pair Programmer: Asset or Liability?",
|
|
546
|
+
"year": 2023,
|
|
547
|
+
"doi": "10.1016/j.jss.2023.111734",
|
|
548
|
+
"canonical_url": "https://doi.org/10.1016/j.jss.2023.111734",
|
|
549
|
+
"authority_level": "tier1_paper_doi",
|
|
550
|
+
"source_location": "https://doi.org/10.1016/j.jss.2023.111734",
|
|
551
|
+
"doi_verified": true,
|
|
552
|
+
"retracted": false
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"source_id": "S-2022-finnie-ansley",
|
|
556
|
+
"title": "Using GitHub Copilot to Solve Introductory Programming Problems",
|
|
557
|
+
"year": 2022,
|
|
558
|
+
"doi": "10.1145/3545945.3569830",
|
|
559
|
+
"canonical_url": "https://dl.acm.org/doi/10.1145/3545945.3569830",
|
|
560
|
+
"authority_level": "tier1_paper_doi",
|
|
561
|
+
"source_location": "https://dl.acm.org/doi/10.1145/3545945.3569830",
|
|
562
|
+
"doi_verified": true,
|
|
563
|
+
"retracted": false
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
"source_id": "S-2023-explanations-compare",
|
|
567
|
+
"title": "Comparing Code Explanations Created by Students and Large Language Models",
|
|
568
|
+
"year": 2023,
|
|
569
|
+
"doi": "10.1145/3587102.3588785",
|
|
570
|
+
"canonical_url": "https://dl.acm.org/doi/10.1145/3587102.3588785",
|
|
571
|
+
"authority_level": "tier1_paper_doi",
|
|
572
|
+
"source_location": "https://dl.acm.org/doi/10.1145/3587102.3588785",
|
|
573
|
+
"doi_verified": true,
|
|
574
|
+
"retracted": false
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"source_id": "S-2022-vaithilingam",
|
|
578
|
+
"title": "Expectation vs. Experience: Evaluating the Usability of Code Generation Tools",
|
|
579
|
+
"year": 2022,
|
|
580
|
+
"doi": "10.1145/3491101.3519665",
|
|
581
|
+
"canonical_url": "https://dl.acm.org/doi/10.1145/3491101.3519665",
|
|
582
|
+
"authority_level": "tier1_paper_doi",
|
|
583
|
+
"source_location": "https://dl.acm.org/doi/10.1145/3491101.3519665",
|
|
584
|
+
"doi_verified": true,
|
|
585
|
+
"retracted": false
|
|
586
|
+
}
|
|
587
|
+
],
|
|
588
|
+
"evidence": [
|
|
589
|
+
{
|
|
590
|
+
"evidence_id": "E-001",
|
|
591
|
+
"source_id": "S-2023-kazemitabaar",
|
|
592
|
+
"title": "Studying the effect of AI Code Generators on Supporting Novice Learners in Introductory Programming",
|
|
593
|
+
"year": 2023,
|
|
594
|
+
"study_type": "rct",
|
|
595
|
+
"education_level": "k12_ages_10_17",
|
|
596
|
+
"subject": "introductory_python",
|
|
597
|
+
"population": "69 名 10-17 岁编程新手,此前无文本编程经验",
|
|
598
|
+
"sample_size": 69,
|
|
599
|
+
"intervention": "三臂 RCT:GPT Base(无护栏标准 ChatGPT 式界面)与 GPT Tutor(护栏版,教师设计提示、不给直接答案)用于数学练习",
|
|
600
|
+
"comparison": "对照组(无 AI 传统教学)",
|
|
601
|
+
"outcome_type": "completion_time",
|
|
602
|
+
"outcome_measure": "code_authoring_task_progress_and_time",
|
|
603
|
+
"claim": "AI 编程助手在训练期间显著提升任务完成速度与完成率(完成率 1.15 倍、用时 0.57 倍、正确率 1.8 倍)。",
|
|
604
|
+
"direction": "support",
|
|
605
|
+
"relation_to_claim": "support",
|
|
606
|
+
"effect_direction": "positive",
|
|
607
|
+
"study_id": "STUDY-KAZEMITABAAR-2023",
|
|
608
|
+
"sample_id": "SMPL-KAZEMITABAAR-2023-N69",
|
|
609
|
+
"effect": "1.15x completion rate, 0.57x time, 1.8x correctness",
|
|
610
|
+
"duration": "3_weeks_training",
|
|
611
|
+
"method": "controlled experiment with random assignment, immediate post-test and 1-week retention test",
|
|
612
|
+
"strengths": [
|
|
613
|
+
"randomized_controlled_design",
|
|
614
|
+
"immediate_post_test_and_retention_test",
|
|
615
|
+
"code_modification_task_guard"
|
|
616
|
+
],
|
|
617
|
+
"limitations": [
|
|
618
|
+
"non_university_population_ages_10_17",
|
|
619
|
+
"small_sample_69",
|
|
620
|
+
"self-paced environment differs from classroom"
|
|
621
|
+
],
|
|
622
|
+
"confounders": [
|
|
623
|
+
"prior_programming_competency_interaction"
|
|
624
|
+
],
|
|
625
|
+
"source_location": "https://dl.acm.org/doi/10.1145/3544548.3580919",
|
|
626
|
+
"quality_dimensions": {
|
|
627
|
+
"D1_study_design": 2,
|
|
628
|
+
"D2_sample_quality": 2,
|
|
629
|
+
"D3_measurement_validity": 2,
|
|
630
|
+
"D4_temporal_strength": 2,
|
|
631
|
+
"D5_directness": 1
|
|
632
|
+
},
|
|
633
|
+
"quality_score": 9.0,
|
|
634
|
+
"evidence_level": "strong",
|
|
635
|
+
"applicability": {
|
|
636
|
+
"learner_match": "partial_novice_programmers_but_younger",
|
|
637
|
+
"subject_match": "introductory_programming",
|
|
638
|
+
"tool_match": "codex_like_generative_ai",
|
|
639
|
+
"scope": "task_performance_during_training"
|
|
640
|
+
},
|
|
641
|
+
"confidence": 0.7,
|
|
642
|
+
"status": "SUPPORTED",
|
|
643
|
+
"decision_relation": "support_adoption",
|
|
644
|
+
"claim_id": "C-001"
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"evidence_id": "E-002",
|
|
648
|
+
"source_id": "S-2023-kazemitabaar",
|
|
649
|
+
"title": "Studying the effect of AI Code Generators on Supporting Novice Learners in Introductory Programming",
|
|
650
|
+
"year": 2023,
|
|
651
|
+
"study_type": "rct",
|
|
652
|
+
"education_level": "k12_ages_10_17",
|
|
653
|
+
"subject": "introductory_python",
|
|
654
|
+
"population": "69 名 10-17 岁编程新手,此前无文本编程经验",
|
|
655
|
+
"sample_size": 69,
|
|
656
|
+
"intervention": "无护栏 GPT Base(类标准 ChatGPT 界面)课内练习;移除访问后参加独立考试",
|
|
657
|
+
"comparison": "对照组(从未使用 AI)",
|
|
658
|
+
"outcome_type": "independent_problem_solving",
|
|
659
|
+
"outcome_measure": "manual code-modification tasks during training",
|
|
660
|
+
"claim": "可使用 AI 生成代码并未降低学生在人工代码修改任务上的表现(组间差异不显著)。",
|
|
661
|
+
"direction": "neutral",
|
|
662
|
+
"relation_to_claim": "neutral",
|
|
663
|
+
"effect_direction": "null",
|
|
664
|
+
"study_id": "STUDY-KAZEMITABAAR-2023",
|
|
665
|
+
"sample_id": "SMPL-KAZEMITABAAR-2023-N69",
|
|
666
|
+
"effect": "no significant difference between groups",
|
|
667
|
+
"duration": "3_weeks_training",
|
|
668
|
+
"method": "controlled experiment, code-modification task followed each code-authoring task",
|
|
669
|
+
"strengths": [
|
|
670
|
+
"direct_test_of_transfer-adjacent_skill",
|
|
671
|
+
"same_session_measurement"
|
|
672
|
+
],
|
|
673
|
+
"limitations": [
|
|
674
|
+
"code modification is not full independent problem solving",
|
|
675
|
+
"non_university population"
|
|
676
|
+
],
|
|
677
|
+
"confounders": [
|
|
678
|
+
"practice_effect"
|
|
679
|
+
],
|
|
680
|
+
"source_location": "https://dl.acm.org/doi/10.1145/3544548.3580919",
|
|
681
|
+
"quality_dimensions": {
|
|
682
|
+
"D1_study_design": 2,
|
|
683
|
+
"D2_sample_quality": 2,
|
|
684
|
+
"D3_measurement_validity": 1,
|
|
685
|
+
"D4_temporal_strength": 1,
|
|
686
|
+
"D5_directness": 1
|
|
687
|
+
},
|
|
688
|
+
"quality_score": 7.0,
|
|
689
|
+
"evidence_level": "moderate",
|
|
690
|
+
"applicability": {
|
|
691
|
+
"learner_match": "partial",
|
|
692
|
+
"subject_match": "introductory_programming",
|
|
693
|
+
"tool_match": "codex",
|
|
694
|
+
"scope": "short-term manual code modification"
|
|
695
|
+
},
|
|
696
|
+
"confidence": 0.5,
|
|
697
|
+
"status": "SUPPORTED",
|
|
698
|
+
"decision_relation": "neutral",
|
|
699
|
+
"claim_id": "C-002"
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
"evidence_id": "E-003",
|
|
703
|
+
"source_id": "S-2023-kazemitabaar",
|
|
704
|
+
"title": "Studying the effect of AI Code Generators on Supporting Novice Learners in Introductory Programming",
|
|
705
|
+
"year": 2023,
|
|
706
|
+
"study_type": "rct",
|
|
707
|
+
"education_level": "k12_ages_10_17",
|
|
708
|
+
"subject": "introductory_python",
|
|
709
|
+
"population": "69 名 10-17 岁编程新手,此前无文本编程经验",
|
|
710
|
+
"sample_size": 69,
|
|
711
|
+
"intervention": "GPT Tutor(护栏版:教师设计提示、不给直接答案)用于数学练习",
|
|
712
|
+
"comparison": "对照组(无 AI)与 GPT Base(无护栏)组",
|
|
713
|
+
"outcome_type": "retention",
|
|
714
|
+
"outcome_measure": "retention post-test one week after training",
|
|
715
|
+
"claim": "训练结束一周后,Codex 组与基线组的保持性差异未达统计显著(Codex 组略优)。",
|
|
716
|
+
"direction": "neutral",
|
|
717
|
+
"relation_to_claim": "neutral",
|
|
718
|
+
"effect_direction": "null",
|
|
719
|
+
"study_id": "STUDY-KAZEMITABAAR-2023",
|
|
720
|
+
"sample_id": "SMPL-KAZEMITABAAR-2023-N69",
|
|
721
|
+
"effect": "slightly better for Codex group but not significant",
|
|
722
|
+
"duration": "3_weeks_training_plus_1_week_retention",
|
|
723
|
+
"method": "controlled experiment with delayed retention test",
|
|
724
|
+
"strengths": [
|
|
725
|
+
"delayed_test_included"
|
|
726
|
+
],
|
|
727
|
+
"limitations": [
|
|
728
|
+
"1-week retention window is short",
|
|
729
|
+
"small sample",
|
|
730
|
+
"non-university population"
|
|
731
|
+
],
|
|
732
|
+
"confounders": [
|
|
733
|
+
"prior_competency"
|
|
734
|
+
],
|
|
735
|
+
"source_location": "https://dl.acm.org/doi/10.1145/3544548.3580919",
|
|
736
|
+
"quality_dimensions": {
|
|
737
|
+
"D1_study_design": 2,
|
|
738
|
+
"D2_sample_quality": 2,
|
|
739
|
+
"D3_measurement_validity": 2,
|
|
740
|
+
"D4_temporal_strength": 2,
|
|
741
|
+
"D5_directness": 1
|
|
742
|
+
},
|
|
743
|
+
"quality_score": 9.0,
|
|
744
|
+
"evidence_level": "strong",
|
|
745
|
+
"applicability": {
|
|
746
|
+
"learner_match": "partial",
|
|
747
|
+
"subject_match": "introductory_programming",
|
|
748
|
+
"tool_match": "codex",
|
|
749
|
+
"scope": "retention over one week"
|
|
750
|
+
},
|
|
751
|
+
"confidence": 0.5,
|
|
752
|
+
"status": "SUPPORTED",
|
|
753
|
+
"decision_relation": "neutral",
|
|
754
|
+
"claim_id": "C-003"
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
"evidence_id": "E-004",
|
|
758
|
+
"source_id": "S-2025-bastani",
|
|
759
|
+
"title": "Generative AI without guardrails can harm learning: Evidence from high school mathematics",
|
|
760
|
+
"year": 2025,
|
|
761
|
+
"study_type": "rct",
|
|
762
|
+
"education_level": "high_school",
|
|
763
|
+
"subject": "mathematics",
|
|
764
|
+
"population": "土耳其近千名高中数学学生(约 1000 名学生,共 2848 次观测)",
|
|
765
|
+
"sample_size": 950,
|
|
766
|
+
"intervention": "训练阶段一半学习者可使用 OpenAI Codex 完成代码编写任务,任务后接代码修改任务",
|
|
767
|
+
"comparison": "无 Codex 访问组",
|
|
768
|
+
"outcome_type": "independent_problem_solving",
|
|
769
|
+
"outcome_measure": "exam without access to AI resources after practice phase",
|
|
770
|
+
"claim": "无护栏使用 GPT-4 的学生在练习表现更高的同时,独立考试成绩比对照组低 17%。",
|
|
771
|
+
"direction": "contradict",
|
|
772
|
+
"relation_to_claim": "contradict",
|
|
773
|
+
"effect_direction": "negative",
|
|
774
|
+
"study_id": "STUDY-BASTANI-2025",
|
|
775
|
+
"sample_id": "SMPL-BASTANI-2025-N950",
|
|
776
|
+
"effect": "negative_17_percent_on_independent_exam",
|
|
777
|
+
"duration": "in_class_study_sessions",
|
|
778
|
+
"method": "large-scale randomized controlled trial, practice phase then closed-book exam",
|
|
779
|
+
"strengths": [
|
|
780
|
+
"large_scale_rct",
|
|
781
|
+
"independent_exam_without_ai",
|
|
782
|
+
"arm_wise_design"
|
|
783
|
+
],
|
|
784
|
+
"limitations": [
|
|
785
|
+
"high_school_mathematics_not_university_programming",
|
|
786
|
+
"single_country"
|
|
787
|
+
],
|
|
788
|
+
"confounders": [
|
|
789
|
+
"tool_design_difference"
|
|
790
|
+
],
|
|
791
|
+
"source_location": "https://www.pnas.org/doi/10.1073/pnas.2422633122",
|
|
792
|
+
"quality_dimensions": {
|
|
793
|
+
"D1_study_design": 2,
|
|
794
|
+
"D2_sample_quality": 2,
|
|
795
|
+
"D3_measurement_validity": 2,
|
|
796
|
+
"D4_temporal_strength": 1,
|
|
797
|
+
"D5_directness": 1
|
|
798
|
+
},
|
|
799
|
+
"quality_score": 8.0,
|
|
800
|
+
"evidence_level": "strong",
|
|
801
|
+
"applicability": {
|
|
802
|
+
"learner_match": "partial_same_age_band_different_subject",
|
|
803
|
+
"subject_match": "no_mathematics_vs_programming",
|
|
804
|
+
"tool_match": "gpt4_chat_interface",
|
|
805
|
+
"scope": "unguarded_general_chat_interface"
|
|
806
|
+
},
|
|
807
|
+
"confidence": 0.75,
|
|
808
|
+
"status": "SUPPORTED",
|
|
809
|
+
"decision_relation": "oppose_adoption",
|
|
810
|
+
"claim_id": "C-004"
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"evidence_id": "E-005",
|
|
814
|
+
"source_id": "S-2025-bastani",
|
|
815
|
+
"title": "Generative AI without guardrails can harm learning: Evidence from high school mathematics",
|
|
816
|
+
"year": 2025,
|
|
817
|
+
"study_type": "rct",
|
|
818
|
+
"education_level": "high_school",
|
|
819
|
+
"subject": "mathematics",
|
|
820
|
+
"population": "土耳其近千名高中数学学生(约 1000 名学生,共 2848 次观测)",
|
|
821
|
+
"sample_size": 950,
|
|
822
|
+
"intervention": "训练阶段使用 OpenAI Codex 完成代码编写任务",
|
|
823
|
+
"comparison": "无 Codex 访问组;一周后评估后测",
|
|
824
|
+
"outcome_type": "independent_problem_solving",
|
|
825
|
+
"outcome_measure": "exam without access to AI resources after practice phase",
|
|
826
|
+
"claim": "AI 导师的护栏设计(给提示而非直接答案、教师参与设计提问)基本消除了负向学习效应,但未观察到正向效应。",
|
|
827
|
+
"direction": "support",
|
|
828
|
+
"relation_to_claim": "support",
|
|
829
|
+
"effect_direction": "null",
|
|
830
|
+
"study_id": "STUDY-BASTANI-2025",
|
|
831
|
+
"sample_id": "SMPL-BASTANI-2025-N950",
|
|
832
|
+
"effect": "negative effect essentially eradicated, no positive effect observed",
|
|
833
|
+
"duration": "in_class_study_sessions",
|
|
834
|
+
"method": "large-scale randomized controlled trial, three arms",
|
|
835
|
+
"strengths": [
|
|
836
|
+
"direct_manipulation_of_tool_design",
|
|
837
|
+
"large_sample"
|
|
838
|
+
],
|
|
839
|
+
"limitations": [
|
|
840
|
+
"no_positive_learning_gain_even_with_guardrails",
|
|
841
|
+
"subject_mismatch"
|
|
842
|
+
],
|
|
843
|
+
"confounders": [
|
|
844
|
+
"prompt_engineering_effort"
|
|
845
|
+
],
|
|
846
|
+
"source_location": "https://www.pnas.org/doi/10.1073/pnas.2422633122",
|
|
847
|
+
"quality_dimensions": {
|
|
848
|
+
"D1_study_design": 2,
|
|
849
|
+
"D2_sample_quality": 2,
|
|
850
|
+
"D3_measurement_validity": 2,
|
|
851
|
+
"D4_temporal_strength": 1,
|
|
852
|
+
"D5_directness": 1
|
|
853
|
+
},
|
|
854
|
+
"quality_score": 8.0,
|
|
855
|
+
"evidence_level": "strong",
|
|
856
|
+
"applicability": {
|
|
857
|
+
"learner_match": "partial",
|
|
858
|
+
"subject_match": "no",
|
|
859
|
+
"tool_match": "guardrailed_tutor_design",
|
|
860
|
+
"scope": "guardrail_design_principle_transferable"
|
|
861
|
+
},
|
|
862
|
+
"confidence": 0.75,
|
|
863
|
+
"status": "SUPPORTED",
|
|
864
|
+
"decision_relation": "conditional",
|
|
865
|
+
"claim_id": "C-005"
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
"evidence_id": "E-006",
|
|
869
|
+
"source_id": "S-2025-bastani",
|
|
870
|
+
"title": "Generative AI without guardrails can harm learning: Evidence from high school mathematics",
|
|
871
|
+
"year": 2025,
|
|
872
|
+
"study_type": "rct",
|
|
873
|
+
"education_level": "high_school",
|
|
874
|
+
"subject": "mathematics",
|
|
875
|
+
"population": "土耳其近千名高中数学学生(约 1000 名学生,共 2848 次观测)",
|
|
876
|
+
"sample_size": 950,
|
|
877
|
+
"intervention": "学生在学术写作过程中使用 ChatGPT 的体验与策略(质性研究,无效应量测量)",
|
|
878
|
+
"comparison": "无对照组(质性案例研究)",
|
|
879
|
+
"outcome_type": "assignment_score",
|
|
880
|
+
"outcome_measure": "practice problem performance during study sessions",
|
|
881
|
+
"claim": "练习阶段使用 GPT-4 提升了任务表现(GPT Base 组 +48%、GPT Tutor 组 +127%),但该任务表现并未迁移到独立考试。",
|
|
882
|
+
"direction": "support",
|
|
883
|
+
"relation_to_claim": "support",
|
|
884
|
+
"effect_direction": "positive",
|
|
885
|
+
"study_id": "STUDY-BASTANI-2025",
|
|
886
|
+
"sample_id": "SMPL-BASTANI-2025-N950",
|
|
887
|
+
"effect": "48-127 percent improvement on practice problems",
|
|
888
|
+
"duration": "in_class_study_sessions",
|
|
889
|
+
"method": "randomized controlled trial with practice and closed-book exam phases",
|
|
890
|
+
"strengths": [
|
|
891
|
+
"same_study_compares_task_and_learning",
|
|
892
|
+
"large_sample"
|
|
893
|
+
],
|
|
894
|
+
"limitations": [
|
|
895
|
+
"subject_mismatch_mathematics"
|
|
896
|
+
],
|
|
897
|
+
"confounders": [
|
|
898
|
+
"task_familiarity"
|
|
899
|
+
],
|
|
900
|
+
"source_location": "https://www.pnas.org/doi/10.1073/pnas.2422633122",
|
|
901
|
+
"quality_dimensions": {
|
|
902
|
+
"D1_study_design": 2,
|
|
903
|
+
"D2_sample_quality": 2,
|
|
904
|
+
"D3_measurement_validity": 2,
|
|
905
|
+
"D4_temporal_strength": 1,
|
|
906
|
+
"D5_directness": 1
|
|
907
|
+
},
|
|
908
|
+
"quality_score": 8.0,
|
|
909
|
+
"evidence_level": "strong",
|
|
910
|
+
"applicability": {
|
|
911
|
+
"learner_match": "partial",
|
|
912
|
+
"subject_match": "no",
|
|
913
|
+
"tool_match": "gpt4",
|
|
914
|
+
"scope": "task_performance_vs_learning_separation"
|
|
915
|
+
},
|
|
916
|
+
"confidence": 0.75,
|
|
917
|
+
"status": "SUPPORTED",
|
|
918
|
+
"decision_relation": "conditional",
|
|
919
|
+
"claim_id": "C-006"
|
|
920
|
+
},
|
|
921
|
+
{
|
|
922
|
+
"evidence_id": "E-007",
|
|
923
|
+
"source_id": "S-2024-marzuki",
|
|
924
|
+
"title": "Impact of ChatGPT on ESL students' academic writing skills",
|
|
925
|
+
"year": 2024,
|
|
926
|
+
"study_type": "mixed_methods",
|
|
927
|
+
"education_level": "undergraduate",
|
|
928
|
+
"subject": "academic_writing_esl",
|
|
929
|
+
"population": "印度某大学本科英语作为第二语言(ESL)学生,n=72",
|
|
930
|
+
"sample_size": 72,
|
|
931
|
+
"intervention": "学生在学术写作过程中使用 ChatGPT 的体验与策略",
|
|
932
|
+
"comparison": "无对照组(质性案例研究)",
|
|
933
|
+
"outcome_type": "knowledge_gain",
|
|
934
|
+
"outcome_measure": "writing tests with pre-post-delayed design",
|
|
935
|
+
"claim": "以 ChatGPT 作为形成性反馈工具,对学生学术写作能力产生了显著的正向影响,学生评价亦为正面。",
|
|
936
|
+
"direction": "support",
|
|
937
|
+
"relation_to_claim": "support",
|
|
938
|
+
"effect_direction": "positive",
|
|
939
|
+
"study_id": "STUDY-MARZUKI-2024",
|
|
940
|
+
"sample_id": "SMPL-MARZUKI-2024-N72",
|
|
941
|
+
"effect": "significant positive impact on writing skills",
|
|
942
|
+
"duration": "6_hours_intervention",
|
|
943
|
+
"method": "mixed methods intervention study, pre/post/delayed tests and focus groups",
|
|
944
|
+
"strengths": [
|
|
945
|
+
"delayed_post_test",
|
|
946
|
+
"mixed_methods_triangulation"
|
|
947
|
+
],
|
|
948
|
+
"limitations": [
|
|
949
|
+
"short_intervention_6_hours",
|
|
950
|
+
"single_institution",
|
|
951
|
+
"elite_private_university"
|
|
952
|
+
],
|
|
953
|
+
"confounders": [
|
|
954
|
+
"self_selection_consent"
|
|
955
|
+
],
|
|
956
|
+
"source_location": "https://link.springer.com/article/10.1186/s40561-024-00295-9",
|
|
957
|
+
"quality_dimensions": {
|
|
958
|
+
"D1_study_design": 1,
|
|
959
|
+
"D2_sample_quality": 1,
|
|
960
|
+
"D3_measurement_validity": 2,
|
|
961
|
+
"D4_temporal_strength": 2,
|
|
962
|
+
"D5_directness": 0
|
|
963
|
+
},
|
|
964
|
+
"quality_score": 6.0,
|
|
965
|
+
"evidence_level": "moderate",
|
|
966
|
+
"applicability": {
|
|
967
|
+
"learner_match": "yes_undergraduate",
|
|
968
|
+
"subject_match": "no_writing_not_programming",
|
|
969
|
+
"tool_match": "chatgpt",
|
|
970
|
+
"scope": "formative_feedback_writing"
|
|
971
|
+
},
|
|
972
|
+
"confidence": 0.55,
|
|
973
|
+
"status": "SUPPORTED",
|
|
974
|
+
"decision_relation": "support_adoption",
|
|
975
|
+
"claim_id": "C-007"
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
"evidence_id": "E-008",
|
|
979
|
+
"source_id": "S-2023-peng",
|
|
980
|
+
"title": "The Impact of AI on Developer Productivity: Evidence from GitHub Copilot",
|
|
981
|
+
"year": 2023,
|
|
982
|
+
"study_type": "rct",
|
|
983
|
+
"education_level": "professional_developers_not_students",
|
|
984
|
+
"subject": "standardized_javascript_http_server_task",
|
|
985
|
+
"population": "95 名经自由职业平台招募的职业开发者,完成标准化编码任务",
|
|
986
|
+
"sample_size": 95,
|
|
987
|
+
"intervention": "任务期间可使用 GitHub Copilot",
|
|
988
|
+
"comparison": "不可使用 Copilot 的对照组",
|
|
989
|
+
"outcome_type": "completion_time",
|
|
990
|
+
"outcome_measure": "time_to_complete_http_server_implementation",
|
|
991
|
+
"claim": "随机对照实验(n=95)显示:使用 Copilot 的职业开发者完成标准化编码任务的用时比对照组缩短约 55%。",
|
|
992
|
+
"direction": "support",
|
|
993
|
+
"relation_to_claim": "support",
|
|
994
|
+
"effect_direction": "positive",
|
|
995
|
+
"study_id": "STUDY-PENG-2023",
|
|
996
|
+
"sample_id": "SMPL-PENG-2023-N95",
|
|
997
|
+
"effect": "~55.8% faster task completion in Copilot group",
|
|
998
|
+
"duration": "single_task_session",
|
|
999
|
+
"method": "online randomized controlled experiment with objective completion-time metric",
|
|
1000
|
+
"strengths": [
|
|
1001
|
+
"randomized_controlled_design",
|
|
1002
|
+
"objective_completion_time_metric"
|
|
1003
|
+
],
|
|
1004
|
+
"limitations": [
|
|
1005
|
+
"professional_population_not_students",
|
|
1006
|
+
"single_task_ecology",
|
|
1007
|
+
"preprint_not_peer_reviewed"
|
|
1008
|
+
],
|
|
1009
|
+
"confounders": [
|
|
1010
|
+
"task_familiarity",
|
|
1011
|
+
"platform_recruitment_self_selection"
|
|
1012
|
+
],
|
|
1013
|
+
"source_location": "https://doi.org/10.48550/arXiv.2302.06590",
|
|
1014
|
+
"quality_dimensions": {
|
|
1015
|
+
"D1_study_design": 2,
|
|
1016
|
+
"D2_sample_quality": 2,
|
|
1017
|
+
"D3_measurement_validity": 2,
|
|
1018
|
+
"D4_temporal_strength": 1,
|
|
1019
|
+
"D5_directness": 1
|
|
1020
|
+
},
|
|
1021
|
+
"quality_score": 8.0,
|
|
1022
|
+
"evidence_level": "moderate",
|
|
1023
|
+
"applicability": {
|
|
1024
|
+
"learner_match": "mismatch_professional_developers",
|
|
1025
|
+
"subject_match": "adjacent_web_development_task",
|
|
1026
|
+
"tool_match": "copilot_like_generative_ai",
|
|
1027
|
+
"scope": "task_performance_only_no_learning_outcome"
|
|
1028
|
+
},
|
|
1029
|
+
"confidence": 0.6,
|
|
1030
|
+
"status": "SUPPORTED",
|
|
1031
|
+
"decision_relation": "conditional",
|
|
1032
|
+
"claim_id": "C-008"
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
"evidence_id": "E-009",
|
|
1036
|
+
"source_id": "S-2023-yetistiren",
|
|
1037
|
+
"title": "GitHub Copilot AI Pair Programmer: Asset or Liability?",
|
|
1038
|
+
"year": 2023,
|
|
1039
|
+
"study_type": "observational",
|
|
1040
|
+
"education_level": "not_applicable_code_artifacts",
|
|
1041
|
+
"subject": "code_generation_benchmarks",
|
|
1042
|
+
"population": "取自公开基准数据集的 Copilot 生成程序与人类编写程序",
|
|
1043
|
+
"sample_size": null,
|
|
1044
|
+
"intervention": "Copilot 生成的程序",
|
|
1045
|
+
"comparison": "相同基准上的人类编写程序",
|
|
1046
|
+
"outcome_type": "code_quality",
|
|
1047
|
+
"outcome_measure": "correctness_security_maintainability_metrics_on_benchmarks",
|
|
1048
|
+
"claim": "系统性基准评估显示 Copilot 生成代码相对人类代码的质量结论不一:部分基准上正确性具竞争力,同时记录到安全相关缺陷。",
|
|
1049
|
+
"direction": "neutral",
|
|
1050
|
+
"relation_to_claim": "neutral",
|
|
1051
|
+
"effect_direction": "null",
|
|
1052
|
+
"study_id": "STUDY-YETISTIREN-2023",
|
|
1053
|
+
"sample_id": "SMPL-YETISTIREN-2023-BENCH",
|
|
1054
|
+
"effect": "mixed quality profile; no single-direction summary",
|
|
1055
|
+
"duration": "not_applicable_artifact_study",
|
|
1056
|
+
"method": "systematic empirical evaluation of generated code against human baselines on public benchmarks",
|
|
1057
|
+
"strengths": [
|
|
1058
|
+
"multi_dimensional_quality_metrics",
|
|
1059
|
+
"reproducible_benchmark_protocol"
|
|
1060
|
+
],
|
|
1061
|
+
"limitations": [
|
|
1062
|
+
"artifact_benchmark_not_classroom",
|
|
1063
|
+
"no_learning_outcome",
|
|
1064
|
+
"tool_version_from_2023"
|
|
1065
|
+
],
|
|
1066
|
+
"confounders": [
|
|
1067
|
+
"benchmark_task_distribution"
|
|
1068
|
+
],
|
|
1069
|
+
"source_location": "https://doi.org/10.1016/j.jss.2023.111734",
|
|
1070
|
+
"quality_dimensions": {
|
|
1071
|
+
"D1_study_design": 1,
|
|
1072
|
+
"D2_sample_quality": 2,
|
|
1073
|
+
"D3_measurement_validity": 2,
|
|
1074
|
+
"D4_temporal_strength": 1,
|
|
1075
|
+
"D5_directness": 1
|
|
1076
|
+
},
|
|
1077
|
+
"quality_score": 7.0,
|
|
1078
|
+
"evidence_level": "moderate",
|
|
1079
|
+
"applicability": {
|
|
1080
|
+
"learner_match": "mismatch_no_learners_in_study",
|
|
1081
|
+
"subject_match": "introductory_adjacent_code_tasks",
|
|
1082
|
+
"tool_match": "copilot_like_generative_ai",
|
|
1083
|
+
"scope": "output_quality_only"
|
|
1084
|
+
},
|
|
1085
|
+
"confidence": 0.55,
|
|
1086
|
+
"status": "SUPPORTED",
|
|
1087
|
+
"decision_relation": "conditional",
|
|
1088
|
+
"claim_id": "C-009"
|
|
1089
|
+
},
|
|
1090
|
+
{
|
|
1091
|
+
"evidence_id": "E-010",
|
|
1092
|
+
"source_id": "S-2022-finnie-ansley",
|
|
1093
|
+
"title": "Using GitHub Copilot to Solve Introductory Programming Problems",
|
|
1094
|
+
"year": 2022,
|
|
1095
|
+
"study_type": "observational",
|
|
1096
|
+
"education_level": "university_year_1_question_sets",
|
|
1097
|
+
"subject": "introductory_python",
|
|
1098
|
+
"population": "CS1 考试风格题目集,由 Codex 作答并与已发表的学生分数分布比较",
|
|
1099
|
+
"sample_size": null,
|
|
1100
|
+
"intervention": "Codex 对 CS1 题目作答生成",
|
|
1101
|
+
"comparison": "已发表的学生同届分数分布",
|
|
1102
|
+
"outcome_type": "assignment_score",
|
|
1103
|
+
"outcome_measure": "pass_rate_on_cs1_exam_style_questions",
|
|
1104
|
+
"claim": "Codex 在 CS1 考试风格题目上能给出通过水平的解答(依数据集约 50%–75%),表明新手手中存在可观的任务能力余量。",
|
|
1105
|
+
"direction": "support",
|
|
1106
|
+
"relation_to_claim": "support",
|
|
1107
|
+
"effect_direction": "positive",
|
|
1108
|
+
"study_id": "STUDY-FINNIEANSLEY-2022",
|
|
1109
|
+
"sample_id": "SMPL-FINNIEANSLEY-2022-QSETS",
|
|
1110
|
+
"effect": "passing solutions on ~50-75% of questions across datasets",
|
|
1111
|
+
"duration": "not_applicable_capability_probe",
|
|
1112
|
+
"method": "capability benchmark against published student distributions; reproducible question sets",
|
|
1113
|
+
"strengths": [
|
|
1114
|
+
"public_reproducible_question_sets",
|
|
1115
|
+
"directly_relevant_task_domain"
|
|
1116
|
+
],
|
|
1117
|
+
"limitations": [
|
|
1118
|
+
"tool_solves_task_does_not_equate_student_learning",
|
|
1119
|
+
"codex_2021_model_version_outdated"
|
|
1120
|
+
],
|
|
1121
|
+
"confounders": [
|
|
1122
|
+
"question_leakage_into_training_data_possible"
|
|
1123
|
+
],
|
|
1124
|
+
"source_location": "https://dl.acm.org/doi/10.1145/3545945.3569830",
|
|
1125
|
+
"quality_dimensions": {
|
|
1126
|
+
"D1_study_design": 1,
|
|
1127
|
+
"D2_sample_quality": 2,
|
|
1128
|
+
"D3_measurement_validity": 2,
|
|
1129
|
+
"D4_temporal_strength": 1,
|
|
1130
|
+
"D5_directness": 1
|
|
1131
|
+
},
|
|
1132
|
+
"quality_score": 7.0,
|
|
1133
|
+
"evidence_level": "moderate",
|
|
1134
|
+
"applicability": {
|
|
1135
|
+
"learner_match": "partial_measures_tool_not_students",
|
|
1136
|
+
"subject_match": "introductory_programming",
|
|
1137
|
+
"tool_match": "copilot_like_generative_ai",
|
|
1138
|
+
"scope": "tool_capability_headroom"
|
|
1139
|
+
},
|
|
1140
|
+
"confidence": 0.55,
|
|
1141
|
+
"status": "SUPPORTED",
|
|
1142
|
+
"decision_relation": "conditional",
|
|
1143
|
+
"claim_id": "C-010"
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
"evidence_id": "E-011",
|
|
1147
|
+
"source_id": "S-2023-explanations-compare",
|
|
1148
|
+
"title": "Comparing Code Explanations Created by Students and Large Language Models",
|
|
1149
|
+
"year": 2023,
|
|
1150
|
+
"study_type": "observational",
|
|
1151
|
+
"education_level": "university_introductory",
|
|
1152
|
+
"subject": "code_explanation_scaffolding",
|
|
1153
|
+
"population": "同一批短程序的学生版与 LLM 版讲解的受控对比",
|
|
1154
|
+
"sample_size": null,
|
|
1155
|
+
"intervention": "LLM 生成的代码讲解",
|
|
1156
|
+
"comparison": "学生撰写的同题讲解",
|
|
1157
|
+
"outcome_type": "metacognition",
|
|
1158
|
+
"outcome_measure": "rated_explanation_quality_and_comprehensibility",
|
|
1159
|
+
"claim": "受控比较发现 LLM 生成的代码讲解与学生自撰讲解相当(部分更优),适合作为解释性支架材料,而非替代学生的解释练习。",
|
|
1160
|
+
"direction": "support",
|
|
1161
|
+
"relation_to_claim": "support",
|
|
1162
|
+
"effect_direction": "positive",
|
|
1163
|
+
"study_id": "STUDY-EXPLCOMP-2023",
|
|
1164
|
+
"sample_id": "SMPL-EXPLCOMP-2023-RATINGS",
|
|
1165
|
+
"effect": "comparable-or-better rated quality vs student explanations",
|
|
1166
|
+
"duration": "single_session_ratings",
|
|
1167
|
+
"method": "controlled comparison with blind rating of explanation pairs",
|
|
1168
|
+
"strengths": [
|
|
1169
|
+
"controlled_pairwise_comparison",
|
|
1170
|
+
"learning_process_relevant_construct"
|
|
1171
|
+
],
|
|
1172
|
+
"limitations": [
|
|
1173
|
+
"short_term_ratings_not_learning_gains",
|
|
1174
|
+
"small_program_snippets_ecology"
|
|
1175
|
+
],
|
|
1176
|
+
"confounders": [
|
|
1177
|
+
"rating_criteria_subjectivity"
|
|
1178
|
+
],
|
|
1179
|
+
"source_location": "https://dl.acm.org/doi/10.1145/3587102.3588785",
|
|
1180
|
+
"quality_dimensions": {
|
|
1181
|
+
"D1_study_design": 1,
|
|
1182
|
+
"D2_sample_quality": 2,
|
|
1183
|
+
"D3_measurement_validity": 2,
|
|
1184
|
+
"D4_temporal_strength": 1,
|
|
1185
|
+
"D5_directness": 1
|
|
1186
|
+
},
|
|
1187
|
+
"quality_score": 7.0,
|
|
1188
|
+
"evidence_level": "moderate",
|
|
1189
|
+
"applicability": {
|
|
1190
|
+
"learner_match": "partial_scaffold_material_only",
|
|
1191
|
+
"subject_match": "introductory_programming",
|
|
1192
|
+
"tool_match": "llm_explanations",
|
|
1193
|
+
"scope": "scaffold_quality_not_effectiveness"
|
|
1194
|
+
},
|
|
1195
|
+
"confidence": 0.55,
|
|
1196
|
+
"status": "SUPPORTED",
|
|
1197
|
+
"decision_relation": "conditional",
|
|
1198
|
+
"claim_id": "C-011"
|
|
1199
|
+
},
|
|
1200
|
+
{
|
|
1201
|
+
"evidence_id": "E-012",
|
|
1202
|
+
"source_id": "S-2022-vaithilingam",
|
|
1203
|
+
"title": "Expectation vs. Experience: Evaluating the Usability of Code Generation Tools",
|
|
1204
|
+
"year": 2022,
|
|
1205
|
+
"study_type": "qualitative",
|
|
1206
|
+
"education_level": "mixed_cs_students_and_professionals",
|
|
1207
|
+
"subject": "programmer_usability_of_codegen_tools",
|
|
1208
|
+
"population": "24 名参与者参与的 Copilot 类工具组内可用性研究",
|
|
1209
|
+
"sample_size": 24,
|
|
1210
|
+
"intervention": "Copilot 类工具辅助编程",
|
|
1211
|
+
"comparison": "不使用工具的组内基线",
|
|
1212
|
+
"outcome_type": "over_reliance",
|
|
1213
|
+
"outcome_measure": "understanding_ownership_and_debugging_reports",
|
|
1214
|
+
"claim": "尽管首任务完成更快,参与者难以理解并调试 AI 生成的解法、对最终程序所有权感低——记录了纯速度指标遗漏的元认知与依赖风险。",
|
|
1215
|
+
"direction": "contradict",
|
|
1216
|
+
"relation_to_claim": "contradict",
|
|
1217
|
+
"effect_direction": "negative",
|
|
1218
|
+
"study_id": "STUDY-VAITHILINGAM-2022",
|
|
1219
|
+
"sample_id": "SMPL-VAITHILINGAM-2022-N24",
|
|
1220
|
+
"effect": "documented comprehension/ownership difficulties despite speed gain",
|
|
1221
|
+
"duration": "single_session",
|
|
1222
|
+
"method": "within-subject usability study with tasks, observation and interviews",
|
|
1223
|
+
"strengths": [
|
|
1224
|
+
"rich_qualitative_process_data",
|
|
1225
|
+
"constructs_missed_by_speed_metrics"
|
|
1226
|
+
],
|
|
1227
|
+
"limitations": [
|
|
1228
|
+
"small_n_24",
|
|
1229
|
+
"single_session",
|
|
1230
|
+
"self_reported_understanding"
|
|
1231
|
+
],
|
|
1232
|
+
"confounders": [
|
|
1233
|
+
"participant_ai_familiarity"
|
|
1234
|
+
],
|
|
1235
|
+
"source_location": "https://dl.acm.org/doi/10.1145/3491101.3519665",
|
|
1236
|
+
"quality_dimensions": {
|
|
1237
|
+
"D1_study_design": 1,
|
|
1238
|
+
"D2_sample_quality": 2,
|
|
1239
|
+
"D3_measurement_validity": 2,
|
|
1240
|
+
"D4_temporal_strength": 1,
|
|
1241
|
+
"D5_directness": 1
|
|
1242
|
+
},
|
|
1243
|
+
"quality_score": 7.0,
|
|
1244
|
+
"evidence_level": "moderate",
|
|
1245
|
+
"applicability": {
|
|
1246
|
+
"learner_match": "partial_includes_cs_students",
|
|
1247
|
+
"subject_match": "programming_adjacent",
|
|
1248
|
+
"tool_match": "copilot_like_generative_ai",
|
|
1249
|
+
"scope": "risk_identification"
|
|
1250
|
+
},
|
|
1251
|
+
"confidence": 0.55,
|
|
1252
|
+
"status": "CONTRADICT",
|
|
1253
|
+
"decision_relation": "conditional",
|
|
1254
|
+
"claim_id": "C-012"
|
|
1255
|
+
}
|
|
1256
|
+
],
|
|
1257
|
+
"methodology_reviews": [
|
|
1258
|
+
{
|
|
1259
|
+
"target": "overall",
|
|
1260
|
+
"audit_items": {
|
|
1261
|
+
"control_group": {
|
|
1262
|
+
"status": "met",
|
|
1263
|
+
"note": "提出因果主张的量化研究均含对照条件:Bastani(E-004/E-005/E-006)为三臂随机对照(无护栏 GPT Base / 护栏 GPT Tutor / 无 AI 对照,约千名学生);Kazemitabaar(E-001/E-002/E-003)为随机对照(有/无 Codex,n=69);Peng(E-008)为职业开发者随机对照(n=95)。不含对照的是不承担因果主张的研究:Marzuki(E-007)为混合方法,Vaithilingam(E-012)为组内可用性研究(n=24),Yetistiren(E-009)与Finnie-Ansley(E-010)为基准评估。"
|
|
1264
|
+
},
|
|
1265
|
+
"randomization": {
|
|
1266
|
+
"status": "met",
|
|
1267
|
+
"note": "Kazemitabaar(E-001/E-002/E-003)与 Bastani(E-004/E-005/E-006)均为随机分配。"
|
|
1268
|
+
},
|
|
1269
|
+
"pre_test": {
|
|
1270
|
+
"status": "met",
|
|
1271
|
+
"note": "Kazemitabaar 有前测评估;Bastani 测量基线协变量。"
|
|
1272
|
+
},
|
|
1273
|
+
"post_test": {
|
|
1274
|
+
"status": "met",
|
|
1275
|
+
"note": "三项随机对照研究均报告即时后测。"
|
|
1276
|
+
},
|
|
1277
|
+
"retention_test": {
|
|
1278
|
+
"status": "partial",
|
|
1279
|
+
"note": "Kazemitabaar(E-003)有一周保持测;Bastani(E-004/E-005/E-006)无延迟测验;Marzuki(E-007)有延迟测量。"
|
|
1280
|
+
},
|
|
1281
|
+
"transfer_test": {
|
|
1282
|
+
"status": "partial",
|
|
1283
|
+
"note": "Kazemitabaar 的代码修改任务属迁移邻近任务;本证据集缺少完整的无 AI 迁移测验。"
|
|
1284
|
+
},
|
|
1285
|
+
"sample_bias": {
|
|
1286
|
+
"status": "met",
|
|
1287
|
+
"note": "Bastani 样本接近千人;Kazemitabaar 样本偏小且年龄偏低(n=69,10-17 岁)。"
|
|
1288
|
+
},
|
|
1289
|
+
"self_selection": {
|
|
1290
|
+
"status": "partial",
|
|
1291
|
+
"note": "Marzuki(E-007)基于知情同意招募,存在自我选择风险。"
|
|
1292
|
+
},
|
|
1293
|
+
"measurement_validity": {
|
|
1294
|
+
"status": "partial",
|
|
1295
|
+
"note": "完成率/正确率/速度作为'学习'代理的效度可疑:E-001 练习正确率、E-004 任务得分、E-011/E-012 完成速度与进展均在 AI 可访问条件下测得,AI 可直接产出答案抬高指标,无法区分'学会了'与'抄到了'(Bastani 机制数据 E-002:GPT Base 答对率 51% 中 42% 为逻辑错误;Wermelinger S-2023 显示 Copilot 可首次尝试解决 24 道典型入门题中的 16 道,FETCH_PARTIAL 仅验证到机构库摘要)。自评测量不可靠(E-002 学生过度乐观、E-008 能力错觉)。效度较高的测量(无 AI 独立考试 E-002/E-003、延迟后测 E-005)恰恰给出负向或零结果——测量选择本身决定结论方向。"
|
|
1296
|
+
},
|
|
1297
|
+
"confounders": {
|
|
1298
|
+
"status": "partial",
|
|
1299
|
+
"note": "Kazemitabaar 中先验编程能力与 AI 收益存在交互。"
|
|
1300
|
+
},
|
|
1301
|
+
"instructor_effect": {
|
|
1302
|
+
"status": "not_applicable",
|
|
1303
|
+
"note": "Kazemitabaar 为自定进度;课堂类研究可能带有教师效应。"
|
|
1304
|
+
},
|
|
1305
|
+
"novelty_effect": {
|
|
1306
|
+
"status": "partial",
|
|
1307
|
+
"note": "短周期干预易高估参与度;本证据集的研究均未控制新奇效应。"
|
|
1308
|
+
},
|
|
1309
|
+
"tool_version_effect": {
|
|
1310
|
+
"status": "not_applicable",
|
|
1311
|
+
"note": "各研究只覆盖单一工具版本,工具迭代快,结论耐久性受限。"
|
|
1312
|
+
},
|
|
1313
|
+
"ai_usage_policy": {
|
|
1314
|
+
"status": "partial",
|
|
1315
|
+
"note": "Bastani(E-001~E-003)是唯一直接操纵 AI 使用政策的研究:无护栏 GPT Base(类标准 ChatGPT 界面,可抄答案)vs 护栏 GPT Tutor(教师设计提示、不给直接答案),对应实证了'允许使用但无规则→独立考试 -17% 伤害'与'有护栏→练习 +127% 且负效应消除'的政策对比,与试点'禁止直接提交 AI 代码、实验课独立评测'的护栏设计同构。局限:护栏效果仅在单一情境(高中数学、教师设计提示)验证过,需在 C 语言场景复验;且各研究均未验证对照组依从性(对照组成员是否实际未使用 AI),政策污染未排除。"
|
|
1316
|
+
},
|
|
1317
|
+
"dropout": {
|
|
1318
|
+
"status": "partial",
|
|
1319
|
+
"note": "Marzuki(E-007)报告了流失情况;其余研究未详细说明。"
|
|
1320
|
+
}
|
|
1321
|
+
},
|
|
1322
|
+
"task_vs_learning_guard": {
|
|
1323
|
+
"measured_construct": "证据集测量了两个不同构念:(1) AI 在场时的任务表现——E-001 练习成绩(+48%/+127%)、E-004 训练期任务完成率/得分(+1.15 倍/+1.8 倍)、E-011/E-012 完成速度(快 35%)与进展(多 50%),均在 AI 可访问条件下测得,AI 可直接产出结果;(2) 移除 AI 后的独立学习结果——E-002 独立考试 -17%(显著)、E-003 独立考试 -0.004(不显著)、E-005 一周后延迟后测(null)。",
|
|
1324
|
+
"equates_task_with_learning": false,
|
|
1325
|
+
"note": "证据集本身未把任务表现等同学习效果:三类独立测量(E-002/E-003/E-005)与任务表现测量(E-001/E-004/E-011/E-012)被明确分开,且独立测量给出负向/零结果,恰是对照铁律(SKILL.md RULE 3:task performance 不得自动等同 learning effect)的正确执行。但风险在边界处:(a) 若下游综合以 E-001 的 +127% 或 E-011 的快 35% 作为'学习提升'证据,即违反铁律,证据天平会系统性偏向'允许使用';(b) E-001 练习成绩提升与 E-002 独立考试伤害在同一研究中并存,任何只引其一的做法都会误导。frame 的 outcomes 已把'任务表现'与'学习能力'分开测量、并把期末无 AI 统一机试/笔试设为唯一成功判据,与本 guard 一致。"
|
|
1326
|
+
},
|
|
1327
|
+
"verdict": "CONCERN",
|
|
1328
|
+
"limitations": [
|
|
1329
|
+
"证据集中未找到大学 C 语言课程 AI 编程助手的随机研究。",
|
|
1330
|
+
"任务表现增益持续较大,而学习效应估计中性偏负且学科错配。",
|
|
1331
|
+
"保持性证据仅有一周(Kazemitabaar 2023)。"
|
|
1332
|
+
],
|
|
1333
|
+
"suggestions": [
|
|
1334
|
+
"将所有学习效应结论视为需要大学层面直接研究支撑。",
|
|
1335
|
+
"试点护栏设计参照 Bastani 2025 的 GPT Tutor(提示而非答案)。",
|
|
1336
|
+
"在评估计划中加入无 AI 迁移任务。"
|
|
1337
|
+
]
|
|
1338
|
+
}
|
|
1339
|
+
],
|
|
1340
|
+
"conflicts": [
|
|
1341
|
+
{
|
|
1342
|
+
"reason_for_disagreement": "分歧来自结果分离(任务 vs 学习)、工具设计(有护栏 vs 无护栏)与人群(K-12/职业者 vs 大学生)。随机实验与基准研究中任务表现证据一致为正;唯一测量移除 AI 后独立表现的研究显示无护栏时有害;可用性与工件研究补充依赖与质量警示而非解决学习问题。"
|
|
1343
|
+
}
|
|
1344
|
+
],
|
|
1345
|
+
"applicability": {
|
|
1346
|
+
"suitable_for": "在大一 C 课程以护栏化使用政策开展试点",
|
|
1347
|
+
"not_suitable_for": "无使用政策的全面放开采用",
|
|
1348
|
+
"required_conditions": [
|
|
1349
|
+
"护栏化 AI 使用政策(给提示不给答案,仿 GPT Tutor 组)",
|
|
1350
|
+
"无 AI 迁移评估",
|
|
1351
|
+
"助教支持"
|
|
1352
|
+
]
|
|
1353
|
+
},
|
|
1354
|
+
"intervention": {
|
|
1355
|
+
"decision": "pilot",
|
|
1356
|
+
"target_learners": "大一 C 语言编程学生(60 人讲授课班)",
|
|
1357
|
+
"learning_goals": [
|
|
1358
|
+
"在不借助 AI 的情况下独立编写并调试小型 C 程序",
|
|
1359
|
+
"理解核心概念:变量、条件、循环、数组、指针",
|
|
1360
|
+
"批判性地把 AI 用作讲解与调试辅助,而非答案机"
|
|
1361
|
+
],
|
|
1362
|
+
"pilot_duration": "8 周",
|
|
1363
|
+
"phase_1": {
|
|
1364
|
+
"name": "阶段一 —— 独立基础",
|
|
1365
|
+
"activities": [
|
|
1366
|
+
"基线测验",
|
|
1367
|
+
"前 2 周作业完全不使用 AI 代码生成"
|
|
1368
|
+
],
|
|
1369
|
+
"ai_usage_rule": "禁止完整代码生成;AI 仅可用于概念讲解",
|
|
1370
|
+
"outcome_check": "基线任务表现与独立问题解决测量"
|
|
1371
|
+
},
|
|
1372
|
+
"phase_2": {
|
|
1373
|
+
"name": "阶段二 —— 只解释,不解题",
|
|
1374
|
+
"activities": [
|
|
1375
|
+
"第 3–4 周:允许 AI 解释错误、概念与调试思路"
|
|
1376
|
+
],
|
|
1377
|
+
"ai_usage_rule": "AI 可以解释,但不得产出完整解题方案",
|
|
1378
|
+
"outcome_check": "期中无 AI 测验"
|
|
1379
|
+
},
|
|
1380
|
+
"phase_3": {
|
|
1381
|
+
"name": "阶段三 —— 结构化协作",
|
|
1382
|
+
"activities": [
|
|
1383
|
+
"第 5–7 周:允许 AI 生成部分代码;学生必须用自己的话解释每段 AI 生成代码"
|
|
1384
|
+
],
|
|
1385
|
+
"ai_usage_rule": "允许部分代码生成;关键逻辑须书面解释;提交需附推理痕迹",
|
|
1386
|
+
"outcome_check": "每周实验完成率与代码质量量表"
|
|
1387
|
+
},
|
|
1388
|
+
"phase_4": {
|
|
1389
|
+
"name": "阶段四 —— 迁移检验",
|
|
1390
|
+
"activities": [
|
|
1391
|
+
"第 8 周:在无 AI 环境完成新的编程任务"
|
|
1392
|
+
],
|
|
1393
|
+
"ai_usage_rule": "迁移评估期间不得使用 AI",
|
|
1394
|
+
"outcome_check": "迁移测验分数、独立问题解决"
|
|
1395
|
+
},
|
|
1396
|
+
"ai_usage_policy": "AI 使用分三档明确分级(解释 / 协作 / 无 AI 迁移)。照抄未审视的 AI 输出属学术诚信违规,并通过推理痕迹要求核查。",
|
|
1397
|
+
"teacher_role": "设计护栏化提示与量表;监控使用日志;主持每周反思复盘",
|
|
1398
|
+
"student_role": "在允许模式下完成作业;提交推理痕迹;反思 AI 何时有帮助、何时掩盖了理解",
|
|
1399
|
+
"reflection_requirement": "学生须用自己的话解释关键 AI 生成逻辑;每阶段一份书面反思",
|
|
1400
|
+
"assessment": "无 AI 基线测验、期中测验、无 AI 迁移任务、代码质量量表、AI 使用自我报告",
|
|
1401
|
+
"risk_control": [
|
|
1402
|
+
"护栏化使用政策仿 Bastani 2025 GPT Tutor(提示而非答案)",
|
|
1403
|
+
"无 AI 迁移评估防止任务收益造成成绩虚高",
|
|
1404
|
+
"每周审查使用日志以发现拐杖行为"
|
|
1405
|
+
],
|
|
1406
|
+
"stop_conditions": [
|
|
1407
|
+
"迁移测验成绩显著低于基线同届预期",
|
|
1408
|
+
"推理痕迹中出现普遍诚信违规",
|
|
1409
|
+
"风险指标中 AI 依赖信号超阈值",
|
|
1410
|
+
"助教/教师工作量不可持续"
|
|
1411
|
+
],
|
|
1412
|
+
"evidence_alignment": [
|
|
1413
|
+
"E-004",
|
|
1414
|
+
"E-005",
|
|
1415
|
+
"E-006"
|
|
1416
|
+
]
|
|
1417
|
+
},
|
|
1418
|
+
"evaluation": {
|
|
1419
|
+
"research_question": "在大一 C 课程中,护栏化的 AI 编程助手(只解释→结构化协作)相比无 AI 教学,能否在不增加 AI 依赖的前提下提升独立问题解决能力?",
|
|
1420
|
+
"groups": {
|
|
1421
|
+
"treatment": "两个采用四阶段护栏化 AI 政策的实验班",
|
|
1422
|
+
"comparison": "两个无 AI 的匹配对照班(同一教师与材料)"
|
|
1423
|
+
},
|
|
1424
|
+
"baseline": "第 1 周无 AI 编程测验(独立问题解决、完成用时)",
|
|
1425
|
+
"post_test": "第 8 周无 AI 编程测验(独立问题解决、代码质量)",
|
|
1426
|
+
"retention_test": "期末考试(第 16 周)—— 试点后 8 周的延迟测量",
|
|
1427
|
+
"transfer_test": "第 8 周严格无 AI 环境下的新编程任务",
|
|
1428
|
+
"process_metrics": [
|
|
1429
|
+
"每周实验完成率",
|
|
1430
|
+
"AI 使用日志:提交的提示、复制代码块、推理痕迹",
|
|
1431
|
+
"求助行为计数"
|
|
1432
|
+
],
|
|
1433
|
+
"learning_metrics": [
|
|
1434
|
+
"独立问题解决(无 AI 测验)",
|
|
1435
|
+
"代码质量量表",
|
|
1436
|
+
"期末考试保持",
|
|
1437
|
+
"迁移任务得分"
|
|
1438
|
+
],
|
|
1439
|
+
"risk_metrics": [
|
|
1440
|
+
"AI 依赖指数(来自推理痕迹质量的『使用而无理解』)",
|
|
1441
|
+
"学术诚信违规",
|
|
1442
|
+
"自我报告的过度依赖",
|
|
1443
|
+
"虚假信心(测后自信 vs 实际得分)"
|
|
1444
|
+
],
|
|
1445
|
+
"analysis_plan": "预登记的实验班 vs 对照班基线调整学习指标比较(ANCOVA);任务表现指标与学习指标分开报告;按先验编程能力做亚组分析;第 3、5、7 周监测停止条件。",
|
|
1446
|
+
"success_threshold": "实验班独立问题解决非劣(差异在 5% 以内)且保持相当或更优、AI 依赖指数低于阈值;若独立问题解决下滑超过 10%,无论任务收益如何,试点均判为失败。",
|
|
1447
|
+
"stop_conditions": [
|
|
1448
|
+
"迁移测验成绩较对照班下滑超过 10%",
|
|
1449
|
+
"提交中诚信违规比例超过 20%",
|
|
1450
|
+
"AI 依赖指数连续两周超过预设阈值"
|
|
1451
|
+
]
|
|
1452
|
+
},
|
|
1453
|
+
"benchmark": {},
|
|
1454
|
+
"provenance": {
|
|
1455
|
+
"search_provider": "n/a"
|
|
1456
|
+
}
|
|
1457
|
+
}
|