commit
Stage and commit changes using Conventional Commits format. Analyzes the diff, picks the right type/scope, and writes a concise commit message.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Stage and commit changes using Conventional Commits format. Analyzes the diff, picks the right type/scope, and writes a concise commit message.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Audit that docs/rbac-permission-matrix.md matches the RBAC catalog in code (roles, permissions, and grants in rbac.constants.ts and api-contracts permissions.ts). Reports every mismatch.
Generate CRUD boilerplate (backend NestJS controller/service/module/guard/policy/factory/routes/e2e + frontend Redux slice/thunks/selectors/middleware/spi/api) from a given entity file and a list of methods.
Run the last steps before ending a feature. Shows a form where you can check/uncheck which final steps to run — update changelog, create a branch, run tests-parallel, create a PR — then executes the selected steps in that order.
Create a GitHub issue on bayesimpact/bayes-platform from a free-text description. Drafts a clear title and structured body, picks appropriate labels, and posts it via the gh CLI, returning the issue URL. Optionally enriches the issue with context from the current codebase.
Suggest a Conventional Commits message for the last changes without committing. Analyzes the current diff and returns a ready-to-use commit name.
Run Trivy vulnerability scan on Docker images (API, CPU workers, GPU workers). Builds images, scans for CRITICAL/HIGH CVEs, and reports findings.
| name | commit |
| description | Stage and commit changes using Conventional Commits format. Analyzes the diff, picks the right type/scope, and writes a concise commit message. |
| user_invocable | true |
Create a git commit following the Conventional Commits specification.
<type>(<scope>): <short summary>
| Type | When to use |
|---|---|
feat | A new feature or capability |
fix | A bug fix |
refactor | Code change that neither fixes a bug nor adds a feature |
chore | Maintenance tasks, dependency updates, config changes |
ci | CI/CD pipeline, GitHub Actions, Makefile changes |
docs | Documentation only |
test | Adding or updating tests |
perf | Performance improvement |
style | Formatting, whitespace, linting (no logic change) |
core | Cross-cutting changes (changelog, versioning) |
The scope is optional but encouraged. Use the domain or area of the codebase affected:
AgentSession, Organization, Project, Userapi, web, ui, api-contractssecurity, docker, depsUse PascalCase for domain entities, lowercase for layers/infra. If the change spans many areas, omit the scope.
For non-trivial changes, add a body after a blank line with bullet points explaining key changes. Use - prefix.
Run git status (never use -uall) and git diff --staged in parallel. If nothing is staged, also run git diff to see unstaged changes.
Analyze the diff and determine:
Update CHANGELOG.md if the change is user-facing (feat or fix type). Skip for refactor, chore, ci, test, style, perf, docs — those are internal.
## [Unreleased] in the appropriate section:
feat → ### Added (new capability) or ### Changed (modified existing behavior)fix → ### Fixed(beta) prefix for features behind a feature flag or not yet exposed in the UI.Copy the commit message to the system clipboard using pbcopy via the Bash tool. Use printf to build the message (no trailing newline). Format:
<type>(<scope>): <summary>
- bullet point details if needed
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
feat(AgentSession): can delete
fix: show a loader when creating session
ci(security): add gitleaks allowlist
chore: promote changelog for v26.03.1
refactor(api): extract session validation into guard
test(web): add unit tests for project selector