一键导入
aipcc-commit-suggest
Generate AIPCC Commits style commit messages or summarize existing commits
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate AIPCC Commits style commit messages or summarize existing commits
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Check an ODH module operator repository for contract violations against the platform onboarding guide. Validates PlatformObject status, CRD structure, Helm chart content, webhook ownership, metadata conventions, and reconciler chain ordering. Use during code review or after scaffolding a new module.
Read existing in-tree ODH operator component code and produce a step-by-step extraction checklist for migrating it to a standalone module. Analyzes controller logic, webhooks, RBAC, embedded manifests, and DSC field mappings. Use when extracting a component from the monolithic operator into its own module repo.
Given a component name, generate a complete standalone ODH module operator repository. Produces Go module, CRD types implementing PlatformObject, controller skeleton with reconciler builder pattern, Helm chart, Makefile, CI config, singleton webhook, and AGENTS.md. Use when starting a new module from scratch.
Hello world plugin implementation
Generate comprehensive sprint summaries by analyzing JIRA sprint data, including issue breakdown, progress metrics, and team performance insights.
Manage Konflux application
| name | aipcc-commit-suggest |
| description | Generate AIPCC Commits style commit messages or summarize existing commits |
| argument-hint | ["N"] |
odh-ai-helpers:aipcc-commit-suggest
/aipcc:commit-suggest # Analyze staged changes
/aipcc:commit-suggest [N] # Analyze last N commits (1-100)
AI-powered command that analyzes code changes and generates commit messages following the project's AIPCC format requirements.
Modes:
git add required)Use cases:
Difference from /git:summary – That command is read-only, while aipcc:commit-suggest generates actionable commit message suggestions for user review and manual use.
The command operates in two modes based on input:
Mode 1 (no argument):
git diff --cached1, use option 2, commit with option 3, skipgit commit -s with selected message if user requests (includes sign-off)Mode 2 (with N):
git log1, use option 2, amend with option 3, skipgit commit --amend -s (N=1) or squash operation (N≥2) if user requests# Generate message for staged files
git add src/auth.ts src/middleware.ts
/aipcc:commit-suggest
# Rewrite last commit message
/aipcc:commit-suggest 1
# Summarize last 5 commits for squash
/aipcc:commit-suggest 5
Generates 3 AIPCC-formatted commit message suggestions:
Each suggestion includes:
AIPCC-XXX: description)Fixes AIPCC-XXX)Example:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Suggestion #1 (Recommended)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
AIPCC-123: Add JWT authentication middleware
Implement token-based authentication for API endpoints to enhance
security. The middleware verifies JWT tokens and extracts user
information for authorization decisions.
Fixes AIPCC-123
Co-Authored-By: [AI_NAME] ([AI_MODEL])
Signed-off-by: Your Name <your.email@example.com>
Which suggestion would you like to use? (1/2/3 or skip)
Squashed from N commits: + original commit listAll commits must follow this project-specific format:
AIPCC-XXX: Short description
Longer explanation of what the commit does, written in at least one
complete sentence explaining the purpose and impact of the change.
[Optional: Fixes AIPCC-XXX]
[Optional: Co-Authored-By: [AI_NAME] ([AI_MODEL])]
Signed-off-by: Your Name <your.email@example.com>
Signed-off-by line (use git commit -s)Co-Authored-By: Name <email@example.com>Co-Authored-By: [AI_NAME] ([AI_MODEL]) when AI assists with code generationAIPCC-456: Fix memory leak in authentication service
Resolve memory leak caused by unclosed database connections in the
auth service. This improves server stability under high load.
Fixes AIPCC-456
Co-Authored-By: [AI_NAME] ([AI_MODEL])
Signed-off-by: Jane Developer <jane@example.com>
AIPCC-789: Add user profile management API
Implement REST endpoints for user profile CRUD operations.
Includes validation, error handling, and comprehensive test coverage.
Co-Authored-By: [AI_NAME] ([AI_MODEL])
Signed-off-by: John Developer <john@example.com>
/git:summary – Display repository status and recent commits (read-only)