com um clique
commit
// Analyze outstanding git changes and organize them into logical, well-structured commits. Use when the user wants to commit changes or organize their work into commits.
// Analyze outstanding git changes and organize them into logical, well-structured commits. Use when the user wants to commit changes or organize their work into commits.
Upgrade dependencies and runtimes safely, run CI, and report higher-risk options.
Push the current content to obot-platform/discobot main, watch GitHub Actions with gh run watch, fix CI failures, and repeat until main CI passes.
Delegate a goal to a sub-agent and iterate until it is complete.
Use when building, changing, or reviewing Datastar UIs, signals, data-* attributes, backend actions, SSE responses, or Rocket components.
Run the autonomous release procedure: infer the next version when needed, verify upstream main and CI, create and push the tag, update GitHub release notes, and watch the release workflow to completion.
| name | commit |
| description | Analyze outstanding git changes and organize them into logical, well-structured commits. Use when the user wants to commit changes or organize their work into commits. |
| allowed-tools | Bash(git status, git diff, git add, git commit, git log, git reset), Read, Glob, Grep, AskUserQuestion |
Analyze outstanding changes and organize them into logical, well-structured commits.
Check current state:
git status to see all modified, staged, and untracked filesgit diff to see unstaged changesgit diff --cached to see already staged changesAnalyze changes:
Propose commit groups:
Create commits:
git add <files>git add -p approach if only parts of a file belong to a commit (ask user first)Summary: Show final git log --oneline -n <count> of created commits
Follow conventional commits:
<type>(<scope>): <description>
[optional body]
Co-Authored-By: Claude <noreply@anthropic.com>
Types: feat, fix, refactor, docs, test, chore, style, perf
Single logical change:
feat(auth): add OAuth2 login flow
- Add OAuth2 provider configuration
- Implement token refresh logic
- Add login/logout UI components
Mixed changes get split:
fix(api): handle null response in user endpointrefactor(ui): extract Button componentdocs: update README with setup instructions