AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
A set of instructions for managing an AI coding agent's working context and coordinating helper agents. It covers files such as AGENTS.md and CLAUDE.md, which store project guidance for agents.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
A guide to using a coding agent, an AI assistant that works with software projects, for common development tasks. It covers implementation, bug fixing, refactoring, code review, code understanding, shell work, and less structured experimentation, along with the agent's limits and privacy concerns.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
Guidance on using AI responsibly in a team, including disclosing substantial AI contributions and following workplace AI policies. It also covers checking whether AI use is allowed in a particular situation.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
A guide to asking for help and clarifying questions, documented in Chinese.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
A setup guide for automating checks and releases in a software project. It covers pre-commit hooks, GitHub Actions, deployment, and shortcut commands.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
A set of tools for formatting code, checking it against coding rules, fixing common issues, and writing custom checks.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
A code review guide that gives practical feedback on a code change or pull request, separating blocking problems from suggestions.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
容器与部署:VM vs 容器、Dockerfile 最佳实践与镜像分层、builder pattern、Docker Compose、 systemd 自启、K8s 适用边界、配置与 secrets、DNS/反代/GitHub Pages。Use when the user asks to write a Dockerfile or docker-compose, containerize an app, or deploy a service. 触发于「写 Dockerfile/compose/容器化/部署服务」。.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
A guide to making useful contributions to an open-source project, including bug reports, minimal examples that reproduce problems, pull requests, contribution rules, licenses, and security disclosures.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
A guide to debugging problems ranging from ordinary logs to low-level system tracing and memory checks.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
Guidance for setting up a development environment, including choices between an IDE and terminal workflow, language servers, AI coding tools, and editor extensions.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
A collection of personal configuration files for shells and command-line tools, often stored in a dotfiles repository and installed with symbolic links.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
Git 命令地图:日常(status/add/commit/log/diff)、分支与合并、远程(push/fetch/pull/clone)、 撤销(amend/reset/restore)、进阶(blame/bisect/stash/rebase -i/revert/worktree)、gitignore 与 git config。Use when the user asks to commit, branch, merge, resolve conflicts, push, undo, or recover something in Git. 触发于「帮我 git 提交/合并/解冲突/推送/撤销/找回」。.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
An instructional guide to Git's data model: files stored as blobs, directory trees, commits, references, HEAD, and the staging area. Git is a version-control system that records project snapshots over time.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
A guided course for learning practical software-development skills from this repository’s 28 skills across nine lessons.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
性能分析:time 三值、资源监控(htop/btop/iotop/free/lsof/ss)、tidy 数据与绘图、 CPU profiler(perf/火焰图/callgrind)、内存 profiler(massif)、hyperfine 基准。Use when the user asks to profile performance, find bottlenecks, benchmark tools, or investigate resource usage. 触发于「帮我分析性能/找瓶颈/benchmark/查内存占用」。.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
Python 打包与发布:pip/uv、venv 虚拟环境、依赖地狱、pyproject.toml、wheel 与 sdist、 锁文件 uv.lock、PyPI/TestPyPI 发布。Use when the user asks to create a virtual environment, write a pyproject.toml, build or publish a Python package, or fix dependency conflicts. 触发于「建 venv/写 pyproject/打包发布/依赖冲突」。.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
A guide to regular expressions, which are patterns used to find, extract, or replace text. It covers building blocks, capture groups, references, greedy matching, and important limits.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
A guide to using a command-line shell: moving through folders, finding programs, reading command help, handling paths and quotes, and using common text and file commands.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
A reference for common command-line conventions, including options, input and output streams, environment variables, return codes, and pipelines.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
A guide to combining shell commands for processing logs, CSV files, text, and file lists. Shell commands are text instructions run in a terminal, and a pipeline passes one command's output to the next.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
信号与作业控制:Ctrl-C/Ctrl-Z、SIGINT/SIGQUIT/SIGTERM/SIGKILL、& 后台任务、jobs/fg/bg、 nohup/disown、trap 清理、wait/pgrep/pkill。Use when the user asks to run a command in the background, stop or kill a process, write a trap/cleanup script, or wait for a job. 触发于「放后台跑/杀掉这个进程/写清理脚本/等它跑完」。.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
A guide for writing, debugging, and adapting Bash scripts, which are command-line programs commonly used on Unix-like systems. It covers shell syntax, conditions, loops, variables, command output, exit codes, background jobs, and redirection.
AntheaLaffy/the-missing-semester-skills
Skill Claude CodeCodex
A guide to connecting to and working with remote machines using SSH, a secure command-line connection. It covers keys, file transfer, host aliases, pipelines, and port forwarding.