Hi - I answer from the OpenSmartRoute documentation: routing, the API, plans and quotas, self-hosting. Ask away, or open a support ticket if you need a person.
Grounded in the docs - follow a source before acting on it.
branch - Prompt - OpenSmartRoute
Promptv1.0.0
branch
Create and switch to a new branch using a Conventional-Commit-style name derived from a description.
Pick a type prefix from the description ({{arguments}}):
feat/ — new feature
fix/ — bug fix
chore/ — tooling / deps / housekeeping
docs/ — docs only
refactor/ — restructure
test/ — tests only
spike/ — exploration / throwaway
Slug the description: lowercase, kebab-case, ≤ 50 chars.
git switch -c <type>/<slug>.
Confirm: print git status and the new branch name.
Description: {{arguments}}
Use it
Copy one of these into your project. Installing also returns the manifest and these snippets.
# /branch
Create and switch to a new branch.
## Workflow
1. Verify working tree is clean (`git status --short`). If not, ask whether to stash or abort.
2. Pull latest trunk: `git fetch origin && git switch <trunk>` and pull.
3. Pick a type prefix from the description ({{arguments}}):
- `feat/` — new feature
- `fix/` — bug fix
- `chore/` — tooling / deps / housekeeping
- `docs/` — docs only
- `refactor/` — restructure
- `test/` — tests only
- `spike/` — exploration / throwaway
4. Slug the description: lowercase, kebab-case, ≤ 50 chars.
5. `git switch -c <type>/<slug>`.
6. Confirm: print `git status` and the new branch name.
Description: {{arguments}}
Manifest
The prompt text and its fill-in variables. Copy it or fetch it by URL from your own code.