Our review
Automates formatting, committing, and pushing a solved LeetCode problem.
Strengths
- Saves time by automating Git operations after solving
- Ensures consistent code formatting with ruff
- Standardized commit message with the problem number
- Simple to invoke with a single argument
Limitations
- Requires an already configured Git repository
- Uses git add -A, which may include unrelated files
- Only works for LeetCode problems, not flexible for other cases
After completing a LeetCode solution in a dedicated repository.
For generic commits or when you need fine-grained control over staged files.
Security analysis
SafeThe skill runs code formatting, git add, commit, and push for a LeetCode problem. It operates only on the local repository and pushes to the preconfigured remote, with no destructive or data-exfiltrating actions.
No concerns found
Examples
commit 42commit 100name: commit description: Commit and push a solved LeetCode problem argument-hint: <number> user-invocable: true
Commit and push LeetCode problem $ARGUMENTS[0]
Instructions
- Run
ruff format .to format all code. - Stage all changes with
git add -A. - Commit with the message
Problem $ARGUMENTS[0]. - Push with
git push.
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.