DeepSeek Harness plugin

missing-semester-skills-dsh

dsh plugin fork of the-missing-semester-skills: 29 agent skills distilled from MIT's The Missing Semester (2026), all 9 lectures.

Jump to install

Source facts

Repository
AntheaLaffy/missing-semester-skills-dsh
Latest update
Aug 16, 2026
Category
Workflow & Automation
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/AntheaLaffy/missing-semester-skills-dsh
Plugin: missing-semester-skills-dsh
Author: AntheaLaffy

Check the source files

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

File explorer3 files
README_en.mdSource · read only
README language

The Missing Semester · Skills

en | zh

> Being a good software engineer isn't just about writing code that works — it's about writing code that others (including future you) can understand, maintain, and build upon.

This skill collection distills lectures from MIT's *The Missing Semester of Your CS Education* (2026 edition) into reusable Claude Code skills, organized by lecture. Covered so far: Lecture 1, *Course overview + the shell*; Lecture 2, *Command-line Environment*; Lecture 3, *Development Environment*; Lecture 4, *Debugging and Profiling*; Lecture 5, *Version Control and Git*; Lecture 6, *Packaging and Shipping Code*; Lecture 7, *Agentic Coding*; Lecture 8, *Beyond the Code*; and Lecture 9, *Code Quality*.

Lecture 1 · Course overview + the shell

  • shell-basics — Navigation, man/--help/tldr lookups, $PATH and which, quoting and escaping, core command cheatsheet. User-invoked
  • shell-data-wrangling — Pipes |, redirection, and cat/sort/uniq/grep/sed/find/awk/xargs/tee/jq combos for one-command log analysis. Model-invoked ("help me write a command to process logs / text / CSV")
  • shell-scripting — The bash language: shebang, set -euo pipefail, conditionals and loops, command substitution; pair with shellcheck, port to Python past ~100 lines. Model-invoked ("help me write a shell script")

> The lecture's course overview (instructors, purpose, structure) is meta information and is not distilled into a skill.

Lecture 2 · Command-line Environment

  • shell-conventions — Deep-dive conventions for arguments (-- terminator / globbing), streams and redirection, environment variables (process substitution / export), return codes and &&/||; plus AI in the shell (llm). User-invoked
  • shell-job-control — Signals (SIGINT/SIGTERM/SIGKILL), &/jobs/fg/bg, nohup/disown, trap cleanup, wait/pgrep/pkill. Model-invoked ("run this in the background / kill a process / write a cleanup script")
  • ssh-remote — SSH keys and authorized_keys, non-interactive commands, scp/rsync, ~/.ssh/config aliases and port forwarding, mosh. Model-invoked ("connect to a server / set up SSH keys / copy files")
  • dotfiles — Dotfiles repo with symlinks, aliases/functions, PATH, package managers, Ctrl-R history search, terminal emulator choice. Model-invoked ("organize dotfiles / write an alias")
  • tmux — Sessions/windows/panes hierarchy and <C-b> keybinding cheatsheet. User-invoked

Lecture 3 · Development Environment

  • vim-editing — The Vim interface language: modal editing, nouns (movement) / verbs (editing), counts and modifiers; Vim mode everywhere (VSCodeVim / Zsh / Claude Code). User-invoked
  • dev-environment — IDE vs terminal workflow tradeoffs, language servers and LSP, the three forms of AI-driven development, extensions / remote / collaboration; notes DeepSeek Harness (dsh) for users in mainland China. Model-invoked ("set up my IDE / language server / AI autocomplete / extension")

Lecture 4 · Debugging and Profiling

  • debugging — The debugging tool ladder: print/logging, gdb, rr reverse debugging, strace/bpftrace, network capture, sanitizers/Valgrind, AI assistance. Model-invoked ("debug a crash / segfault / memory error")
  • profiling — Performance analysis: the three time values, resource monitoring, tidy data and plotting, perf/flame graphs/callgrind, massif, hyperfine. Model-invoked ("analyze performance / find bottlenecks / benchmark")

> These two skills cover only the science side of the MIT lecture (principles and concrete tools); for the version mixed with engineering strategy (the art side), see dsh's built-in debugging-and-profiling and diagnosing-bugs.

Lecture 5 · Version Control and Git

  • git-data-model — blobs/trees/commits, the commit DAG, content addressing, references and HEAD, the staging area; every command is an operation on the model. User-invoked
  • git-cli — Command map: daily use / branching & merging / remotes / undo / advanced / gitignore & config; commit messages and PRs point to writing-for-readers and contributing-upstream. Model-invoked ("commit / merge / resolve a conflict / push / undo in git")

Lecture 6 · Packaging and Shipping Code

  • python-packaging — pip/uv, venvs, dependency hell, pyproject.toml, wheels/sdists, lock files, publishing to PyPI/TestPyPI. Model-invoked ("create a venv / write pyproject.toml / build or publish / dependency conflicts")
  • versioning-reproducibility — SemVer/CalVer, version specifiers, library-vs-application pinning strategy, hermetic builds, upgrades and rollback. User-invoked
  • containers-deployment — Dockerfile best practices and image layers, Compose, systemd, when Kubernetes is worth it, configuration and secrets, deployment. Model-invoked ("write a Dockerfile / compose / containerize / deploy")

Lecture 7 · Agentic Coding

  • agentic-coding — The intern mental model, LLM mechanics and privacy, seven task types (implement / fix / refactor / review / understand / shell / vibe coding), caveats; notes dsh. Model-invoked ("implement / fix / refactor / review / understand with an agent")
  • agent-context-management — The context toolkit (clear / rewind / compact / llms.txt / AGENTS.md / Skills), subagents, parallel agents with worktrees, MCP; this repo is itself a Skills practice. Model-invoked ("write an AGENTS.md / create a skill or subagent / manage context / MCP")

> Both skills ship dsh (DeepSeek Harness)-specific hands-on exercises in exercises-dsh.md — mapping the lecture's Claude Code mechanics (Skills / subagents / compaction / confirmation prompts) onto dsh for a fast start. Official docs: <https://www.deepseek.com/harness/>

Lecture 8 · Beyond the Code

One-way communication

  • writing-for-readers — Comments, READMEs, commit messages: capture the why, not just the what. Model-invoked ("help me write a commit message / comment / README / PR description")

Collaboration

#### Contributing

  • contributing-upstream — Bug reports, minimal repros, issues, PRs, licenses and security disclosure: maintainer time is scarce, keep the signal-to-noise ratio high. Model-invoked ("I want to report a bug / open a PR / contribute to open source / write a repro")

#### Reviewing

  • code-review — Review the code, not the person: actionable suggestions, questions over demands, nit: markers, call out the good parts, know when to stop. Model-invoked ("help me review this code / this PR")

Education

  • asking-good-questions — Asking for help: state your understanding first, prefer yes/no questions, admit what you don't understand, don't accept incomplete answers. User-invoked

AI etiquette

  • ai-etiquette — Disclose substantive AI contributions, follow team policies, confirm the rules in assessment settings, don't let AI do the learning for you. User-invoked

Lecture 9 · Code Quality

  • code-quality-tooling — Formatters (Prettier/Black/gofmt/EditorConfig), linters (rules / presets / auto-fix), semgrep semantic grep. Model-invoked ("set up a formatter / linter / fix lint errors")
  • testing — Test types (unit / integration / functional / regression / property-based), mocking, line coverage and Codecov; TDD discipline lives in dsh's tdd skill. Model-invoked ("write tests / raise coverage")
  • ci-cd — Pre-commit hooks, GitHub Actions (push / PR / schedule, matrices, check-only mode, badges), continuous deployment, just / npm scripts command runners. Model-invoked ("set up pre-commit / CI/CD / just")
  • regex — Syntax cheatsheet, capture groups and references, the greediness trap, limitations. User-invoked

Course tutor

  • learn-missing-semester — A progressive learning loop built on the 28 skills as minimal units across 9 lectures: motivation → minimal knowledge → verifiable practice → retrieval quiz → record, with spaced review and a mistake pool; progress lives in .missing-semester/ in the current directory. User-invoked

> Start learning with one command: tell dsh "use learn-missing-semester to start learning"; afterwards say "continue learning", "learn lecture N", or "review".

Installation

One-click install (symlinks; agents pick up repo updates automatically):

# Recommended: download, inspect, then run
curl -fsSL https://raw.githubusercontent.com/AntheaLaffy/the-missing-semester-skills/main/install.sh -o install.sh
less install.sh
bash install.sh            # interactively choose claude / agents / opencode / all

# Or one step (dsh users)
curl -fsSL https://raw.githubusercontent.com/AntheaLaffy/the-missing-semester-skills/main/install.sh | bash -s -- agents --yes
  • Primary target: ~/.claude/skills (Claude Code), ~/.agents/skills (dsh / DeepSeek Harness), ~/.config/opencode/skills (OpenCode), or ~/.codex/skills (Codex CLI)
  • For other agents: if their skills folder exists you can optionally install there too; if it doesn't, you can optionally create it as a symlink to the primary target
  • OpenCode natively reads .claude/skills and .agents/skills, so installing to either covers it
  • Uninstall: bash install.sh --uninstall

The old way also works: copy this directory into a skills folder, or git clone this repo to ~/.claude/skills/.

The nineteen model-invoked skills load automatically when relevant; the ten user-invoked skills carry zero context cost and are triggered by name. Each skill folder includes the lecture's exercises in exercises.md for review.

Source & attribution

Adapted from the lecture notes and transcripts of The Missing Semester of Your CS Education (2026 edition).

  • Lecture 1, Course overview + the shell: <https://missing.csail.mit.edu/2026/course-shell/> · video: <https://www.youtube.com/watch?v=MSgoeuMqUmU>
  • Lecture 2, Command-line Environment: <https://missing.csail.mit.edu/2026/command-line-environment/> · video: <https://www.youtube.com/watch?v=ccBGsPedE9Q>
  • Lecture 3, Development Environment: <https://missing.csail.mit.edu/2026/development-environment/> · video: <https://www.youtube.com/watch?v=QnM1nVzrkx8>
  • Lecture 4, Debugging and Profiling: <https://missing.csail.mit.edu/2026/debugging-profiling/> · video: <https://www.youtube.com/watch?v=8VYT9TcUmKs>
  • Lecture 5, Version Control and Git: <https://missing.csail.mit.edu/2026/version-control/> · video: <https://www.youtube.com/watch?v=9K8lB61dl3Y>
  • Lecture 6, Packaging and Shipping Code: <https://missing.csail.mit.edu/2026/shipping-code/> · video: <https://www.youtube.com/watch?v=KBMiB-8P4Ns>
  • Lecture 7, Agentic Coding: <https://missing.csail.mit.edu/2026/agentic-coding/> · video: <https://www.youtube.com/watch?v=sTdz6PZoAnw>
  • Lecture 8, Beyond the Code: <https://missing.csail.mit.edu/2026/beyond-code/> · video: <https://www.youtube.com/watch?v=2DOEATfXT8k>
  • Lecture 9, Code Quality: <https://missing.csail.mit.edu/2026/code-quality/> · video: <https://www.youtube.com/watch?v=XBiLUNx84CQ>
  • Course materials are licensed under CC BY-NC-SA 4.0; these skills follow the same license.