
vm0-ai/vm0-skills
202 skills20.5k installs15.4k starsGitHub
Install
npx skills add https://github.com/vm0-ai/vm0-skillsSkills in this repo
1Hackernewshackernews is an agent skill that documents curl and jq recipes against the public Hacker News Firebase API for stories, comments, jobs, and user profiles. It covers list endpoints for top, best, new, ask, show, and job stories, then item detail fetches by ID with fields such as title, score, url, by, time, descendants, and kids comment arrays. User profile lookups return karma, about, created timestamp, and submitted item IDs. Practical examples batch-fetch top stories with scores, filter high-scoring posts above 100 points, and search titles for AI or LLM keywords across the top 50 stories. Guidelines note respectful bulk fetching with delays, jq filtering, caching because stories change slowly, and handling null url fields on Ask HN posts. Real-time helpers include maxitem and updates endpoints for polling changed items. Developers reach for hackernews when an agent needs tech news summaries, comment thread inspection, or HN front-page monitoring without building a custom API client library.3.1kinstalls2Cloudflare Tunnelcloudflare-tunnel is a vm0-skills integration guide for secure connectivity through Cloudflare Tunnel (also called Argo tunnel). It shows curl requests with CF-Access-Client-Id and CF-Access-Client-Secret headers against protected service URLs, including cases where services require both Cloudflare Access and their own authentication tokens such as Bearer API keys. Developers reach for cloudflare-tunnel when exposing local development servers, staging APIs, or internal tools through Cloudflare without punching firewall holes or managing VPNs. The skill fits agent workflows that test or document tunneled endpoints during deployment and remote debugging.852installs3Google Sheetsgoogle-sheets is a vm0-skills agent skill for Google Sheets API v4 operations at base URL https://sheets.googleapis.com/v4/spreadsheets. The skill documents how to extract spreadsheet IDs from docs.google.com URLs, fetch spreadsheet metadata, and troubleshoot connector failures with zero doctor check-connector commands against GOOGLE_SHEETS_TOKEN. Developers reach for google-sheets when users share spreadsheet links, request sheet updates, or mention Excel/Sheets data during automation or backend tasks. Trigger it whenever an agent must programmatically read ranges, write cells, or inspect sheet structure without manual copy-paste.849installs4Stravastrava is an API integration skill from vm0-ai/vm0-skills for Strava fitness data using OAuth bearer tokens and Strava API v3 endpoints. It documents curl patterns for athlete profile and statistics retrieval, includes zero doctor connector troubleshooting via zero doctor check-connector, and covers running, cycling, and activity sync workflows. Developers reach for strava when building fitness dashboards, coaching features, or agent tools that must authenticate athletes and pull activity feeds from Strava into backend services.584installs5Lineline is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.435installs6Minimaxminimax is an agent skill in vm0-ai/vm0-skills for calling MiniMax language models over HTTP. Authentication uses a Bearer MINIMAX_TOKEN in the Authorization header against https://api.minimax.io/v1/text/chatcompletion_v2. Examples write request JSON such as model MiniMax-Text-01 with system and user messages to /tmp/minimax_request.json before posting completions. Troubleshooting guides agents to run zero doctor check-connector --env-name MINIMAX_TOKEN or zero doctor check-connector against the chatcompletion_v2 POST endpoint when requests fail. Developers reach for minimax when users mention MiniMax, Chinese AI models, or need vm0 connector diagnostics for this provider. The skill fits agent backends and automation scripts that swap MiniMax into existing chat pipelines without bespoke SDK wiring. Load it during LLM provider integration tasks where curl-style JSON payloads and token validation are the primary debugging surface.430installs7Apifyapify is a vm0-ai/vm0-skills workflow for the Apify web scraping platform, triggered when users mention scrape website, web crawler, or extract data from a site. The skill starts asynchronous Actor runs by writing /tmp/apify_request.json with fields such as startUrls, maxPagesPerCrawl, and a pageFunction jQuery script, then posts to Apify endpoints like api.apify.com/v2/acts/apify~web-scraper/runs. It includes troubleshooting via zero doctor check-connector --env-name APIFY_TOKEN or direct URL probes when requests fail. Developers reach for apify when agents must harvest listing pages, monitor competitor sites, or feed downstream pipelines without maintaining custom headless browser infrastructure, provided an Apify token and Actor configuration are available in the environment. The skill is triggered by scrape website, web crawler, scraping, or extract data from phrasing and pairs with vm0 zero doctor connector diagnostics for reliable APIFY_TOKEN validation.379installs8Larklark is a vm0-ai/vm0-skills agent skill for Lark API collaboration workflows in ByteDance workspace environments. It triggers when users mention Lark, Lark docs, or ByteDance workspace tools, and documents connector troubleshooting with zero doctor commands against LARK_TOKEN and the bot info endpoint at open.larksuite.com/open-apis/bot/v3/info. The skill clarifies that LARK_TOKEN is the Lark API bearer token available after the Lark connector is connected, not an app secret, and includes shell authentication helpers that fail clearly when the runtime token is missing. Developers reach for lark when coding agents must read Lark docs, call bot APIs, or debug connector auth during integration build. Pair lark with vm0 connector diagnostics when requests fail after the Lark connector is connected. The skill lists 272 installs on skills.sh within the vm0-ai/vm0-skills connector collection for Lark workspace automation.286installs9Firecrawlfirecrawl is a vm0-ai/vm0-skills agent skill that documents how to authenticate with FIRECRAWL_TOKEN and POST scrape or crawl jobs to https://api.firecrawl.dev/v1. Developers write JSON payloads (for example url plus formats like markdown) to files such as /tmp/firecrawl_request.json and invoke the connector through shell examples in the skill. The skill includes zero doctor troubleshooting commands like check-connector for FIRECRAWL_TOKEN and direct POST probes against the scrape endpoint. Reach for firecrawl when an agent must pull readable page content, batch site text, or debug failing Firecrawl requests during backend or agent integrations. It assumes network access and a valid API token rather than local HTML parsing libraries.284installs10Deepseekdeepseek is a vm0-ai/vm0-skills integration skill for the DeepSeek API used when users mention DeepSeek, DeepSeek API, or DeepSeek models. It documents DEEPSEEK_TOKEN environment setup, the recommended base URL https://api.deepseek.com, and the OpenAI-compatible https://api.deepseek.com/v1 path for chat completions with the deepseek-chat model. Developers write JSON request bodies—such as /tmp/deepseek_request.json—and invoke POST chat-completion endpoints from agent or backend code. When requests fail, the skill directs running zero doctor check-connector --env-name DEEPSEEK_TOKEN or zero doctor check-connector against https://api.deepseek.com/chat/completions with POST method to validate connectivity. Reach for deepseek when swapping or adding DeepSeek inference alongside other LLM providers in vm0 agent pipelines without re-reading vendor docs for every session.282installs11Discord Webhookdiscord-webhook is a vm0-ai/vm0-skills agent skill that standardizes outbound Discord notifications through Discord's Webhook API. Developers export DISCORD_WEBHOOK_URL, write a JSON body to /tmp/discord_webhook_request.json, and POST it with curl using Content-Type application/json. The SKILL.md documents a minimal content-only payload and a second pattern with username and avatar_url overrides for branded alert bots. Reach for discord-webhook when a user says send Discord message, Discord webhook, or post to Discord and you need a repeatable shell workflow instead of improvising API field names. The approach avoids OAuth or bot-token setup for one-way outbound posts from CI pipelines, deploy hooks, or monitoring scripts. Because the webhook URL stays in an environment variable and the JSON body lives in a temp file, credentials are less likely to leak into shell history than inline curl one-liners.262installs12Miniominio: A skill skill for development. This skill provides functionality for development workflows.214installs13Bitrixbitrix: A skill skill for development. This skill provides functionality for development workflows.190installs14Browserlessbrowserless: A skill skill for development. This skill provides functionality for development workflows.190installs15Gmailgmail: A skill skill for development. This skill provides functionality for development workflows.187installs16Slack Webhookslack-webhook: A skill skill for development. This skill provides functionality for development workflows.169installs17Htmlcsstoimagehtmlcsstoimage: A skill skill for development. This skill provides functionality for development workflows.167installs18Chatwootchatwoot: A skill skill for development. This skill provides functionality for development workflows.164installs19Cloudinarycloudinary: A skill skill for development. This skill provides functionality for development workflows.156installs20Scrapeninjascrapeninja: A skill skill for development. This skill provides functionality for development workflows.147installs21Youtubeyoutube: A skill skill for development. This skill provides functionality for development workflows.147installs22Discorddiscord: A skill skill for development. This skill provides functionality for development workflows.145installs23Pdf4mepdf4me: A skill skill for development. This skill provides functionality for development workflows.138installs24Instantlyinstantly: A skill skill for development. This skill provides functionality for development workflows.134installs25Imgurimgur: A skill skill for development. This skill provides functionality for development workflows.133installs26Perplexityperplexity: A skill skill for development. This skill provides functionality for development workflows.130installs27Twentytwenty: A skill skill for development. This skill provides functionality for development workflows.130installs28Plausibleplausible: A skill skill for development. This skill provides functionality for development workflows.125installs29Runwayrunway: A skill skill for development. This skill provides functionality for development workflows.125installs30Zendeskzendesk: A skill skill for development. This skill provides functionality for development workflows.121installs31Supadatasupadata: A skill skill for development. This skill provides functionality for development workflows.119installs32Mondaymonday: A skill skill for development. This skill provides functionality for development workflows.118installs33Slackslack: A skill skill for development. This skill provides functionality for development workflows.117installs34Bright Databright-data: A skill skill for development. This skill provides functionality for development workflows.112installs35Brave Searchbrave-search is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.111installs36Google Calendargoogle-calendar is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.111installs37Pikvmpikvm is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.110installs38Resendresend is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.110installs39Kommokommo is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.107installs40Github Automationgithub-automation is a Claude Code skill for automation & workflows. It helps solo builders move faster with AI-assisted coding.103installs41Mailsacmailsac is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.103installs42Qdrantqdrant is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.103installs43Figmafigma is a Claude Code skill for design & ui/ux. It helps solo builders move faster with AI-assisted coding.101installs44Pdforgepdforge is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.101installs45Pushinatorpushinator is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.101installs46Pdfcopdfco is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.100installs47Cronlyticcronlytic is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.99installs48Gitlabgitlab is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.99installs49Notionnotion is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.99installs50Intercomintercom is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.97installs51Openaiopenai is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.97installs52Tavilytavily is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.97installs53Elevenlabselevenlabs is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.96installs54Zapsignzapsign is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.95installs55Browserbasebrowserbase is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.94installs56Mercurymercury is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.94installs57Github Copilotgithub-copilot is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.93installs58Podchaserpodchaser is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.92installs59Shortioshortio is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.92installs60Supabasesupabase is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.91installs61Linearlinear is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.89installs62Qiitaqiita is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.89installs63Axiomaxiom is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.88installs64Reporteireportei is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.88installs65Sentrysentry is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.88installs66Zeptomailzeptomail is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.88installs67Jirajira is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.87installs68Account Reconciliationaccount-reconciliation is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.86installs69Streakstreak is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.86installs70Google Drivegoogle-drive is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.82installs71Meta Adsmeta-ads is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.78installs72Jamjam is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.77installs73Agentmailagentmail is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.76installs74Falfal is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.68installs75Rss Fetchrss-fetch is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.68installs76Intervals Icuintervals-icu is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.67installs77Google Docsgoogle-docs is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.65installs78Metabasemetabase is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.65installs79Gammagamma is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.62installs80Asanaasana is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.60installs81Devtodevto is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.60installs82Cal Comcal-com is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.58installs83Difydify is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.56installs84Gaap Reportinggaap-reporting is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.56installs85Zapierzapier is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.56installs86Makemake is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.55installs87Similarwebsimilarweb is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.55installs88Xeroxero is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.55installs89Dropboxdropbox is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.53installs90Fal.Aifal.ai is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.53installs91Marketing Analyticsmarketing-analytics is a Claude Code skill for marketing & seo. It helps solo builders move faster with AI-assisted coding.53installs92Period Closeperiod-close is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.53installs93Wixwix is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.53installs94Xx is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.53installs95Customer Replycustomer-reply is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.52installs96Productlaneproductlane is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.52installs97Redditreddit is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.52installs98Stripestripe is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.52installs99Cloudflarecloudflare is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.51installs100Docusigndocusign is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.51installs101Journal Entriesjournal-entries is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.50installs102Prd Writingprd-writing is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.50installs103Salesforcesalesforce is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.50installs104Vm0vm0 is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.50installs105Vm0 Clivm0-cli is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.50installs106Firefliesfireflies is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.49installs107Hubspothubspot is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.49installs108Prisma Postgresprisma-postgres is a Claude Code skill for databases. It helps solo builders move faster with AI-assisted coding.49installs109Privacy Complianceprivacy-compliance is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.49installs110Revenuecatrevenuecat is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.49installs111Ahrefsahrefs is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.48installs112Audit Readinessaudit-readiness is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.48installs113Clickupclickup is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.48installs114Competitor Matrixcompetitor-matrix is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.48installs115Jotformjotform is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.48installs116Todoisttodoist is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.48installs117Vercelvercel is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.48installs118Wrikewrike is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.48installs119Airtableairtable is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.47installs120Heygenheygen is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.47installs121Humehume is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.47installs122Product Metricsproduct-metrics is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.47installs123Brevobrevo is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.46installs124Campaign Strategycampaign-strategy is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.46installs125Canvacanva is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.46installs126Closeclose is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.46installs127Data Profilingdata-profiling is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.46installs128Deeldeel is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.46installs129Etsyetsy is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.46installs130Exploriumexplorium is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.46installs131Granolagranola is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.46installs132Legal Briefinglegal-briefing is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.46installs133Tldvtldv is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.46installs134Workflow Migrationworkflow-migration is a Claude Code skill for automation & workflows. It helps solo builders move faster with AI-assisted coding.46installs135Brand Guidelinesbrand-guidelines is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.45installs136Calendlycalendly is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.45installs137Contract Redlinecontract-redline is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.45installs138Copywritingcopywriting is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.45installs139Customer Intelcustomer-intel is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.45installs140Escalation Briefescalation-brief is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.45installs141Legal Risk Scoringlegal-risk-scoring is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.45installs142Posthogposthog is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.45installs143Research Synthesisresearch-synthesis is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.45installs144Sql Cookbooksql-cookbook is a Claude Code skill for databases. It helps solo builders move faster with AI-assisted coding.45installs145Stats Methodsstats-methods is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.45installs146Webflowwebflow is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.45installs147Analysis Qaanalysis-qa is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.44installs148Flux Analysisflux-analysis is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.44installs149Hugging Facehugging-face is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.44installs150Mailchimpmailchimp is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.44installs151Neonneon is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.44installs152Reply Templatesreply-templates is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.44installs153Status Updatesstatus-updates is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.44installs154Greenhousegreenhouse is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.43installs155Issue Triageissue-triage is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.43installs156Kb Authoringkb-authoring is a Claude Code skill for security. It helps solo builders move faster with AI-assisted coding.43installs157Nda Screeningnda-screening is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.43installs158Roadmap Planningroadmap-planning is a Claude Code skill for productivity & planning. It helps solo builders move faster with AI-assisted coding.43installs159Spotifyspotify is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.43installs160Deep Divedeep-dive is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.42installs161Seedanceseedance is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.42installs162V0v0 is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.42installs163Atlassianatlassian is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.41installs164Customer Iocustomer-io is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.41installs165Loopsloops is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.41installs166Dev.Todev.to is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.39installs167Anthropic Managed Agentsanthropic-managed-agents is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.38installs168Computercomputer is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.38installs169Vm0 Agentvm0-agent is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.38installs170Apolloapollo is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.37installs171Duffelduffel is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.36installs172Freshdeskfreshdesk is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.36installs173Google Meetgoogle-meet is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.36installs174Zoomzoom is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.36installs175Drive9drive9 is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.35installs176Infisicalinfisical is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.35installs177Pikastreampikastream is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.35installs178Plainplain is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.35installs179Strapistrapi is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.35installs180Agentphoneagentphone is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.34installs181Dopplerdoppler is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.34installs182Manusmanus is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.34installs183Mem0mem0 is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.34installs184N8nn8n is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.34installs185Nano Banananano-banana is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.34installs186Shopifyshopify is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.34installs187Bufferbuffer is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.33installs188Db9db9 is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.33installs189Heliconehelicone is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.33installs190Lumaluma is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.33installs191Msg9msg9 is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.33installs192Togethertogether is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.33installs193Typeformtypeform is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.33installs194Amplitudeamplitude is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.32installs195Attioattio is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.32installs196Codacoda is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.32installs197Dropbox Signdropbox-sign is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.32installs198Miromiro is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.32installs199Mixpanelmixpanel is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.32installs200Pandadocpandadoc is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.32installs201Wandbwandb is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.32installs202Vm0 Computervm0-computer is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.26installs