en un clic
feature-workflow
// Work on a new feature or fix by creating a branch, implementing changes, and submitting a PR with GH CLI. Use when picking up a new todo item.
// Work on a new feature or fix by creating a branch, implementing changes, and submitting a PR with GH CLI. Use when picking up a new todo item.
Maintain and expand DOCS.MD to cover the full Scribe codebase. Use when asked to update documentation, add missing modules/flows, improve coverage maps, or align docs with code changes in this repo.
Prepare and publish a GitHub release with semantic versioning, updating PROJECT_VER and CHANGELOG, tagging, and using GH CLI to publish. Use after major changes or when asked to cut a release.
Create, update, and access task lists as GitHub issues for this repo using GH CLI; use when asked to research repo context and turn a checklist into issues.
| name | feature-workflow |
| description | Work on a new feature or fix by creating a branch, implementing changes, and submitting a PR with GH CLI. Use when picking up a new todo item. |
Create a branch per task, implement the change, and open a pull request using gh. Keep the workflow lightweight and consistent.
git fetch origingit checkout maingit pullgit checkout -b fix/<short-slug>git checkout -b feat/<short-slug>feat(scope): ...fix(scope): ...git push -u origin <branch>gh pr create --title "..." --body "..."## Summary
<what changed and why>
## Testing
- <commands or "not run (reason)">
## Checklist
- [ ] Meets acceptance criteria
- [ ] Docs/strings updated if needed