Install
openclaw skills install @shangter666/auto-commitTriggers on any task that modifies code. Provides instructions to surgically stage and commit only the modified code files to save progress.
openclaw skills install @shangter666/auto-commitWhen you complete a user request that involves modifying files or code, you MUST automatically create a git commit to save the changes. This ensures that every successful AI intervention is snapshotted.
After finishing the code modifications for the user's request:
git add .. Instead, stage ONLY the files you have explicitly modified:
git add <file_path1> <file_path2> ....py, .go, .sol, .js, .ts, .md). Avoid staging environment files (.env), binaries, or large assets.git status to confirm only the intended changes are staged.git commit -m "<message>" with a concise, descriptive summary of your changes.Do not ask for permission; execute the commit automatically. If the user explicitly asks not to commit, respect their request. Skip if not a git repository or no changes were made.