بنقرة واحدة
project
Manage project changelog. Use /project log after completing work, /project release when ready to ship.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Manage project changelog. Use /project log after completing work, /project release when ready to ship.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Multi-phase audit pipeline with independent review agents. Use when finishing tickets, validating work against acceptance criteria, checking architecture compliance, or reviewing code against skill standards. Use /audit to run the full pipeline, /audit ac for acceptance criteria only, /audit arch for architecture only, /audit skill for skill compliance only.
Prepare code for commit by checking for bugs, ensuring consistency, removing debug code, and running checks until green. Use when finishing a feature, before committing, or when asked to "make it green" or "prep for commit".
JS/TS monorepo with pnpm workspaces and Turborepo. Use when setting up a monorepo, adding packages, or auditing config.
Next.js App Router data layer: SSR hydration, React Query, auth patterns. Use when creating pages, adding tabs, or auditing data fetching.
React component development with shadcn/ui, React Hook Form, and Zod. Use when creating, extracting, or auditing React UI components.
Extract learnings from conversations and update project knowledge. Use when you've learned something valuable, solved a tricky problem, or notice patterns emerging. Sub-commands: capture (save observations before compaction), finalize (process into skill updates), migrate (move legacy principles into skills).
| name | project |
| description | Manage project changelog. Use /project log after completing work, /project release when ready to ship. |
Simple changelog management following Keep a Changelog conventions.
Add an entry to the changelog after completing work.
Workflow:
Understand what changed
Categorize the change
| Category | When to use |
|---|---|
| Added | New features |
| Changed | Changes to existing functionality |
| Fixed | Bug fixes |
| Removed | Removed features |
| Security | Security-related changes |
Add to CHANGELOG.md
Changelog format:
# Changelog
All notable changes to this project.
## Unreleased
### Added
- User authentication flow
### Fixed
- Timezone bug in date picker
---
## v1.0.0 — 2026-01-15
### Added
- Initial release
Cut a new release by versioning unreleased changes.
Workflow:
Check for unreleased changes
Determine version
Update changelog
Optionally create git tag
git tag -a v{version} -m "Release v{version}"| File | Purpose |
|---|---|
CHANGELOG.md | Project changelog (root directory) |
Fixed login bug (#123)