github.com/alirezarezvani/claude-skills
| Skill | Added | Review |
|---|---|---|
api-test-suite-builder .gemini/skills/api-test-suite-builder/SKILL.md Use when the user asks to generate API tests, create integration test suites, test REST endpoints, or build contract tests. | 60 60 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 19392f7 | |
api-design-reviewer .gemini/skills/api-design-reviewer/SKILL.md Comprehensive REST API design review with automated linting, breaking-change detection, and design scorecards. Catches inconsistent conventions, missing versioning, and design smells before APIs ship. Use when reviewing a PR that adds or changes API endpoints, auditing an existing API for v2 migration, or establishing API standards for a team. | 57 57 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 19392f7 | |
andreessen .gemini/skills/andreessen/SKILL.md Marc Andreessen-mode decision and productivity skill. A blunt, market-first operator that pressure-tests ideas, ventures, features, and career bets through Andreessen's actual frameworks — market dominates team and product; the only milestone that matters is product/market fit; bias to build over deliberate. Use when the user says 'andreessen', 'pmarca mode', 'should I build this', 'is there a market', 'are we at product/market fit', 'pmf check', 'pressure-test this idea', 'be brutal about this venture', 'market-first take', or wants a no-disclaimers, no-hedging, confidence-leveled verdict on whether something is worth pursuing. Also provides the 3x5-card + Anti-Todo personal productivity routine. Runs on a fixed anti-sycophancy operating prompt: leads with the strongest counterargument, never validates premises, uses explicit confidence levels, never apologizes for disagreeing. Not for polite brainstorming — this skill exists to tell you the market is dead when it is. | 65 65 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 19392f7 | |
analytics-tracking .gemini/skills/analytics-tracking/SKILL.md Set up, audit, and debug analytics tracking implementation — GA4, Google Tag Manager, event taxonomy, conversion tracking, and data quality. Use when building a tracking plan from scratch, auditing existing analytics for gaps or errors, debugging missing events, or setting up GTM. Trigger keywords: GA4 setup, Google Tag Manager, GTM, event tracking, analytics implementation, conversion tracking, tracking plan, event taxonomy, custom dimensions, UTM tracking, analytics audit, missing events, tracking broken. NOT for analyzing marketing campaign data — use campaign-analytics for that. NOT for BI dashboards — use product-analytics for in-product event analysis. | 70 70 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 19392f7 | |
aims-audit .gemini/skills/aims-audit/SKILL.md /cs:aims-audit <scope> — ISO/IEC 42001 AIMS internal-audit 6-question forcing interrogation. Use before certification stage 1, before annual internal audit cycles, or when onboarding a new AI system into an existing AIMS. | 68 68 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 19392f7 | |
ai-security .gemini/skills/ai-security/SKILL.md Use when assessing AI/ML systems for prompt injection, jailbreak vulnerabilities, model inversion risk, data poisoning exposure, or agent tool abuse. Covers MITRE ATLAS technique mapping, injection signature detection, and adversarial robustness scoring. | 67 67 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 19392f7 | |
ai-act-readiness .gemini/skills/ai-act-readiness/SKILL.md /cs:ai-act-readiness <system> — EU AI Act 6-question forcing interrogation. Use during AI-system intake, before EU deployment, or during annual compliance refresh as Article 113 obligations phase in (2025-02-02 / 2025-08-02 / 2026-08-02 / 2027-08-02). | 65 65 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 19392f7 | |
agile-product-owner .gemini/skills/agile-product-owner/SKILL.md Agile product ownership for backlog management and sprint execution. Covers user story writing, acceptance criteria, sprint planning, and velocity tracking. Use when writing user stories, creating acceptance criteria, planning sprints, estimating story points, breaking down epics, or prioritizing the backlog. | 61 61 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 19392f7 | |
agenthub .gemini/skills/agenthub/SKILL.md Multi-agent collaboration plugin that spawns N parallel subagents competing on the same task via git worktree isolation. Agents work independently, results are evaluated by metric or LLM judge, and the best branch is merged. Use when: user wants multiple approaches tried in parallel — code optimization, content variation, research exploration, or any task that benefits from parallel competition. Requires: a git repo. | 65 65 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 19392f7 | |
agent-workflow-designer .gemini/skills/agent-workflow-designer/SKILL.md Design production-grade multi-agent workflows with clear pattern choice (sequential, parallel, hierarchical), handoff contracts, failure handling, and cost/context controls. Use when architecting a multi-step agent pipeline, choosing between single-agent vs multi-agent approaches, or refactoring an LLM workflow that suffers from context bloat or unreliable handoffs. | 60 60 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 19392f7 | |
agent-protocol .gemini/skills/agent-protocol/SKILL.md Inter-agent communication protocol for C-suite agent teams. Defines invocation syntax, loop prevention, isolation rules, and response formats. Use when C-suite agents need to query each other, coordinate cross-functional analysis, or run board meetings with multiple agent roles. | 65 65 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 19392f7 | |
agent-memory .gemini/skills/agent-memory/SKILL.md Use when a project's CLAUDE.md has grown past what anyone reads and you want the agent to learn durable facts from its own sessions instead — or when asking why the agent keeps re-learning the same correction, why a remembered rule is wrong, or where a memory line came from. Implements a four-tier store (L0 transcripts / L1 candidates / L2 project context / L3 stable persona) where promotion is earned by recurrence across sessions and days, never by one confident statement, and nothing reaches a committed file without a human adopting it. | 64 64 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 19392f7 | |
agent-launcher-orchestrator .gemini/skills/agent-launcher-orchestrator/SKILL.md Use when a user wants to build, launch, grade, or schedule a Claude Managed Agent (CMA) in their own Anthropic account — "build me an agent", "launch this as a managed agent", "run this on a schedule", "grade my agent against a rubric", "set up a nightly worker". Reads the per-session goal (./my-agent/goal.json), routes deterministically to one of five phase sub-skills (interview → stage-launch → grade-iterate → run-without-you → wrap-up) via goal_router.py, and compiles the goal+phase into an execution shape (single-pass workflow / bounded grade→iterate loop / recurring cron deployment loop) via loop_compiler.py. Forks context so heavy intake (build sheets, payloads, eval cases) stays out of the parent thread. All launches are emitted as BYOK curl the user runs with their own key; no tool makes API calls. Inspired by anthropics/launch-your-agent (Apache-2.0). Distinct from engineering/agent-harness (generic domain loop) and engineering/write-a-skill (authors Claude Code skills, not CMAs). | 76 76 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 19392f7 | |
agent-harness .gemini/skills/agent-harness/SKILL.md Turn any domain folder of skills into a bounded agentic loop: compile a goal into a verifiable task plan, execute tasks with the domain's own tools, verify every task with machine-run checks, retry with caps, escalate to a human when budgets exhaust, and refuse to close until everything is verified or explicitly waived. Use when you want an agent or subagent to pick up a goal and drive it to a verified close across one of this repo's 18 domains ('run this goal through the engineering harness', 'set up an agentic loop for marketing work', 'make the finance domain self-verifying'). NOT for authoring Claude Code Workflow-tool .js scripts (workflow-builder), N-agent tournaments on one task (agenthub), single-file metric optimization (autoresearch-agent), or discovering published loop recipes (loop-library). | 71 71 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 19392f7 | |
agent-designer .gemini/skills/agent-designer/SKILL.md Use when the user asks to design a multi-agent system, pick an orchestration pattern (supervisor/swarm/pipeline), generate tool schemas for agents, or evaluate agent execution logs for cost, latency, and failure bottlenecks. Examples: 'design an agent architecture for research automation', 'generate Anthropic tool schemas from these tool descriptions', 'analyze these agent run logs for bottlenecks'. NOT for Claude Code workflow files (use workflow-builder) or single-agent prompt design (use agent-workflow-designer). | 72 72 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 19392f7 | |
agent-decision-receipts .gemini/skills/agent-decision-receipts/SKILL.md Mint a tamper-evident, post-quantum-signed receipt for a consequential agent action (deploy, delete, pay, grant-access, model decision) so it can be verified later from the certificate alone. Use when an autonomous agent takes a side-effecting action that may need to be proven later, or when satisfying EU AI Act Article 12 record-keeping. Three decisions: whether an action needs a receipt, minting it, verifying it. Signing is delegated to the open-source OpenAgentOntology package. Not after-the-fact log analysis; not a hosted notary; not a legal opinion. | 67 67 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 19392f7 | |
aeo .gemini/skills/aeo/SKILL.md Answer Engine Optimization (AEO) skill — optimize content to be cited by AI language models (ChatGPT, Perplexity, Claude, Gemini, Mistral) as authoritative sources. Distinct from SEO — AEO optimizes for citation in LLM-generated responses, not search rankings. Use when planning content for AI-first search audiences, auditing existing content for E-E-A-T signals, tracking which pages get cited by which LLMs, or building a citation-friendly content strategy. Triggers — 'AEO audit', 'optimize for ChatGPT', 'get cited by Perplexity', 'LLM citation strategy', 'answer engine optimization', 'content for AI search', 'E-E-A-T audit'. Output is a markdown audit report (default) or JSON for pipeline integration. Stdlib-only Python tools. | 66 66 Impact — No eval scenarios have been run Securityby Low Low-risk findings worth noting Version: 19392f7 | |
adversarial-reviewer .gemini/skills/adversarial-reviewer/SKILL.md Adversarial code review that breaks the self-review monoculture. Use when you want a genuinely critical review of recent changes, before merging a PR, or when you suspect Claude is being too agreeable about code quality. Forces perspective shifts through hostile reviewer personas that catch blind spots the author's mental model shares with the reviewer. | 66 66 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 19392f7 | |
ad-creative .gemini/skills/ad-creative/SKILL.md When the user needs to generate, iterate, or scale ad creative for paid advertising. Use when they say 'write ad copy,' 'generate headlines,' 'create ad variations,' 'bulk creative,' 'iterate on ads,' 'ad copy validation,' 'RSA headlines,' 'Meta ad copy,' 'LinkedIn ad,' or 'creative testing.' This is pure creative production — distinct from paid-ads (campaign strategy). Use ad-creative when you need the copy, not the campaign plan. | 68 68 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 19392f7 | |
ab-test-setup .gemini/skills/ab-test-setup/SKILL.md When the user wants to plan, design, or implement an A/B test or experiment. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "conversion experiment," "statistical significance," or "test this." For tracking implementation, see analytics-tracking. | 64 64 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 19392f7 | |
a11y-audit .gemini/skills/a11y-audit/SKILL.md Accessibility audit skill for scanning, fixing, and verifying WCAG 2.2 Level A and AA compliance across React, Next.js, Vue, Angular, Svelte, and plain HTML codebases. Use when auditing accessibility, fixing a11y violations, checking color contrast, generating compliance reports, or integrating accessibility checks into CI/CD pipelines. | 70 70 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: 19392f7 |