- Add 60 new agents across all 10 categories (75 -> 135) - Add 95 new plugins with command files (25 -> 120) - Update all agents to use model: opus - Update README with complete plugin/agent tables - Update marketplace.json with all 120 plugins
821 B
821 B
Stage, commit, and push changes with an auto-generated conventional commit message.
Steps
- Run
git statusto see all modified, staged, and untracked files. - Run
git diffto review all changes (staged and unstaged). - Analyze the changes to determine the commit type:
- Generate a conventional commit message:
- Stage the appropriate files (avoid staging secrets or build artifacts).
- Create the commit with the generated message.
- Push to the remote branch with
git push origin HEAD.
Format
type(scope): description
Why: <explanation of motivation>
Refs: #<issue number> (if applicable)
Rules
- Never commit .env files, credentials, or API keys.
- Commit message subject must be under 72 characters.
- Use present tense in commit messages ("add feature" not "added feature").