DeepSeek Harness plugin

dsh-lesson-outline

教学课件大纲生成工具插件(DeepSeek Harness dsh-plugin)— 输入主题,输出结构化课件大纲

Jump to install

Source facts

Repository
mhtdm/dsh-lesson-outline
Latest update
Aug 15, 2026
Category
Tools & Capabilities
GitHub stars
0
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/mhtdm/dsh-lesson-outline
Plugin: dsh-lesson-outline
Author: mhtdm

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer3 files
README.mdSource · read only

dsh-lesson-outline

教学课件大纲生成工具插件(DeepSeek Harness dsh-plugin

输入主题 + 章节数 + 学员水平 → 输出结构化课件大纲 JSON。纯逻辑实现,不调用外部 API、不烧 token。

功能

lesson_outline 工具:给模型一个确定性的"课件大纲脚手架"——模型输入 topic(主题)、sections(章节数 1-8,默认 3)、level(beginner/intermediate/advanced,默认 beginner),工具返回规范化大纲 JSON(含每节标题/要点/时长/教学活动),模型基于它展开完整课件内容。

安装(dsh bundle 方式)

# 在 dsh 环境
dsh plugin --profile <name> add dsh-lesson-outline

或在 profile 的 cordis.patch.yml 添加:

- insert:
    - id: dsh-lesson-outline
      name: 'dsh-lesson-outline'

开发

npm install
npm run build       # tsc 编译到 lib/
npm test            # node:test 单元测试(tsx 运行)

输出示例

输入:{ topic: "Python 正则表达式入门", sections: 3, level: "beginner" }

{
  "topic": "Python 正则表达式入门",
  "level": "beginner",
  "totalDurationMin": 45,
  "sections": [
    { "title": "第 1 节", "keyPoints": ["..."], "durationMin": 15, "activity": "讲解 + 演示" },
    { "title": "第 2 节", "keyPoints": ["..."], "durationMin": 15, "activity": "练习 + 讨论" },
    { "title": "第 3 节", "keyPoints": ["..."], "durationMin": 15, "activity": "讲解 + 演示" }
  ],
  "summary": "《Python 正则表达式入门》课件大纲(beginner 级,3 节,约 45 分钟)"
}

License

MIT