write-pr-description
Use when creating pull requests to write clear, structured PR descriptions that help reviewers understand changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when creating pull requests to write clear, structured PR descriptions that help reviewers understand changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Generic migration orchestrator that reads CHANGELOG.md to understand and execute version-specific migrations
Determine feature slug interactively by auto-detecting next number and prompting user for description
Share personal documents to the shared namespace with atomic git commit and push
Use when creating implementation plans to generate properly structured plans with phases, success criteria, and project references.
Use when documenting research findings to create properly structured research documents with frontmatter, sections, and file references.
ALWAYS check this skill before using grep, glob, Task tool, or doing any codebase exploration. Guides you to use specialized agents that are more efficient than basic tools.
| name | write-pr-description |
| description | Use when creating pull requests to write clear, structured PR descriptions that help reviewers understand changes. |
Create structured pull request descriptions that provide context for reviewers.
See templates/pr-description.md for the full template structure.
Closes #123Refs #456## Summary
Adds JWT token refresh mechanism to prevent unexpected session expiration. Tokens are automatically refreshed 5 minutes before expiry.
## What Changed
- Added token refresh endpoint `/api/auth/refresh`
- Implemented automatic refresh timer in auth middleware
- Added token expiry checking logic
- Updated auth context to handle refresh flow
- Added tests for refresh scenarios
## Why
Users were experiencing unexpected logouts when their sessions expired during active use. This caused data loss and poor UX. Automatic token refresh keeps sessions alive as long as users are active.
## Related Issues
Closes #123
When user asks to create PR or you're following git workflow:
gh pr create with body in heredoc:gh pr create --title "feat(auth): add JWT token refresh" --body "$(cat <<'EOF'
## Summary
...
## What Changed
...
EOF
)"