一键导入
conventional-commit
Generate a conventional commit message from staged/unstaged changes and automatically commit.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate a conventional commit message from staged/unstaged changes and automatically commit.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
When the user wants to review, edit, or improve existing website and marketing copy, especially requests like "review copy", "audit copy website", "polish landing page copy", "improve messaging", "tighten this text", or "copy feedback". Use this for existing copy in frontend/src and frontend/docs. For rewriting from scratch, hand off to copywriting. For structural conversion issues (section flow, CTA placement, friction), hand off to page-cro.
Create a structured implementation plan for a new feature, refactor, or infrastructure change. Outputs a machine-readable markdown plan with phases, tasks, requirements, and testing criteria.
Create optimized multi-stage Dockerfiles for Next.js frontend and FastAPI backend. Smaller images, non-root user, healthcheck, pinned versions.
Generate a Playwright TypeScript E2E test for a given scenario. Navigates the app step-by-step, uses role-based locators, and saves the test in tests/e2e/.
PostgreSQL query optimization and schema review. Covers EXPLAIN ANALYZE, indexing strategy, JSONB, pagination, and security (parameterized queries).
Run pytest with coverage, identify uncovered lines, and iteratively add tests until 100% coverage is reached.
| name | conventional-commit |
| description | Generate a conventional commit message from staged/unstaged changes and automatically commit. |
Follow these steps:
git status to review changed files.git diff or git diff --cached to inspect changes.git add <file> if not already staged.type(scope): short imperative description
[optional body: more detailed explanation]
[optional footer: BREAKING CHANGE: ... or Closes #123]
Types: feat | fix | docs | style | refactor | perf | test | build | ci | chore | revert
feat(editor): add layer duplication via keyboard shortcut
fix(auth): resolve session expiry not redirecting to login
refactor(store): split editorStore into shape and canvas slices
test(api): add pytest coverage for credit deduction endpoint
ci(github-actions): pin checkout action to immutable SHA
chore(deps): upgrade next to 16.1.6
editor, auth, api, store, docker).BREAKING CHANGE:) or issue references (Closes #123).git commit -m "type(scope): description"