npx claudepluginhub joshuarweaver/cascade-code-languages-misc-1 --plugin finstreet-fe-claude-pluginsThis skill uses the workspace's default tool permissions.
Review, stage, commit, and push all current changes.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
Review, stage, commit, and push all current changes.
Execute these steps in order:
Before committing, thoroughly review all files in the changeset:
# View all changed files (staged and unstaged)
git status
# View the actual changes
git diff
git diff --staged
Important checks before committing:
console.log statements - List all found instances and ask the user if they should be removedIf any issues are found, stop and ask the user before proceeding.
git add .
Analyze the changes to write a comprehensive yet concise commit message:
Format:
<ticket>: <Short summary of changes>
- Bullet point for each significant change
- Group related changes together
- Focus on WHAT changed and WHY
Guidelines:
feature/eb-1250-... → EB-1250)Example:
EB-1250: Add user authentication flow
- Implement login form with email/password validation
- Add JWT token handling in auth service
- Create protected route wrapper component
- Update navigation to show user state
git commit -m "<commit message>"
# Push and set upstream if first push
git push -u origin $(git branch --show-current)
After pushing, confirm the push was successful and show the current branch name.