From mint
Pre-modification gate that routes file write/edit/delete tasks to the mint development framework for auto-routing and quality gates. Invoke before any file change in a mint-managed project.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mint:using-mintThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
<MANDATORY-RULE>
Invoke mint BEFORE modifying any file. mint auto-routes to the right mode based on task complexity. You do not decide the workflow — mint does.
Use the Skill tool to invoke mint with the user's task description:
Skill({ skill: "mint", args: "Add dark mode toggle to the settings page" })
mint will auto-detect the right mode, announce the routing decision, and execute with quality gates and disciplined delegation.
| Task | Mode |
|---|---|
| Feature implementation | plan or ship |
| Bug fix | quick or plan |
| Refactor | plan |
| Config change (≤3 files) | quick |
| Research / investigation | research |
| Check quality gates | verify |
| Pure conversation / reading files | No — mint not needed |
If you're tempted to skip mint ("this is just a small fix", "I'll edit one file directly") — that's exactly when mint matters most. Small fixes use quick mode. mint enforces gates even on single files.
mint expects .mint/config.json in the project root. If it doesn't exist, mint will prompt to run init.
The user can always override mint's routing:
npx claudepluginhub 3li7alaki/mint --plugin mintImplementation skill emphasizing verification-driven coding with tight feedback loops. Guides multi-step implementation work: orient, plan, implement, verify, commit. Based on analysis of 21k+ operations.
Provides structured workflow packs for 7 common Claude Code tasks: codebase exploration, bug fixing, safe refactoring, TDD, repo review before merge, CLAUDE.md generation, and migration planning.