AI SummaryA Git workflow automation booster that streamlines commit, amend, and pull request creation for Claude Code users. Developers benefit from faster, standardized Git operations without manual command entry.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "Validation" skill in my project. Please run this command in my terminal: # Install skill into the correct directory (6 files) mkdir -p .claude/skills/commands && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/SKILL.md "https://raw.githubusercontent.com/vitalii-zinchenko/dictara/main/.claude/commands/git.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/prime-icons.md "https://raw.githubusercontent.com/vitalii-zinchenko/dictara/main/.claude/commands/prime-icons.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/regression-test-plan.md "https://raw.githubusercontent.com/vitalii-zinchenko/dictara/main/.claude/commands/regression-test-plan.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/release.md "https://raw.githubusercontent.com/vitalii-zinchenko/dictara/main/.claude/commands/release.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/review-current.md "https://raw.githubusercontent.com/vitalii-zinchenko/dictara/main/.claude/commands/review-current.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/security-report.md "https://raw.githubusercontent.com/vitalii-zinchenko/dictara/main/.claude/commands/security-report.md" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Dictara
Validation
If the mode is anything other than valid values, stop and let user know that it is invalid command.
Mode == commit
• Commit changes to the current branch: git commit -m "message" • Push to the remote branch: git push
Mode == amend
• Amend the last commit: git commit --amend • alter the message as well according to the latest changes • Push to the remote branch with force: git push --force-with-lease
Mode == pr
• Create a new branch: git checkout -b branch-name • Commit changes to the new branch: git commit -m "message" • Push to the remote branch: git push -u origin branch-name • Create a pull request: gh pr create
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster