From theclauu
Use when you want to quickly stage and commit all current changes with a conventional commit message.
npx claudepluginhub artemis-xyz/theclauu --plugin theclauuThis skill uses the workspace's default tool permissions.
1. Run `git status` to see the current state
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
git status to see the current stategit diff to understand the changesgit add -AExample: feat: add product search functionality
If you catch yourself thinking any of these, STOP — you are about to commit without adequate diligence:
git diff and actually read what you're committing. A "quick fix" that introduces a regression is not quick.git add -A stages everything, including files you forgot you modified, files your editor auto-saved, and temporary debugging code you meant to remove.git add -A without first running git status — Step 1 exists for a reason. You need to know what's about to be committed. Untracked files, modified configs, and accidental changes all get swept in by -A.| Excuse | Reality |
|---|---|
| "Just a quick fix" | Quick fixes need review too. Read the diff. |
| "I'll clean this up next commit" | No you won't. Clean it up now. |
| "The tests aren't related" | Run them anyway. 30 seconds to confirm no regression. |
| "It's just a docs change" | Docs can be wrong too. Read the diff. |
| "I know what I changed" | git add -A stages everything. Read git status first. |
| "One commit is fine for all of this" | Unrelated changes belong in separate commits. Split them. |
| "The message is good enough" | Vague messages make git log useless. Be specific. |
| "I'll run tests after pushing" | Post-push failures cost everyone time. Run tests pre-commit. |