Our review
Assigns a project issue to the current Git user by updating the issue file and logging a comment.
Strengths
- Automates issue assignment
- Uses Git user email for assignment
- Logs the assignment action in the issue file
Limitations
- Requires specific file format (.issues/{id}.toml)
- Only assigns to the user configured in Git
- No conflict resolution mechanism
When you need to quickly claim an issue in a local project management workflow.
When issues are managed externally or multiple users need to collaborate on assignments.
Security analysis
SafeThe skill only uses Bash for git config and git add, and Read/Edit/Glob to modify local issue files. There are no destructive commands, network calls, or data exfiltration.
No concerns found
Examples
Assign issue 0001 to myselfClaim issue 42name: issues-assign description: Assign an issue to the current git user. disable-model-invocation: true argument-hint: "[issue-id]" allowed-tools: Bash(git *), Read, Edit, Glob
Arguments
The argument is the issue ID, e.g. 0001 or 1. If the ID is not zero-padded, pad it to 4 digits (e.g. 1 becomes 0001).
Steps
- Parse the argument as an issue ID. Zero-pad it to 4 digits.
- Use the Glob tool to verify
.issues/{id}.tomlexists. - If the file does not exist, inform the user and stop.
- Run
git config user.emailusing the Bash tool to get the current user's email. - Read the issue file using the Read tool.
- Update the
assigned_tofield in the TOML content to the git user's email. Use the Edit tool to replace the existingassigned_toline. - Append a
[[comments]]entry to the end of the issue file using the Edit tool to log the assignment. Use the current date inYYYY-MM-DDformat. Format:
[[comments]]
author = "{email}"
date = "{today}"
message = "Assigned to {email}"
- Run
git add .issues/{id}.tomlusing the Bash tool. - Display the updated issue to the user, confirming the assignment.
Allowed tools
Bash(git *)- for git config and git addRead- for reading the issue fileWrite- for writing the updated issue fileGlob- for verifying the issue file exists
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.