From coding-agent
Git branching strategy, commit conventions, commit frequency, and PR practices. Use when starting feature work, writing commit messages, or preparing a pull request.
npx claudepluginhub devjarus/coding-agentThis skill uses the workspace's default tool permissions.
- `main` is **always deployable** — never commit broken code directly to it
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.
main is always deployable — never commit broken code directly to itfeat/add-user-export, fix/login-redirect, chore/upgrade-depsUse the Conventional Commits format:
<type>(<optional scope>): <short summary>
<optional body — explain WHY, not what>
| Type | When to use |
|---|---|
feat | New feature visible to users |
fix | Bug fix |
refactor | Code change that is neither a feature nor a fix |
test | Adding or updating tests |
docs | Documentation only |
chore | Build tooling, dependency updates, config |
Rules:
Commit:
Small, frequent commits make bisecting bugs trivial and revert safe.
Closes #123