Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .claude/commands/pr-desc-claude.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
### For Commit Messages (Conventional Commits style)

1. Analyze this `git diff` and write a commit message following the Conventional Commits specification (e.g., feat:, fix:). Keep the subject line under 50 characters.

### For Pull Request Descriptions

1. Analyze git diff and write a PR description. Use the following format:
- Overview: High-level summary of the goal.
- Changes: Bulleted list of specific technical modifications.
- Testing: How these changes can be verified (e.g., unit tests added, manual verification steps, integration test coverage).

Example:
**Overview:** Adds support for parallel widget rendering to improve dashboard load times.
**Changes:**

- Refactored `WidgetRenderer` to use concurrent workers
- Added caching layer for widget metadata
- Updated tests to validate concurrent execution

**Testing:** Run `npm test` to verify new concurrency tests. Manual verification: load dashboard with 50+ widgets; confirm render time < 2s.