一键导入
commit
Stage and commit changes with a well-crafted conventional commit message. Use when the user says "commit", "comite", or asks to save changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Stage and commit changes with a well-crafted conventional commit message. Use when the user says "commit", "comite", or asks to save changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Detect and fix documentation violations across C++ compiler and TML library code. Scans for missing ///, undocumented public items, wrong comment styles, and auto-fixes using parallel agents. Use when the user says "fix docs", "audit docs", "documenta", "corrige docs", or wants to improve documentation coverage.
Deep knowledge of TML compiler internals. Inject before working on compiler C++ code. Maps the full pipeline with key functions, types, and cross-subsystem boundaries.
Deep knowledge of TML standard library structure, module dependencies, key types, and C runtime mapping. Inject before working on library code.
Detect which tests are affected by recent code changes. Use when the user wants to know what tests to run after making changes.
List build artifacts with sizes and ages. Use when the user asks about build outputs, compiled binaries, or disk usage.
Build the TML compiler from C++ sources. Use when the user says "build", "compila", "rebuild", or needs to recompile the compiler after C++ changes.
| name | commit |
| description | Stage and commit changes with a well-crafted conventional commit message. Use when the user says "commit", "comite", or asks to save changes. |
| user-invocable | true |
| argument-hint | [optional commit message override] |
This skill runs directly in the main conversation (no agent delegation needed — git operations are lightweight).
Follow this exact sequence:
Run these in parallel:
git status -u (never use -uall)git diff --cached --stat to see staged changesgit diff --stat to see unstaged changesgit log --oneline -5 to see recent commit stylegit add <specific-files>git add -A or git add ..env, credentials, or secretsBefore committing, run formatting on any C++ files that were modified:
.cpp or .hpp files are stagedUse conventional commit format matching the project style:
<type>(<scope>): <description>
[optional body]
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Types: feat, fix, refactor, docs, test, perf, chore
Scopes: std, core, compiler, codegen, mcp, cli, test, docs
If $ARGUMENTS is provided, use it as the commit message body/description.
ALWAYS use HEREDOC format:
git commit -m "$(cat <<'EOF'
type(scope): description
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
EOF
)"
mcp__tml__format tool)Run git status after commit to confirm clean state.