Create a NOTES file capturing discoveries and decisions from the current session.
# /pdd:notes
Create a NOTES file capturing discoveries and decisions from the current session.
## Usage
## Arguments
- `focus` (optional): Specific aspect to focus on (e.g., "debugging session", "design decision")
## Environment Variables
- `PDD_WORKSPACE_DIR`: Base directory for PLAN/NOTES (default: `.claude/pdd`)
- `PDD_LOCALE`: Output language - `en` or `ja` (default: `en`)
## Behavior
1. Get current branch name via `git branch --show-current`
2. Generate timestamp via `date +%Y%m%d_%H%M%S`
3. Create: `{PDD_WORKSPACE_DIR}/{branch}/NOTES_{timestamp}.md`
## Purpose
NOTES captur...