一键导入
commit-message
Generate conventional commit messages - use when creating commits, writing commit messages, or asking for git commit help.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate conventional commit messages - use when creating commits, writing commit messages, or asking for git commit help.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Firecrawl gives AI agents and apps fast, reliable web context with strong search, scraping, and interaction tools. One install command sets up three skill segments: live CLI tools, app-integration build skills, and outcome-focused workflow skills. Route the reader to the right usage path after install.
Create a decision history record in the history/ directory. Use before writing any implementation code for a new feature, architecture change, or significant technical decision.
Full development workflow from planning through deployment for AI Agent features. Use when developing new features, making significant architecture changes, or starting work on any non-trivial implementation.
Test execution workflow - run unit tests, linting, and type checking. Use when verifying code quality, running the full test suite, or checking before a commit.
Code review checklist - use for checking Python code quality, bugs, security issues, and best practices. Use when a user asks for a code review, needs to assess whether a change is safe to merge, or needs to review AI-agent code for production risk.
Debugging patterns and strategies - use when debugging issues, errors, or unexpected behavior. Use when a feature is failing, tests are failing, an AI/LLM workflow produces low-quality outputs, or a multi-step agent pipeline is hard to reason about.
基于 SOC 职业分类
| name | commit-message |
| description | Generate conventional commit messages - use when creating commits, writing commit messages, or asking for git commit help. |
| <!-- disable-model-invocation | true --> |
Generate commit messages following the Conventional Commits specification.
<type>(<scope>): <description>
[optional body]
[optional footer]
| Type | Description | When to Use |
|---|---|---|
feat | New feature | Adding new functionality |
fix | Bug fix | Fixing existing bugs |
docs | Documentation | README, docs, comments only |
style | Formatting | Code style (no logic change) |
refactor | Refactoring | Code change without new features/fixes |
perf | Performance | Performance improvements |
test | Testing | Adding or updating tests |
build | Build system | Dependencies, build tools |
ci | CI/CD | GitHub Actions, pipeline changes |
chore | Maintenance | Maintenance tasks |
BREAKING CHANGE: descriptionfix(auth): prevent redirect loop on expired sessions
feat(api): add rate limiting to public endpoints
- Limits requests to 100/minute per IP
- Returns 429 status with retry-after header
- Configurable via RATE_LIMIT_MAX env variable
feat(api)!: change response format to JSON
BREAKING CHANGE: API now returns JSON instead of XML