ワンクリックで
release
Pre-deployment verification including tsc, lint, build, security scan, and console.log cleanup
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Pre-deployment verification including tsc, lint, build, security scan, and console.log cleanup
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Interact with Basecamp via the Basecamp CLI. Full API coverage: projects, todos, cards, messages, files, schedule, check-ins, timeline, recordings, templates, webhooks, subscriptions, lineup, chat, gauges, assignments, notifications, and accounts. Use for ANY Basecamp question or action.
Brainstorm requirements and create sprint PRDs with atomic tasks. Creates sprints/vN/PRD.md and TASKS.md with user stories, architecture, and ordered task breakdowns.
Structured review for design system compliance, TypeScript quality, page structure, security, and accessibility
Multi-agent logo design pipeline orchestrating 6 agents through Strategy, Concepts, Figma, Code, Preview, and QA phases
Pick the highest priority task from the sprint backlog and implement it with TDD, security scanning, and browser-based E2E testing
Scaffold a new page following all Colaberry AI platform standards including locked theming and page structure
| name | release |
| description | Pre-deployment verification including tsc, lint, build, security scan, and console.log cleanup |
| user-invocable | true |
Pre-deployment verification checklist. Run this before pushing to dev or merging to main.
Git status — Check for uncommitted changes:
git status
All changes should be committed or intentionally unstaged.
TypeScript check — Must have 0 errors:
npx tsc --noEmit
Lint check — Must have 0 errors:
npm run lint
Production build — Must complete successfully:
npm run build
Security scan — Check for committed secrets:
git ls-files | grep -iE '\.env|credentials|secret'
Console.log cleanup — Check for debug logging in production code:
grep -rn "console.log" src/pages/ src/components/ src/lib/ --include="*.ts" --include="*.tsx"
Remove any non-essential console.log statements.
Dependency audit — Check for known vulnerabilities:
npm audit
Output verdict:
After deployment, verify visually:
See docs/runbooks/deploy.md for full deployment procedure.