Directory

Agent Skills Directory

Reusable skills for AI agents, with install and usage notes. 258 agent skills listed, grouped by primary category.

Skip the install — WingMan's own 271 tools run hosted, no setup: browse the hosted tool directory. One endpoint, one free key: https://wingmanprotocol.com/mcp.

Cloud Infra 23

Cloudflare Agents SDKBuilds stateful AI agents on Workers - durable workflows, WebSocket apps, scheduled tasks, MCP servers, voice/chat agents.Application Insights (Web)Instruments browser/web apps with the Application Insights JS SDK for real-user monitoring - page views, AJAX, exceptions, custom events.Azure AIApplies Azure AI service best practices when building or reviewing an Azure AI application.Azure Cost ManagementAnalyzes and reduces Azure spend for a subscription or resource group.Azure DeployDeploys an application's infrastructure and code to Azure.Azure Kubernetes ServiceProvisions and operates AKS clusters, including automatic-mode readiness checks.Azure RBACDesigns and audits Azure role-based access control assignments.Azure StorageWorks with Azure Storage - blobs, file shares, queues, and tables - from provisioning through access policy.Cloud Solution ArchitectApplies Azure Architecture Center best practices when designing or reviewing cloud architectures and picking design patterns.Cloudflare PlatformCovers the broad Cloudflare platform - Workers, Pages, KV/D1/R2, Workers AI, Vectorize, WAF, Terraform/Pulumi - for any Cloudflare task.Cloudflare Email ServiceSends and receives transactional email through Cloudflare's Email Sending/Routing bindings and REST API.Cloudflare One MigrationsPlans a migration off Zscaler, Palo Alto, a legacy VPN, or another SASE/SWG stack onto Cloudflare One, with policy mapping and gap analysis.Deploy to VercelDeploys an app or a preview build to Vercel and returns the resulting URL on request.Durable ObjectsBuilds and reviews stateful Cloudflare Durable Objects - chat rooms, multiplayer, booking systems - with RPC methods, SQLite storage, and…Packer BuildersWrites Packer image-builder templates - AWS AMI, Azure image, and Windows builders.Sandbox SDKBuilds sandboxed code-execution environments - interpreters, CI/CD runners, untrusted-code execution - on Cloudflare's Sandbox SDK.Terraform Code GenerationGenerates and reviews Terraform code against HashiCorp's style guide, plus Azure Verified Modules lookup, resource import/search, and test…Terraform Module GenerationBuilds and refactors reusable Terraform modules, including migrating a module to Terraform Stacks.Terraform Provider DevelopmentScaffolds a new Terraform provider and extends an existing one - resources, actions, docs, and acceptance-test patterns.Vercel CLI with TokensDrives the Vercel CLI non-interactively using access tokens instead of an interactive login, for deploys and env vars.Vercel Cost & Performance OptimizePulls a deployed Vercel project's real metrics first, then investigates only the routes/files those numbers flag, and produces a ranked…Workers Best PracticesReviews and writes Cloudflare Workers code against production best practices, catching anti-patterns like floating promises and global…Wrangler CLIGets Wrangler command syntax right for deploying and managing Workers, KV, R2, D1, Vectorize, Queues, and the rest of the Cloudflare stack.

Dev Practice 16

API & Interface DesignGuides stable API, module-boundary, and contract design for REST/GraphQL endpoints and frontend-backend interfaces.CI/CD & AutomationSets up or edits build/deploy pipelines, quality gates, and CI test runners.Code Review & QualityReviews code across multiple quality dimensions before it merges, whether written by a human or another agent.Code SimplificationRefactors working-but-overcomplicated code for clarity without changing its behavior.Context EngineeringTunes an agent's rules files and session context when starting work, switching tasks, or when output quality drops.Deprecation & MigrationPlans removing old systems/APIs and migrating users off them, including the maintain-vs-sunset call.Doubt-Driven DevelopmentPuts every non-trivial decision through an adversarial, fresh-context review before it's allowed to stand - for high-stakes or unfamiliar…Finding Duplicate FunctionsScans a codebase for near-duplicate function implementations that should be consolidated.Git Workflow & VersioningStructures commits, branches, conflict resolution, parallel work, and semantic-version release bumps.Incremental ImplementationBreaks a multi-file change into small, individually-landable increments instead of one giant commit.Observability & InstrumentationAdds logging, metrics, tracing, and alerting so production behavior is visible and any issue is diagnosable after shipping.Performance OptimizationChases down and fixes performance regressions and Core Web Vitals issues once profiling has found the bottleneck.Planning & Task BreakdownSplits a spec into ordered, estimable, parallelizable implementation tasks.Shipping & LaunchRuns a pre-launch checklist covering monitoring, staged rollout, and rollback strategy before a production deploy.Source-Driven DevelopmentGrounds implementation choices in a framework's actual official docs instead of stale training-data patterns.Spec-Driven DevelopmentWrites a spec before any code when starting a new project or feature with unclear requirements.

Finance Business 13

Analyze A LoanUse when an agent needs the true monthly payment and total interest on a general amortizing loan — auto, personal, business — and wants…Build A Retirement ProjectionUse when an agent needs to project a retirement balance from current savings and contributions, or solve for the monthly contribution…Capture And Score A LeadUse when an agent runs a website or funnel and needs to save a visitor as a lead in a private pipeline, then get a rule-based score and…Compute Saas MetricsUse when an agent needs standard SaaS unit economics — MRR movement, net revenue retention, quick ratio, CAC/LTV — from raw billing and…Generate An InvoiceUse when an agent needs to total a freelance or small-business invoice from line items — subtotal, discount, tax, amount due. Use before…Generate And Publish A BriefUse when an agent needs to research a topic and turn it into a shareable written brief with a durable public link — for handing to another…Generate Slugs And IdsUse when an agent needs a URL-safe slug from arbitrary text, or a stable, reproducible identifier instead of a random UUID. Use when…Generate Social PostsUse when an agent needs to publish a post to Bluesky, Discord, or Telegram using the caller's own credentials. Use when fanning one piece…Model A Mortgage DecisionUse when an agent needs to model a home purchase's real monthly cost — P&I, taxes, insurance, PMI — and decide whether buying mortgage…Set Your Freelance RateUse when a freelancer needs to back into an hourly rate from a target take-home income, overhead, billable percentage, and tax buffer. Use…Split A Tip Or BillUse when an agent needs to split a bill and tip evenly across a group, with an option to round each person's share up. Use for a quick,…Track Business Days And DeadlinesUse when an agent needs to count workdays between two dates or push a deadline out by N business days, skipping weekends and holidays. Use…Value A Startup SafeUse when an agent needs to figure out what a SAFE (Simple Agreement for Future Equity) actually converts to — price per share and shares…

Debugging Testing 12

Condition-Based WaitingReplaces flaky arbitrary sleep/timeout calls in async tests with polling for the actual condition.Debugging & Error RecoveryApplies systematic root-cause debugging instead of guess-and-check when a test, build, or behavior breaks.DebugView CLICaptures and analyzes Windows usermode/kernel debug output from the command line via Sysinternals DebugView.Defense-in-Depth ValidationAdds validation at every layer data flows through so a whole class of downstream bugs becomes structurally impossible.Mutation TestingRuns mutation testing to measure whether a test suite actually catches introduced bugs, not just achieves coverage.Property-Based TestingWrites property-based tests (Hypothesis-style) that check invariants across generated inputs instead of fixed examples.Root Cause TracingWalks a deep failure backward through the call stack to find where bad data or logic actually originated.Systematic DebuggingA four-phase framework that forces root-cause investigation before any fix is attempted, instead of guessing.Test-Driven Development (TDD)Write the failing test first, then the minimum code to pass it, before implementing any feature or fix.Test-Driven DevelopmentDrives every logic change or bug fix from a test that proves the code works, written before the implementation.Testing Anti-PatternsFlags common testing mistakes - asserting on mock behavior, test-only production methods, mocking without understanding the dependency.Verification Before CompletionRequires actually running verification commands and reading their output before declaring work fixed or done.

Security 12

Building Secure ContractsTrail of Bits' smart-contract security toolkit - vulnerability scanners for Solana, Cairo, Cosmos, Substrate, Algorand, and TON, plus…Cloudflare OneDesigns and troubleshoots Cloudflare One Zero Trust deployments - Access, Gateway, WARP, Tunnel, DLP, CASB, device posture.Constant-Time AnalysisChecks cryptographic code for timing side-channels - non-constant-time branches or memory access.Elasticsearch Security TroubleshootingDiagnoses Elasticsearch authentication, authorization, and access-control issues.Entra Agent IDCreates OAuth2-capable AI-agent identities through Microsoft Entra Agent ID and the Graph beta API.ffuf Claude SkillRuns and interprets ffuf web-fuzzing scans for content/parameter/vhost discovery during security testing.Security & HardeningHardens code that touches untrusted input, auth, sessions, or third-party integrations against common vulnerabilities.Semgrep Rule CreatorWrites new Semgrep rules to detect a specific code pattern or vulnerability class.Static AnalysisRuns and interprets static analysis tooling - CodeQL, Semgrep, and SARIF output parsing - across a codebase.Supply Chain Risk AuditorAudits a project's dependency tree for supply-chain risk - typosquats, maintainer changes, and known-bad packages.Turnstile SpinWires up Cloudflare Turnstile end-to-end: creates the widget via API, deploys the siteverify Worker, and writes the frontend snippet.Variant AnalysisFinds other instances of a known vulnerability pattern across a codebase.

Creative Design 11

Algorithmic ArtGenerates original generative art with p5.js - flow fields, particle systems, seeded randomness - while steering clear of reproducing…Brand GuidelinesApplies Anthropic's own brand colors, type, and visual identity to any artifact that calls for on-brand styling.Canvas DesignProduces static visual art - posters, PNG/PDF designs - using a documented design philosophy, favoring original compositions.Frontend Design DirectionGives aesthetic and typographic direction for new or reworked UI so it reads as deliberate rather than templated.Frontend Design ReviewReviews or builds frontend interfaces against production design-quality and design-system-compliance bars.Frontend SlidesCreates zero-dependency, animation-rich HTML presentations from scratch or by converting PowerPoint files.Podcast GenerationGenerates podcast-style narrated audio from text using Azure OpenAI's GPT Realtime Mini model over WebSocket.Slack GIF CreatorBuilds animated GIFs sized and validated for Slack, with helper tooling for common animation patterns.Theme FactoryApplies one of ten preset visual themes (or a generated one) to slides, docs, or HTML artifacts.Web Asset GeneratorGenerates web assets - favicons, OG images, icons in multiple sizes - from a single source image or prompt.Web Design Guidelines ReviewAudits UI code against 100+ published interface rules covering accessibility, performance, and UX.

Dev Tools 11

Claude API ReferenceA working reference for the Claude API/SDKs - model IDs, pricing, streaming, tool use, caching, and migration - pulled in whenever a task…Copilot SDKBuilds programmatic integrations with GitHub Copilot's SDK across Node/TS, Python, Go, or .NET - sessions, tools, streaming, MCP.GitHub Issue CreatorTurns raw notes, logs, or screenshots into a properly structured GitHub-flavored markdown issue.KQL (Kusto Query Language)Writes correct, efficient Kusto queries, covering join patterns, dynamic types, datetime pitfalls, and result-size discipline.MCP Server BuilderScaffolds well-designed Model Context Protocol servers in Python (FastMCP) or Node/TypeScript so LLMs can call external services through…MCP Server Builder (Azure/Foundry)Scaffolds MCP servers for integrating external APIs, geared at Azure SDK and Microsoft Foundry workflows.MCP CLIDrives MCP servers from the command line for manual testing and debugging.Using Git WorktreesSets up an isolated git worktree, picking a sane directory and checking it's safe, before starting new feature work.Using tmux for Interactive CommandsRuns interactive/long-lived commands inside tmux sessions so an agent can observe and steer them without blocking.Web Artifacts BuilderAssembles multi-component HTML artifacts with React, Tailwind, and shadcn/ui for anything beyond a single-file artifact.Windows VMSets up and drives a Windows VM for testing Windows-specific behavior from a non-Windows host.

Meta Skills 11

Continual Learning for AgentsSets up hooks, memory scoping, and reflection patterns so a coding agent keeps learning across sessions.Gardening Skills WikiChecks a skills library's links, naming, and cross-references so the collection stays coherent as it grows.Loki ModeAutonomous spec-driven build system with a built-in trust layer - RARV-C closure loop, quality gates, and a verified-completion evidence…Pulling Updates from Skills RepositorySyncs a local skills checkout with new upstream skills from the community repo.Sharing SkillsPackages a locally-developed skill and contributes it upstream via a branch and pull request.Skill CreatorCreates, edits, evaluates, and tunes the trigger wording of other Claude skills, including running benchmarks against them.Skill Creator (Azure/Foundry)Creates and updates agent skills specifically for teams working against Azure SDKs and Microsoft Foundry services.Testing Skills With SubagentsApplies red-green-refactor to skill writing itself - baseline a subagent without the skill, then iterate until it holds up under pressure.Using Agent SkillsThe meta-skill that decides which of the other skills in the pack applies to the current task.Getting Started with SkillsThe entry-point skill: explains the skills wiki, mandatory workflows, and how brainstorming and search get triggered.Writing SkillsTDD applied to process documentation: test a draft skill against subagents before shipping it, and keep tightening until it's bulletproof.

Search Ai 11

Algobot CLIDrives Algolia's Algobot CLI for index diagnostics and automated search-quality checks.Algolia CLIManages Algolia indices, records, and settings from the command line via the Algolia CLI.Algolia CrawlerConfigures and runs Algolia's Crawler to index website content into a searchable Algolia index.Algolia InstantSearchBuilds search UIs with Algolia's InstantSearch libraries - widgets, facets, and result rendering across frameworks.Pinecone AssistantBuilds retrieval-augmented chat assistants on Pinecone Assistant - file upload, citations, and chat completion.Pinecone CLIManages Pinecone indexes, namespaces, and records from the command line.Pinecone MCPWires an agent to Pinecone's MCP server for vector search and index management as tool calls.Pinecone + n8nIntegrates Pinecone vector search into n8n automation workflows.Pinecone QuickstartGets a new Pinecone project from zero to a working index - API key setup, index creation, upsert, and query.WeaviateCovers the core Weaviate vector database surface - schema/collections, hybrid search, and client library usage.Weaviate CookbooksApplies Weaviate's cookbook recipes - RAG pipelines, multi-tenancy, and common integration patterns - to a task at hand.

Collaboration 10

Brainstorming Ideas Into DesignsRuns a Socratic back-and-forth to turn a rough feature idea into a fully-formed design before any code gets written.Dispatching Parallel AgentsFans independent, unrelated failures out to multiple agents to investigate and fix concurrently instead of serially.Executing PlansWorks a written implementation plan in reviewed batches rather than all at once.Finishing a Development BranchOnce a feature is done and tested, walks through the merge/PR/cleanup decision instead of leaving the branch dangling.Preserving Productive TensionsNotices when a back-and-forth is actually surfacing a real tradeoff and keeps both options alive instead of forcing a premature pick.Code Review ReceptionHandles incoming review feedback with real technical scrutiny rather than reflexive agreement or blind edits.Remembering ConversationsSearches past Claude Code sessions for the facts, decisions, and context a current conversation needs.Requesting Code ReviewDispatches a fresh code-reviewer subagent to check work against the plan before it's called done.Subagent-Driven DevelopmentRuns each task in an implementation plan through its own fresh subagent, with a review gate between tasks.Writing PlansTurns a finished design into a detailed, bite-sized task list an engineer with zero context could follow.

Database 10

Elasticsearch ES|QLWrites and troubleshoots ES|QL queries against Elasticsearch.Elasticsearch OnboardingGets a new Elasticsearch cluster or index set up correctly for a given use case.PlanetScale MCP Agent Operating ModelDefines how an agent should operate against PlanetScale's MCP server - safety gates, approval flow, and rollback paths.MongoDB Agent SkillsCovers the MongoDB Atlas skill surface in one bundle - connection setup, schema design, query optimization, natural-language querying,…PlanetScale Query Insights & TagsAnalyzes PlanetScale Query Insights and SQL comment/query tag coverage to find slow or unlabeled queries.PlanetScale Readonly InventoryRuns a read-only, evidence-backed inventory of a PlanetScale database or organization.PlanetScale Safe OrchestratorCoordinates a full PlanetScale review across an organization - branch/safety workflow, backups, credentials, and open recommendations.SupabaseCovers the whole Supabase surface - Database, Auth, Edge Functions, Realtime, Storage, Vectors, Cron, Queues - plus client libraries…Supabase Postgres Best PracticesApplies Supabase's own Postgres performance guidance when writing or reviewing queries, schemas, and database config.PlanetScale Vitess Safety ReviewReviews a Vitess-backed PlanetScale database for safe schema-change and query practices.

Problem Solving 9

Collision-Zone ThinkingForces two unrelated concepts together ('what if we treated X like Y?') to surface ideas conventional approaches miss.Idea RefineSharpens a vague idea into an actionable concept through structured divergent-then-convergent thinking.Interview MeInterviews the user one question at a time until it's ~95% confident it understands what they actually want, for underspecified asks.Inversion ExerciseFlips a core assumption to test whether 'the only way to do this' is really the only way.Meta-Pattern RecognitionFlags a pattern once it's shown up in three or more unrelated domains, pointing at a more universal principle underneath.Scale GameStress-tests a design by imagining it at 1000x bigger, smaller, faster, or slower to expose assumptions that only hold at 'normal' scale.Simplification CascadesLooks for the one insight that, if true, lets several components be deleted at once instead of patched individually.Tracing Knowledge LineagesTraces how a current approach got adopted historically, so 'new' ideas can be checked against past attempts before repeating them.When Stuck - Problem-Solving DispatchFigures out which specific flavor of 'stuck' you're in and routes to the matching problem-solving technique.

Agent Infrastructure 8

Coordinate Two Agents Via InboxUse when one agent needs to hand information or a task to another agent asynchronously — durable mail plus a life-stream of events…Drive A Headless Browser ErrandUse when an agent must ACT on the live web — log in, click through a multi-page flow, fill a form, submit something — not just read a…Park Work For Human HandoffUse when an agent hits a human-only wall it structurally cannot pass — OAuth login, a CAPTCHA, an email or SMS verification code, a manual…Persist Agent MemoryUse when an agent needs state to survive a restart or a new session — durable key/value storage, full-text search over past notes, or a…Register A Durable IdentityUse when an agent needs a durable handle that persists across restarts and different host processes — claiming a name, recovering its…Resume From NothingUse when a fresh agent instance wakes up with zero context and needs to restore its whole prior self in one call — identity, memory notes,…Run A Background Research ErrandUse when a task would burn too much of the agent's own context — fetching many URLs, waiting on a delay, or running a multi-round research…Store And Recall ArtifactsUse when a stateless agent produces an output — a report, an image, a generated file — that needs a durable, public URL because the agent…

Documentation 8

Doc Co-authoringWalks through a structured back-and-forth for co-writing docs, specs, and decision records so the result actually fits its readers.Documentation & ADRsRecords architecture decisions and other documentation future engineers (human or agent) will need.Internal CommunicationsDrafts status reports, leadership updates, FAQs, and incident write-ups in the formats a company already uses internally.Microsoft Docs LookupAnswers how-something-works questions for Azure, .NET, M365, Windows, or Power Platform by querying official Microsoft docs.Deep Wiki ArchitectGenerates architecture documentation pages for a deep-wiki site from the codebase.Deep Wiki OnboardingGenerates a new-contributor onboarding page from a codebase's deep-wiki documentation.Deep Wiki Q&AAnswers questions about a codebase by querying its generated deep-wiki documentation.Writing Guidelines ReviewChecks docs and prose against a documented writing-style handbook for voice, tone, and clarity.

Mobile Dev 8

Expo Add App ClipAdds an iOS App Clip target to an Expo app.Expo Building Native UIBuilds native-feeling UI in an Expo app using platform-appropriate components and patterns.EAS Simulator BuildsBuilds and runs an Expo app on iOS Simulator/Android Emulator via EAS Build.Expo CI/CD WorkflowsSets up EAS Workflows for CI/CD - build, test, and submit pipelines for an Expo app.Expo Dev ClientConfigures expo-dev-client for a custom development build with native modules.Expo RouterBuilds file-based navigation with Expo Router - layouts, dynamic routes, and linking.iOS Simulator SkillDrives the iOS Simulator from Claude Code - boot devices, install/launch apps, take screenshots, and read logs.Expo use domEmbeds a DOM/web component inside a native Expo screen with the 'use dom' directive.

Cms Content 7

Contentful APIWorks with Contentful's Content Delivery, Management, and GraphQL APIs - content modeling, querying, and publishing workflows.Contentful Custom App EnhancementExtends an existing Contentful App Framework app with new fields, locations, or SDK capabilities.Contentful Custom App (From Scratch)Scaffolds a brand-new Contentful App Framework app - UI extension location, SDK wiring, and manifest setup.Contentful GuideGeneral orientation for working in a Contentful space - content types, environments, and where the other Contentful skills fit in.Contentful MigrationWrites and runs Contentful content-model migration scripts safely across environments.Contentful + Next.jsWires a Next.js app to Contentful - fetching, previewing, and rendering content with the JS SDK.Contentful PersonalizationSets up Contentful's personalization/experiences features - audience targeting and variant content delivery.

Ai Agent Frameworks 6

Declarative Agent DeveloperBuilds Microsoft 365 declarative agents - manifest, actions, and conversation starters.Deep Agents CoreApplies LangChain's Deep Agents pattern - planning, sub-agents, and long-horizon task execution.LangChain RAGBuilds retrieval-augmented generation pipelines with LangChain - loaders, splitters, vector stores, and retrieval chains.LangGraph CLIRuns and deploys LangGraph applications from the command line - local dev server, builds, and deployment.LangGraph FundamentalsBuilds LangGraph graphs - nodes, edges, state, and control flow - for agentic applications.Teams App DeveloperBuilds and configures Microsoft Teams apps with the Microsoft 365 Agents Toolkit.

Developer 6

Audit A Url Or CidrUse when an agent needs to parse or normalize a URL, or check whether an IP address falls inside a CIDR block. Use when validating a…Clean And Validate DataUse when an agent has messy or untrusted structured data — invoice text, a checksum-bearing identifier, near-duplicate records — and needs…Convert Between Data FormatsUse when an agent needs to convert structured data between CSV, YAML, XML and JSON, or between text encodings and number bases. Use before…Decode A JwtUse when an agent needs to read the header and payload of a JWT — check claims, expiry, or issuer — without a signing key. Use when…Validate Json Against A SchemaUse when an agent needs to check a JSON value against a JSON Schema and get back every violation, not just a pass/fail. Use before…Work With SemverUse when an agent needs to compare two semantic versions, bump a version number, or check whether a version satisfies a dependency range.…

E Commerce 6

Shopify Admin APIWrites Admin GraphQL API queries and mutations for Shopify, with schema validation.Shopify Dev DocsSearches Shopify's developer documentation for the right API, surface, or how-to across the whole platform.Shopify FunctionsBuilds Shopify Functions - cart, checkout, delivery, discount, fulfillment, payment, and routing customizations.Shopify HydrogenBuilds headless storefronts with Shopify's Hydrogen, a React-based framework.Shopify LiquidDevelops Shopify themes with Liquid templating - sections, snippets, and theme structure.Shopify Payments AppsBuilds Shopify Payments Apps - payment provider integrations for Shopify checkout.

Crm Sales 5

HubSpot Audience TargetingBuilds targeted contact segments in HubSpot by filtering on lifecycle stage, engagement, and firmographics.HubSpot Bulk OperationsThe foundational HubSpot CLI skill - JSONL pipes, batch read, pagination, and dry-run/digest/confirm patterns every other HubSpot skill…HubSpot CRM Data QualityFinds incomplete HubSpot records, normalizes field values, and dedupes records.HubSpot CRM LookupFinds HubSpot records by ID/email/domain/partial name and traverses associations for a full picture.HubSpot Customer RetentionIdentifies inactive HubSpot customers, flags at-risk subscriptions, and creates follow-up tasks.

Data Scraping 5

Apify Actor DevelopmentWrites, debugs, and deploys Apify Actors - the platform's serverless scraping/automation programs.Apify ActorizationWraps an existing JS/TS, Python, or arbitrary CLI project as a deployable Apify Actor.Apify Output Schema GeneratorDerives an Actor's dataset/output/key-value-store schema files by analyzing its source code.Apify SDK IntegrationWires Apify scraping/automation into an existing JS/TS or Python app via the apify-client package.Apify Ultimate ScraperPicks and runs the right pre-built Actor to scrape Instagram, TikTok, Google Maps, Reddit, and 15+ other platforms for lead-gen or…

Frontend Dev 5

React Composition PatternsGuides refactors away from boolean-prop-heavy components toward compound components, render props, and other patterns that scale.Frontend UI EngineeringBuilds production-quality, non-AI-generated-looking UI components, layouts, and state management.React/Next.js Best PracticesApplies Vercel Engineering's 40+ React/Next.js performance rules across data fetching, bundling, and rendering when writing or reviewing…React Native & Expo Best PracticesCovers React Native/Expo performance patterns - list rendering, animations, native modules - for building mobile apps.React View TransitionsImplements page and element transition animations with React's View Transition API and its CSS pseudo-elements.

Monitoring Observability 5

Sentry Create AlertSets up Sentry alert rules - error-rate thresholds, new-issue notifications, performance regressions - routed to the right team channel.Sentry Fix IssuesTriages and fixes a Sentry-reported error end to end - pulls the issue's stack trace and context, locates the root cause in the codebase,…Sentry PR Code ReviewReviews a pull request for changes that could introduce new Sentry-trackable errors or regressions before it merges.Sentry SDK SetupInstruments Sentry error tracking and performance monitoring into an app - covers Next.js, React, Python, and Go SDK setup with the…Sentry AI Monitoring SetupWires up Sentry's AI/LLM monitoring - tracing model calls, token spend, and failures - for an agent or LLM-backed application.

Trades 5

Estimate A Construction JobUse when an agent needs to size materials for a trades job — concrete, framing lumber, paint, rebar, asphalt, pavers, insulation — and…Estimate Concrete And RebarUse when an agent needs to size a concrete pour — a slab, column, or tube — and the rebar grid inside it, with bag counts and ready-mix…Frame And Order LumberUse when an agent needs to size a framed wall — studs, plates, headers — and convert that into a board-feet lumber order with cost. Use…Price A Change OrderUse when an agent needs to price a scope change on an active contract — added materials and labor, with overhead and profit — and produce…Quote A Paint JobUse when an agent needs to size a paint job — gallons and coats for a room — and turn that material cost into a client-ready quote with…

Analytics 4

PostHog Instrument Feature FlagsAdds PostHog feature flags to an app across the supported client and server SDKs.PostHog Instrument LLM AnalyticsInstruments an LLM-backed app with PostHog's LLM analytics - traces, costs, and evaluations.PostHog Instrument Product AnalyticsInstruments an app with PostHog product-analytics event tracking.Querying PostHog DataWrites HogQL/SQL queries against PostHog's data warehouse for product analytics questions.

Auth Identity 4

Auth0 ACUL Screen GeneratorGenerates Advanced Customization for Universal Login (ACUL) screens for an Auth0 tenant.Auth0 CLIManages an Auth0 tenant's applications, APIs, and rules from the command line.Auth0 MFAConfigures Auth0 multi-factor authentication policies and enrollment flows.Auth0 SDK SetupWires up Auth0 authentication in an app - covers the Next.js, React, and Express SDKs with the framework-specific setup each needs.

Directory Growth 4

Claim Your Tool ListingUse when an agent or operator needs to prove ownership of an approved directory listing so they can edit it and earn its verified badge.…Embed A Live BadgeUse when an agent or operator wants a live, embeddable proof-of-listing on their own site — a status badge SVG, an iframe-able card, or a…Get Your Mcp Server ListedUse when an MCP server operator wants their server discoverable alongside WingMan's own — listed in the directory, findable by other…Submit A Listing To The DirectoryUse when an agent, tool builder, or MCP server operator wants their thing discoverable in WingMan's public directory. Use when deciding…

Documents Office 4

DOCX Document EditingCreates, edits, and reformats Word documents (.docx) - headings, tables of contents, tracked changes, comments, and image handling - the…PDF ToolkitReads, merges, splits, rotates, watermarks, fills forms in, and OCRs PDF files, and can generate new PDFs from scratch.PPTX Slide DecksBuilds and edits PowerPoint decks - slides, speaker notes, layouts, and templates - powering Claude's native presentation output.XLSX SpreadsheetsCreates and edits Excel/CSV/TSV spreadsheets, including formulas, formatting, charts, and cleanup of messy tabular data.

Payments 4

Accept Agent PaymentsUse when an agent has produced something another agent should pay for — a digital good, a dataset, a completed service — and needs to list…Buy And Spend CreditsUse when an agent wants a prepaid balance instead of signing a payment per call — buy Protocol Credits (▲) once with x402 USDC, then spend…Pay Per Call With X402Use when an agent wants to call a priced tool without a pre-issued API key or subscription — sign an x402 v2 USDC-on-Base micropayment per…Price A Tool CallUse when an agent needs to know what a specific WingMan tool call will cost before running it, or wants to discover a tool's exact input…

Testing Qa 4

Browser Testing with DevToolsUses Chrome DevTools via MCP to inspect the DOM, console errors, network requests, and performance while testing anything that runs in a…Playwright SkillDrives Playwright browser automation for end-to-end testing and scraping tasks.Web Performance (DevTools)Measures Core Web Vitals and other performance metrics via Chrome DevTools MCP, flagging render-blocking resources and layout shifts.Webapp TestingDrives and inspects local web apps with Playwright - screenshots, console logs, and functional checks - for debugging frontend behavior.

Composition 3

Build A Finance ModelUse when an agent needs to model a loan, a mortgage, a startup's runway, or a SaaS unit-economics question — combining WingMan's finance…Chain Tools Into A WorkflowUse when an agent needs several WingMan calculator calls done together in one round trip instead of one request per tool — reduces latency…Run An Agent TemplateUse when a task matches a known multi-step calculation — a construction bid, a mortgage decision, a startup runway model — instead of…

Content 3

Analyze Text ReadabilityUse when an agent needs objective readability metrics for a piece of text — word/sentence counts, reading time, Flesch reading-ease score.…Humanize File Sizes And DurationsUse when an agent needs to turn a raw byte count or a span between two timestamps into a human-readable string — '15.00 MiB', '2 days 5…Rewrite And Improve TextUse when an agent needs to clean up mechanical text problems (whitespace, line width) or get an LLM rewrite of a dating/social profile bio…

Web Research 3

Do Cited Deep ResearchUse when a question needs a grounded, cited answer from the live web — either a quick one-call synthesis, or a longer multi-round research…Extract Structured Data From A PageUse when an agent needs specific fields off a web page — a price, a table, a list of names — rather than the whole page as text. Use…Monitor A Page For ChangesUse when an agent needs to know the moment a web page changes — a price drop, a status page update, new content — without polling it…

Automation 1

Zapier WorkflowsManages Zapier automations end to end from an agent - create, install, list, modify, inspect run history, and doctor a broken Zap.

Data Visualization 1

D3.js Visualization SkillBuilds D3.js data visualizations - scales, axes, transitions, and common chart patterns.