一键导入
cacomi-ticket-workflow
Standardized workflow for ticket-based development. Trigger: When starting a new ticket, finishing a ticket, or completing a feature/module.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Standardized workflow for ticket-based development. Trigger: When starting a new ticket, finishing a ticket, or completing a feature/module.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Reglas para generar imágenes de la marca Cacomi, asegurando la inclusión del logo oficial.
Convención para el uso de la carpeta archivos_locales_no_git, destinada a archivos de trabajo, datos exportados y recursos temporales que no deben subirse al repositorio.
Protocol for daily updates to the recommended menu and other periodic content. Trigger: When the user requests a "daily menu update" or modifies `astro_src/constants/recommendedMenu.ts`.
Standards and strategies for offline capabilities, network detection, and caching fallback in Cacomi.
Ensures application changes comply with Terms & Conditions, Privacy Policy (GDPR/ARCO), and data protection standards. Trigger: Before merging PRs, when modifying data storage (db/cookies), or adding user-facing disclaimers.
Estándares y patrones de seguridad, integración con Koyeb, Recharts y moderación para el Panel de Administrador.
| name | cacomi-ticket-workflow |
| description | Standardized workflow for ticket-based development. Trigger: When starting a new ticket, finishing a ticket, or completing a feature/module. |
| license | Apache-2.0 |
| metadata | {"author":"ant-gravity","version":"1.0","scope":["git"],"auto_invoke":["Start a new ticket","Finish a ticket","Release feature to main"]} |
| allowed-tools | RunCommand, Git |
When starting a ticket, create a branch from dev (create dev from main if it doesn't exist).
Format: <type>/<TICKET-ID>-<description>
Types:
feat: New featurefix: Bug fixchore: Maintenance/Setuprefactor: Code restructuringExamples:
feat/CSF-101-login-pagefix/CSF-105-header-alignmentchore/CSF-001-setup-eslintCommand:
git checkout dev
git pull origin dev
git checkout -b feat/CSF-123-description
Follow the cacomi-git skill for commit messages.
Format: <type>(<scope>): <description>
dev.When the ticket is complete:
dev.dev.git checkout dev
git pull origin dev
git merge --no-ff feat/CSF-123-description
git push origin dev
When a full feature or module is completed on dev:
legal-compliance skill to verify T&C and Privacy adherence.dev to main.Release: <Feature Name> (Module <X>)gh pr create --base main --head dev --title "Release: User Auth Module" --body "Includes tickets CSF-101, CSF-102... Verified Legal Compliance."