بنقرة واحدة
commit
Automates pre-commit workflow: lint, test, review changes, then commit with conventional commit format.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Automates pre-commit workflow: lint, test, review changes, then commit with conventional commit format.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Implement a backlog story following the layer order (Domain, Database, API, Frontend, E2E) with TDD.
Review the backlog to determine what to work on next by checking epic and story statuses in docs/backlog/.
Verify a story is complete by checking acceptance criteria, running all tests, and updating status.
Add end-to-end Playwright tests for a feature using data-testid selectors, with API and UI test patterns.
Add unit tests for domain logic, database adapters, API endpoints, or frontend components using Vitest patterns.
Create a new user story in the backlog with technical tasks, test scenarios, and epic integration.
استنادا إلى تصنيف SOC المهني
| name | commit |
| description | Automates pre-commit workflow: lint, test, review changes, then commit with conventional commit format. |
pnpm lint
pnpm test
pnpm test:e2e --project=api
git diff --stagedfeat: add note deletionfix: correct login redirectrefactor: extract auth guard logictest: add notes CRUD e2e testsdocs: update getting started guidegit commit -m "type: description"| Type | When |
|---|---|
feat | New feature |
fix | Bug fix |
refactor | Code change that neither fixes a bug nor adds a feature |
test | Adding or updating tests |
docs | Documentation changes |
chore | Build, CI, or tooling changes |
style | Formatting, whitespace (no code change) |
feat(E1-US03): add notes CRUD