一键导入
commit
Smart commit with Ollama-generated messages. Conventional commits, auto-push option. Triggers on: commit this, commit changes, smart commit, /commit.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Smart commit with Ollama-generated messages. Conventional commits, auto-push option. Triggers on: commit this, commit changes, smart commit, /commit.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Generate structured strategic prompts with diagnostic and multiple options. Triggers on: /modelar-prompt.
Gera a estrutura completa de um projeto ReactJS configurado e pronto para usar Ant Design. Triggers on: /react-antd-setup, 'criar projeto react ant design', 'setup react antd'.
Gera automaticamente getters, setters, construtores, toString, equals e hashCode para classes Java. Triggers on: /java-boilerplate, 'gerar métodos java', 'criar getters setters'.
Use this skill to review code. It supports both local changes (staged or working tree) and remote Pull Requests (by ID or URL). It focuses on correctness, maintainability, and adherence to project standards.
This skill should be used when building React components with TypeScript, typing hooks, handling events, or when React TypeScript, React 19, Server Components are mentioned. Covers type-safe patterns for React 18-19 including generic components, proper event typing, and routing integration (TanStack Router, React Router).
Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks
| name | commit |
| description | Smart commit with Ollama-generated messages. Conventional commits, auto-push option. Triggers on: commit this, commit changes, smart commit, /commit. |
| user-invocable | true |
Generate conventional commit messages using local Ollama (free, no API tokens).
/commit # Generate message from staged changes
/commit --push # Commit and push
/commit --all # Stage all changes first
/commit --style simple # Simple style (not conventional)
Check staged changes:
git diff --cached --stat
Generate message:
Use aria_commit_message (ARIA MCP) or fallback to ollama_commit_message.
Present and confirm: Show generated message, ask for edits.
Commit:
git commit -m "<message>
Co-Authored-By: Ollama <local@ollama.ai>"
Push (if --push):
git push origin HEAD
<type>(<scope>): <description>
<body>
Co-Authored-By: Ollama <local@ollama.ai>
Types: feat, fix, docs, style, refactor, test, chore, perf
<description>
<body>
/commit
# → feat(auth): add JWT token refresh endpoint
#
# - Added refresh token validation
# - Updated user session handling
# - Added tests for token expiry
/commit --push
# Same as above, then pushes to origin
/commit --all
# Stages all changes first: git add -A
mcp__aria__aria_commit_message (ARIA MCP - preferred)mcp__ollama__ollama_commit_message (Ollama MCP - fallback)AC CLI's qcommit command uses the same logic:
ac qcommit # Same as /commit
ac qcommit --push # Same as /commit --push
Lazygit keybinding A also triggers this.