بنقرة واحدة
commit
Version-guarded commit protocol — secret scan, SemVer triangulation, metadata sync, runtime validation
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Version-guarded commit protocol — secret scan, SemVer triangulation, metadata sync, runtime validation
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Generate a Context Resume for handing work off to a new session or a different AI tool
Release protocol — verify version, changelog from commits, tag, push, announce
Spec-driven, phase-bounded development — implement exactly one approved phase, verify, stop
Scaffold a new project to standard defaults and converge it — one command from idea to working skeleton
| name | commit |
| description | Version-guarded commit protocol — secret scan, SemVer triangulation, metadata sync, runtime validation |
Run this procedure whenever the user says "commit". Act as Manager and read .crules/modes/GIT_POLICY.md first.
.crules/ files (modes, tasks) and project_spec.md. Stage them automatically and tell the user which files were added.__version__ string exists in the package __init__.py and a version field exists in pyproject.toml (or the project's equivalents, e.g. Cargo.toml, go.mod + ldflags). If either is missing, STOP and ask: "No version string found in [file]. Initialize at 0.1.0?" Proceed only after confirmation.pyproject.toml, __init__.py, and Git tags. The highest value is the base version.git diff --cached --diff-filter=A --name-only and git diff --cached for newly added files, classes, or functions. If any are present, commit type is feat and the bump floor is minor, regardless of what was requested.pyproject.toml and the package __init__.py BEFORE git add. Both must contain the identical string.python3 -m <pkg> --version (or the project's equivalent) and capture the output.Conventional commits: <type>[scope]: <description>, imperative mood, focused and atomic. Types: feat, fix, docs, style, refactor, test, chore.