← 返回
未分类

chinese-learning-skills

上海初中语文私教 - 错题分析、举一反三、笔记整理、智能组卷、作文批改
上海初中语文私教 - 错题分析、举一反三、笔记整理、智能组卷、作文批改
user_9280aa63
未分类 community v1.1.0 4 版本 99152.5 Key: 无需
★ 0
Stars
📥 117
下载
💾 0
安装
4
版本
#latest

概述

语文错题私教

上海初中语文(6-9年级)智能学习助手,部编版教材全覆盖。

功能模块

模块说明优先级
--------------------
错题分析拍照/手写/文本录入→AI定位错因→映射知识点→创建ima笔记P0
举一反三基于错题知识点生成变式题,5级难度梯度→创建ima笔记P1
课堂笔记多模态输入→AI分类整理→创建ima笔记P1
智能组卷按知识点/难度/错误频率组卷→创建ima笔记,PDF输出P1
作文批改多维度评分(100分)→逐段批注→修改建议→创建ima笔记P1

依赖

  • 平台: WorkBuddy >= 2.0.0 + 微信小程序
  • 模型: 文本推理模型(必需) + 视觉理解模型(必需)
  • 权限: camera, photo_library, microphone, network, storage
  • 必需: ima API(所有功能结果直接创建为ima笔记)

输入参数

error_analysis_input

type: object
required: [input_type, content]
properties:
  input_type: {type: string, enum: [image, text, handwriting]}
  content: {type: string}
  image_url: {type: string}
  subject_area: {type: string, enum: [basic_knowledge, classical_chinese, modern_reading, poetry_appreciation, writing]}
  grade: {type: string, enum: ["6","7","8","9"]}
  student_answer: {type: string}
  correct_answer: {type: string}

practice_generation_input

type: object
required: [knowledge_points, mode]
properties:
  knowledge_points: {type: array, items: {type: string}}
  mode: {type: string, enum: [similar, variant, comprehensive]}
  count: {type: integer, minimum: 1, maximum: 10, default: 5}
  difficulty: {type: string, enum: [easy, medium, hard, challenge, competition]}
  source_error_id: {type: string}

note_input

type: object
required: [input_type, content]
properties:
  input_type: {type: string, enum: [image, text, voice]}
  content: {type: string}
  category: {type: string, enum: [classical_chinese, modern_reading, poetry, writing_technique, basic_knowledge]}
  lesson_info:
    type: object
    properties:
      textbook_chapter: {type: string}
      lesson_date: {type: string, format: date}

exam_paper_input

type: object
required: [generation_mode]
properties:
  generation_mode: {type: string, enum: [smart, manual]}
  knowledge_points: {type: array, items: {type: string}}
  question_count: {type: integer, minimum: 5, maximum: 50, default: 20}
  difficulty_distribution: {type: object, properties: {easy: {type: number}, medium: {type: number}, hard: {type: number}}}
  question_types: {type: array, items: {type: string, enum: [choice, fill_blank, short_answer, reading_comprehension, classical_chinese, essay]}}
  manual_question_ids: {type: array, items: {type: string}}
  output_format: {type: string, enum: [pdf, html, print], default: pdf}

essay_review_input

type: object
required: [input_type, content, essay_type]
properties:
  input_type: {type: string, enum: [image, text]}
  content: {type: string}
  essay_type: {type: string, enum: [narrative, argumentative, expository, prose, reflection]}
  title: {type: string}
  word_count_requirement: {type: integer}
  is_resubmission: {type: boolean, default: false}
  previous_review_id: {type: string}

输出参数

error_analysis_output

type: object
properties:
  question_id: {type: string}
  original_content: {type: string}
  error_location: {type: string}
  error_type: {type: string, enum: [typo, grammar, comprehension, classical_chinese, logic, other]}
  error_reason: {type: string}
  knowledge_points: {type: array, items: {type: object, properties: {id: {type: string}, name: {type: string}, mastery_level: {type: string, enum: [weak, developing, proficient]}}}}
  correct_answer: {type: string}
  solution_steps: {type: array, items: {type: string}}
  improvement_suggestions: {type: array, items: {type: string}}
  ima_note:
    type: object
    properties:
      note_id: {type: string}
      title: {type: string}
      folder: {type: string}
      status: {type: string, enum: [created, failed]}

practice_generation_output

type: object
properties:
  exercises:
    type: array
    items:
      type: object
      properties:
        exercise_id: {type: string}
        question: {type: string}
        question_type: {type: string}
        options: {type: array, items: {type: string}}
        correct_answer: {type: string}
        explanation: {type: string}
        difficulty: {type: string, enum: [easy, medium, hard, challenge, competition]}
        knowledge_points: {type: array, items: {type: string}}
  total_count: {type: integer}
  source_error_id: {type: string}
  ima_note:
    type: object
    properties:
      note_id: {type: string}
      title: {type: string}
      folder: {type: string}
      status: {type: string, enum: [created, failed]}

note_output

type: object
properties:
  note_id: {type: string}
  structured_content: {type: string}
  category: {type: string}
  knowledge_tags: {type: array, items: {type: string}}
  key_points: {type: array, items: {type: string}}
  related_errors: {type: array, items: {type: string}}
  ima_note:
    type: object
    properties:
      note_id: {type: string}
      title: {type: string}
      folder: {type: string}
      status: {type: string, enum: [created, failed]}

exam_paper_output

type: object
properties:
  paper_id: {type: string}
  title: {type: string}
  questions:
    type: array
    items:
      type: object
      properties:
        sequence: {type: integer}
        question_content: {type: string}
        question_type: {type: string}
        points: {type: integer}
        correct_answer: {type: string}
        knowledge_point: {type: string}
        difficulty: {type: string}
  total_points: {type: integer}
  estimated_duration: {type: string}
  pdf_url: {type: string}
  answer_sheet_url: {type: string}
  ima_note:
    type: object
    properties:
      note_id: {type: string}
      title: {type: string}
      folder: {type: string}
      status: {type: string, enum: [created, failed]}

essay_review_output

type: object
properties:
  review_id: {type: string}
  basic_info: {type: object, properties: {title: {type: string}, essay_type: {type: string}, word_count: {type: integer}, review_time: {type: string, format: datetime}}}
  scores:
    type: object
    properties:
      content_and_theme: {type: integer, maximum: 25}
      structure: {type: integer, maximum: 25}
      language: {type: integer, maximum: 25}
      writing_standard: {type: integer, maximum: 10}
      creativity: {type: integer, maximum: 15}
      total: {type: integer, maximum: 100}
      grade: {type: string, enum: [A, B, C, D]}
  paragraph_annotations:
    type: array
    items: {type: object, properties: {paragraph_index: {type: integer}, content: {type: string}, highlights: {type: array, items: {type: string}}, issues: {type: array, items: {type: string}}, suggestions: {type: array, items: {type: string}}}}
  error_list:
    type: object
    properties:
      typos: {type: array, items: {type: object, properties: {wrong: {type: string}, correct: {type: string}}}}
      grammar_errors: {type: array, items: {type: object, properties: {sentence: {type: string}, suggestion: {type: string}}}}
      punctuation_errors: {type: array, items: {type: object, properties: {location: {type: string}, correct_usage: {type: string}}}}
  modification_suggestions: {type: object, properties: {structure_advice: {type: array, items: {type: string}}, content_direction: {type: array, items: {type: string}}, language_improvement: {type: array, items: {type: string}}, before_after_examples: {type: array, items: {type: object, properties: {before: {type: string}, after: {type: string}}}}}}
  overall_comment: {type: object, properties: {summary: {type: string}, strengths: {type: array, items: {type: string}}}}
  ima_note:
    type: object
    properties:
      note_id: {type: string}
      title: {type: string}
      folder: {type: string}
      status: {type: string, enum: [created, updated, failed]}
      workflow_step: {type: string, enum: [step1_created, step2_reviewed, step3_revised]}

数据存储

所有功能结果直接创建为 ima 笔记,存入「语文宝典」对应文件夹:

功能模块ima笔记文件夹笔记标题格式
-------------------------------------
错题分析错题本/【错题】{知识点} - {日期}
举一反三错题本/【练习】{知识点} - {日期}
课堂笔记课堂笔记整理/【笔记】{标题} - {日期}
智能组卷组卷练习/【试卷】{标题} - {日期}
作文批改作文集/【作文】{题目} - {日期}
学习报告学习报告/【报告】{周期} - {日期}

知识领域

ID涵盖
----------
basic_knowledge字词句、错别字、标点、病句
classical_chinese实虚词、句式、翻译、文言阅读
modern_reading记叙/说明/议论文阅读理解与答题
poetry_appreciation意象、手法、情感、名句默写
writing审题立意、结构、语言、文体

适用范围

  • 年级:6-9年级 | 教材:上海部编版 | 语言:zh-CN
  • 场景:课后错题、考前组卷、笔记归纳、作文训练

安装

  1. WorkBuddy小程序搜索「语文错题私教」→ 安装 → 对话使用
  2. 需开启ima功能,所有结果直接创建为ima笔记存入「语文宝典」

版本

版本日期内容
------------------
1.0.02026-05初版发布
1.0.12026-05Token优化,prompt精简重构
1.0.22026-05所有功能直接创建ima笔记,移除中间知识库文件

支持

  • 主页:https://github.com/your-org/chinese-learning-skills
  • 邮箱:support@example.com
  • 许可:MIT

版本历史

共 4 个版本

  • v1.1.0 Initial release 当前
    2026-05-27 11:51 安全 安全
  • v1.0.2 Initial release
    2026-05-17 10:29 安全 安全
  • v1.0.1 Initial release
    2026-05-14 16:50 安全 安全
  • v1.0.0 Initial release
    2026-05-09 22:08 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-intelligence

ontology

oswalpalash
类型化知识图谱,用于结构化智能体记忆与可组合技能。支持创建/查询实体(人员、项目、任务、事件、文档)及关联...
★ 714 📥 244,006
ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,362 📥 318,770
developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 671 📥 324,345