用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ForceInjection/domain-driven-design-skills --skill jj命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | jj |
| description | Use the jj version control system. Always use it when the user mentions jj. |
jj status - Show current statusjj log - Show commit historyjj diff - Show changes in current revision (@)jj diff --git - Show changes in git formatjj show - View changes in current revision (same as diff)jj desc -m "msg" - Add description to current changejj commit -m "msg" - Add description and start a new changejj new - Finalize current change and start a new onejj new -r main - Start a new change from mainjj squash - Combine changes with parentjj squash -i - Interactive squash (select specific changes)jj split - Split current change into multiple partsjj abandon - Discard current changejj edit <change-id> - Switch to and edit a specific changejj edit @- - Move to previous changejj next --edit - Move to next changejj bookmark create <name> / jj b c <name> - Create bookmark at current revisionjj b c -r@ <name> - Create bookmark at @ (current revision)jj rebase -b@ -dmain - Rebase current branch onto mainjj rebase -s <source> -d <dest> - Rebase source onto destinationjj new <change1> <change2> -m "msg" - Merge multiple changesjj git init - Initialize jj repository with git backendjj git fetch - Fetch from remote (updates tracked bookmarks)jj git push - Push bookmarks to remotejj git push --allow-new - Push including new bookmarksjj undo - Undo last jj commandjj restore <file> - Restore file from a revisionjj resolve - Open conflict resolution UIjj file annotate <file> - Show file annotation (like git blame)@ = the working copy (current revision)To understand the syntax of the jj revset language (-r flag), use the following command: jj help -k revsets