Back to authors
mgiovani

mgiovani

48 Skills published on GitHub.

create-rule

Create a new memory/instruction rule for whatever AI coding tool a project

UncategorizedView skill →

docs-adr

Create a numbered Architecture Decision Record (ADR) documenting a technical

UncategorizedView skill →

docs-check

Read-only audit of documentation against the current codebase, flags

UncategorizedView skill →

docs-diagram

Generate a Mermaid diagram (ER, architecture, deployment, or security)

UncategorizedView skill →

docs-init

Bootstraps a documentation structure (architecture, onboarding, data-model,

UncategorizedView skill →

docs-rfc

Create a numbered RFC (Request For Comments) document proposing a

UncategorizedView skill →

docs-update

Refresh existing docs (architecture, onboarding, data-model, deployment,

UncategorizedView skill →

jira-cli

Run raw ankitpokhrel/jira-cli commands directly against Jira Cloud or on-prem, issue/epic/sprint CRUD, JQL-style filtering, and scripting/CI automation (bulk assign, auto-label, sprint add). Invoke explicitly via /jira-cli, or when the user wants literal `jira` CLI syntax, a filter the curated skills don't expose, or a bash/CI script that drives jira-cli. Manual-invocation skill, does not auto-fire on general mentions of "jira" or "ticket". Not for a ready-made standup summary correlated with git commits (use jira-daily). Not for a prioritized "what should I work on" plan (use jira-todo).

UncategorizedView skill →

ci-local

Run the checks a GitHub Actions workflow would run, locally, when Actions

UncategorizedView skill →

agent-browser

Headless browser automation CLI optimized for AI agents: drives a real browser via accessibility-tree snapshots and @e1-style refs for ~93% less context than raw DOM tools. Use whenever a task needs to interact with a live web page: click, fill forms, log in, extract text or data, take screenshots, test a running web app, or scrape a site. Triggers on 'automate the browser', 'fill this form', 'click the button', 'take a screenshot of the page', 'log into', 'scrape this site', 'test my web app', 'headless browser'. Not for Playwright test-suite authoring or CDP/service-worker work needing the full JS API: use Playwright directly. Not for driving the user's own already-open, logged-in Chrome tab: use claude-in-chrome for that.

UncategorizedView skill →

ci-generate

Generate a production-ready CI/CD pipeline config (GitHub Actions,

UncategorizedView skill →

gitflow

Manage a gitflow branching workflow, starting and finishing feature,

UncategorizedView skill →

i18n-check

i18n completeness checker, detects the project's i18n framework (next-intl,

UncategorizedView skill →

implement-feature

Implements a new feature end-to-end as a senior staff engineer would,

UncategorizedView skill →

improve-skill

>-

UncategorizedView skill →

inject-docs

Inject compressed framework-specific best practices and docs into

UncategorizedView skill →

jira-daily

Generate a standup report from recent Jira activity and git history,

UncategorizedView skill →

jira-todo

Generates a prioritized daily work plan from a user's assigned Jira

UncategorizedView skill →

codex-imagegen

Generates images and polished raster art (logos, mascots, hero images, icons, characters, sprite sheets, illustrations, product mockups) by driving Codex CLI's $imagegen skill. This is the default image generator, use it for any request to generate or create an image or visual asset, including "generate an image", "create a hero image", "make a mascot", "design a logo", "draw an icon", "generate a sprite sheet", or "make an illustration". Requires the `codex` CLI installed and authenticated (ChatGPT or API-key auth). Not for architecture, flow, or sequence diagrams (use docs-diagram).

UncategorizedView skill →

create-skill

Create a new agent skill (or Claude Code slash command) from a plain-language description, using live spec fetching, pattern research, and an approval-gated blueprint before any files are written. Use whenever the user wants to build, scaffold, or author a new skill, subagent capability, or slash command, including phrasings like 'make a command for X', 'create a slash command', 'turn this into a reusable skill', or 'package this workflow as a skill'. Not for editing CLAUDE.md/AGENTS.md memory rules (use create-rule) or discovering/installing existing third-party skills (use find-skills).

UncategorizedView skill →

db-migrate

Creates, checks the status of, and validates database migrations by auto-detecting the project's migration framework (Alembic, Prisma, Knex, Django, Rails/ActiveRecord, Flyway, Atlas, TypeORM, Sequelize, SQLx, golang-migrate, Liquibase) from marker files, then driving that framework's own CLI. Use when the user wants to create a new migration, check pending vs. applied migration status, or validate a migration for a missing rollback script, a missing foreign-key index, or a destructive operation like DROP TABLE / TRUNCATE / DELETE FROM. Trigger phrases include "create a migration", "check migration status", "any pending migrations", "validate this migration", "does this migration have a rollback". Not for designing the schema change itself or writing ORM model code (use implement-feature), this skill only manages migration files and framework tooling once the schema change is already decided.

UncategorizedView skill →

docker-init

Generates production-ready docker-compose.yml and Dockerfile(s) for a project by scanning its manifest files (package.json, pyproject.toml, Gemfile, go.mod, Cargo.toml) and source code for service dependencies (Postgres, MySQL, Redis, MongoDB, RabbitMQ, Kafka, Elasticsearch, MinIO, Mailhog, etc.), then emitting compose services with health checks, security hardening, resource limits, and non-root Dockerfiles. Use when the user asks to dockerize or containerize a project, add docker-compose, generate a Dockerfile, or set up local dev services in containers. Not for CI/CD pipeline configs (use ci-generate), database schema migrations (use db-migrate), or scanning/syncing environment variables and secrets (use env-setup).

UncategorizedView skill →

env-setup

Scans a codebase for environment variable usage to generate or sync .env.example, validate .env completeness against what the code actually reads, and detect leaked secrets in .env or git history. Use for "/env-setup", "update .env.example", "sync .env.example with the codebase", "check if .env has everything it needs", "is .env in .gitignore", or "scan for leaked secrets in .env". Not a full security audit (use review-security for OWASP-level scanning) and not a generic secret-rotation or CI-secrets-injection tool.

UncategorizedView skill →

find-skills

Search, install, update, and remove third-party Agent Skills from skills.sh or any GitHub/GitLab repo via the `npx skills` CLI. Use when the user wants to "find a skill", "install a skill from github", "search skills.sh", or add third-party capabilities to Claude Code/Cursor/other agents. Not for authoring new skills (see create-skill).

UncategorizedView skill →

fix-bug

Fixes a bug through test-driven debugging, reproduces it with a failing

UncategorizedView skill →

gh-daily

Generate a GitHub-based standup report from assigned issues, open/merged PRs, review requests, and git commit history. Use when the user asks for a standup, daily update, or status report and works with GitHub Issues/PRs. Trigger phrases include "standup report", "daily update", "what did I do yesterday", "GitHub status report". Not for Jira-based standups (use jira-daily), gh-daily is GitHub-only and never queries Jira.

UncategorizedView skill →

git-commit

Generate a conventional commit message (conventionalcommits.org) from the

UncategorizedView skill →

git-create-pr

Create a GitHub Pull Request from the current branch, following conventional commit format and pre-filling the repo's PR template. Activates on "create a PR", "open a pull request", "push this for review", or similar. Use after commits are made and pushed is not yet done; for the commits themselves use git-commit, for release/hotfix branch PRs use gitflow, and for the full review-then-commit-then-PR pipeline in one go use ship.

UncategorizedView skill →

git-release

Create semantic version releases with automated changelog generation

UncategorizedView skill →

git-sync

Syncs the current feature branch with its base or upstream branch via merge (default) or rebase, with conflict detection and stash handling. Use for ad-hoc requests like "sync my branch with main", "rebase onto main", "rebase on latest dev", "pull upstream into my fork", or "update my branch". Not for release/hotfix branch promotion or cutting versioned releases, use gitflow or git-release for those.

UncategorizedView skill →

nanobanana

Generates and edits images by calling Google's Nano Banana / Gemini image generation API (requires a GEMINI_API_KEY), a real, billed API call. This skill is explicit-invocation only: use it only when the user names it or the Gemini path directly (\"nanobanana\", \"nano banana\", \"gemini image generation\", \"GEMINI_API_KEY\", \"use nanobanana to …\") or wants to integrate the Nano Banana / Gemini image API into their own codebase. For any implicit or general image-generation request (\"generate an image\", \"create a logo/hero/mascot\"), the default generator is codex-imagegen, not this skill. Not a design/mockup critique tool (use review-design) and not a browser-driven screenshot flow (use agent-browser).

UncategorizedView skill →

orchestrate

Turn any task into a model-tiered multi-agent plan, decompose it into

UncategorizedView skill →

oss-launch

Takes a private side project from "done" to a public GitHub launch, pre-flight checks (confirm the repo is still private, scan for leaked secrets, verify a license exists), applies review-code findings, generates brand art (logo/hero via codex-imagegen), rewrites the README and repo description for discoverability, scrubs internal or AI-tooling mentions from code and docs (only after explicit confirmation of what to remove), optionally rewrites git history while the repo is still private, then flips the repo public with topics and description set. Use for "open source this", "get this repo ready to go public", "launch prep", "make this repo public", "prep this for launch", or "clean this up before I open source it". Not for PR/merge mechanics on an already-public repo (use ship) or cutting version releases (use git-release). Not for the actual image-generation call itself (use codex-imagegen or nanobanana directly) or a standalone secrets/license audit with no launch intent (use env-setup).

UncategorizedView skill →

product-design-spec

>-

UncategorizedView skill →

product-design-tokens

>-

UncategorizedView skill →

product-prd

>-

UncategorizedView skill →

project-planner

Break a large or ambiguous project into a dependency-ordered task

UncategorizedView skill →

refactor

Restructures existing code without changing its behavior: maps callers and test coverage, adds characterization tests where coverage is thin, then applies the change in small steps verified against the full test suite after each one. Use when the user wants to refactor, extract a method or class, simplify logic, reduce duplication, improve naming, restructure modules, or pay down technical debt in code that already works. Not for adding new functionality (use implement-feature) or fixing broken behavior (use fix-bug).

UncategorizedView skill →

review-code

Runs a comprehensive multi-agent code review of a PR, commit, or the

UncategorizedView skill →

review-deps

Audit project dependencies for vulnerabilities, license compliance risks,

UncategorizedView skill →

review-design

Performs a comprehensive UX/UI/design quality audit of a live URL or a

UncategorizedView skill →

review-perf

Deep-dive performance audit of database queries, algorithmic complexity,

UncategorizedView skill →

review-security

Perform an OWASP Top 10-focused static security review of a PR, commit, or

UncategorizedView skill →

ship

>-

UncategorizedView skill →

team-implement

Spec-driven team orchestration for large, multi-component features or new epics: writes a full spec/design/review artifact trail under .specs/, gates code changes behind an explicit user approval, then scales a team from 3 (lite) to roughly 9 (full) agents based on complexity. Use for sizable features spanning frontend+backend+DB, unfamiliar domains, or anything you want a reviewable spec for before code is touched. Not for small/single-component changes (use implement-feature, no spec overhead) and not for reviewing already-written code (use team-review).

UncategorizedView skill →

team-review

Multi-agent review team: architecture, security, performance, testing, style, docs/UX, plus an adversary that cross-examines the other 6, for security-sensitive, architectural, or large PRs (15+ files) where a single-agent pass risks missing cross-cutting issues. Use for auth/payments/PII changes, schema/pattern changes, compliance sign-off, or when asked to 'get the review team on this' / 'multi-agent review' / 'thorough review before merge'. For a standard PR or a quick pre-merge check, use /review-code instead, it's faster and cheaper.

UncategorizedView skill →

test-suite

Generates a test suite by analyzing coverage gaps, prioritizing critical and untested code paths, then writing tests in parallel that match the project's existing patterns. Use when the user wants to write tests, add test coverage, generate test cases, improve testing, or analyze coverage gaps. Supports pytest, vitest, jest, and all major test frameworks. Not for debugging a specific failing test (use fix-bug).

UncategorizedView skill →

vrt-check

Runs the project's visual regression testing (VRT) workflow, detects

UncategorizedView skill →