ワンクリックで
conventional-commits
Conventional Commits specification and usage guidance. Trigger: Creating commits, git messages, or commit guidelines.
メニュー
Conventional Commits specification and usage guidance. Trigger: Creating commits, git messages, or commit guidelines.
Use AgentSync correctly and consistently to inspect repository agent setup, manage installable skills, and apply agent configuration changes. Trigger: when an agent needs to use the agentsync CLI, inspect AI agent symlinks, suggest/install/update skills, or initialize/sync AgentSync-managed configuration.
Create production-grade frontend interfaces with strong visual direction while avoiding generic AI-generated UI patterns. Trigger: building or modifying web components, pages, dashboards, or application UI.
GitHub Actions CI/CD best practices for workflow design, security hardening, and pipeline optimization. Trigger: When creating, reviewing, or auditing GitHub Actions workflows (.github/workflows/*.{yml,yaml}), fixing CI/CD issues, or hardening pipeline security.
Vite build tool configuration, plugin API, SSR, and Vite 8 Rolldown migration. Use when working with Vite projects, vite.config.ts, Vite plugins, or building libraries/SSR apps with Vite.
Corvus-specific Rust runtime guidance. Trigger: When working in clients/agent-runtime on providers, channels, tools, security, memory, gateway, runtime adapters, or other trait-driven runtime boundaries.
General Rust engineering guidance grounded in Rust Book best practices. Trigger: When creating, modifying, or reviewing Rust code, especially around ownership, error handling, traits, modules, testing, async boundaries, or performance-sensitive logic.
| name | conventional-commits |
| description | Conventional Commits specification and usage guidance. Trigger: Creating commits, git messages, or commit guidelines. |
| license | Apache-2.0 |
| metadata | {"author":"yuniel-acosta","version":"1.0"} |
<type>[optional scope][optional !]: <description>feat for new features, fix for bug fixes; other types allowed (docs, chore, ci, refactor, etc.)! before : or with a BREAKING CHANGE: footer: + spaceToken: value or Token #value); tokens use - not spacesfeat: allow provided config object to extend other configs
BREAKING CHANGE: `extends` key in config file is now used for extending other config files
feat(api)!: send an email when a product is shipped
docs: correct spelling of CHANGELOG
fix: prevent racing of requests
Introduce a request id and a reference to latest request. Dismiss
incoming responses other than from latest request.
Reviewed-by: Z
Refs: #123
git commit -m "feat(auth): add token refresh"
git commit -m "fix(api)!: drop legacy endpoint" -m "BREAKING CHANGE: remove v1 endpoint"