# Solid State — Full Index > The skills marketplace for AI agents. Browse, install, and publish skills for Claude, OpenClaw, NemoClaw, Google Antigravity, and any agent runtime. Generated 2026-06-01. Source: solidstate.cc. 277 skill records, 38 glossary terms. ## What Solid State is A directory of agent skills, indexed honestly. No skill carries an install count we haven't measured. No skill is attributed to us unless we wrote it. Listings link to upstream repos. We don't claim authorship. Three kinds: **originals** (Solid State authored), **listings** (third-party, indexed for discovery), **mirrors** (third-party open-source, hosted with attribution). ## Manifesto ### Working code, not wrappers. AI is a tool. The job is to ship work. Solid State packages narrow, working capabilities. Each one does one thing, costs what it costs, and runs today. ### No theater. No mysticism, no manifesto theater inside a skill. The agent shows up, does the work, returns a result. If it cannot, it says so and stops. ### Compute is cheap. Bad output is not. Agents that ship wrong work cost more than agents that admit they cannot. Every Solid State skill is built around verification first, capability second. ### Buy, install, or pay-per-call. Free skills run direct on solidstate.cc. Productized agents ship on Claw Mart. Per-call services list on Agentic Market via x402. One brand, three channels, no lock-in. ### Operators, not users. We build for the people who run the work, not the people who watch the work. Founders, ops leads, solo operators, lean teams. The brief is always: get to ship. ### Open where it's free. Paid where it isn't. Open formats, open sources cited, open data where we can. Commercial pricing where the value is real. We will not pretend a thing is free that costs us to run. ## Original skills Solid State authored. Source under our control. ### Niche Hunter Surface profitable affiliate sub-niches scored by commission rate, SERP gap, trend slope, and content difficulty. https://solidstate.cc/skills/niche-hunter ### AI Tool Compare Fair, structured 1v1 comparison between two AI tools. Pricing, features, real-world performance, switching cost, who-it's-for. https://solidstate.cc/skills/ai-tool-compare ### Hyper-Rational Brief Solid State's signature voice applied to research briefs. Anti-buzzword filter, evidence-graded claims, no corporate residue. https://solidstate.cc/skills/hyper-rational-brief ## Pricing ### Operator Pack — $200 10,000 oracle calls. No subscription. No token. Prepaid credit, routed through Solid State's runtime. https://solidstate.cc/buy ### Run an Agent Without Buying a Course — $29 The whole playbook. 20 pages. No upsell. How to ship one agent on Base. https://solidstate.cc/buy ### Founder Briefing — $1 forest + audit + oracle. One run. One dollar. Run it before pitching anything. https://solidstate.cc/buy ## Glossary A working glossary of AI terms, leveled beginner to expert. - [Agent](https://solidstate.cc/glossary/agent): An AI system that takes a goal, plans steps, uses tools, and returns a result without being walked through every move. - [Skill](https://solidstate.cc/glossary/skill): A packaged capability an agent can install and use. Code, prompts, and tool wiring bundled as one unit. - [Persona](https://solidstate.cc/glossary/persona): A configured agent with a specific voice, role, and toolset. Same engine, different operator. - [Prompt](https://solidstate.cc/glossary/prompt): The input you give the model. Includes the system instructions, the conversation, and any retrieved context. - [Context Window](https://solidstate.cc/glossary/context-window): How much text the model can see at once. Bigger is better until cost catches up. - [Token](https://solidstate.cc/glossary/token): The unit a model reads and writes. Roughly four characters in English. Pricing is per token. - [Hallucination](https://solidstate.cc/glossary/hallucination): When the model produces a confident answer that is not grounded in reality. The single biggest reason agents need verification. - [Inference](https://solidstate.cc/glossary/inference): Running a trained model to produce an output. The thing you pay for every time the agent thinks. - [Channel](https://solidstate.cc/glossary/channel): The surface an agent talks through. Slack, iMessage, the web, your terminal. - [System Prompt](https://solidstate.cc/glossary/system-prompt): Top-of-conversation instructions that set the model's role, constraints, and style. Sticks for the whole session. - [Tool Use](https://solidstate.cc/glossary/tool-use): When the model calls an external function (search, code, calendar) instead of just writing text back. - [MCP](https://solidstate.cc/glossary/mcp): Model Context Protocol. Open standard for connecting models to tools, data, and prompts. Standardizes the agent-to-app handoff. - [RAG](https://solidstate.cc/glossary/rag): Retrieval-augmented generation. Pull relevant snippets from your data, then ask the model. Trades training cost for retrieval cost. - [Embedding](https://solidstate.cc/glossary/embedding): A numeric fingerprint of a chunk of text. Lets you find related content by distance instead of keyword match. - [Fine-tuning](https://solidstate.cc/glossary/fine-tuning): Training a base model on your own data so it specializes. Less common now that prompting and RAG cover most cases. - [Chain of Thought](https://solidstate.cc/glossary/chain-of-thought): Prompting the model to reason step by step before answering. Lower error rates on multi-step problems, higher token cost. - [Evals](https://solidstate.cc/glossary/evals): Automated tests for agents and prompts. Run on a fixed dataset, score the output, catch regressions before users do. - [Session](https://solidstate.cc/glossary/session): One conversation's working state. The thread the agent is holding right now. - [Plugin](https://solidstate.cc/glossary/plugin): A bundled add-on that extends an agent. New channels, new tools, dropped in. - [Self-Hosted](https://solidstate.cc/glossary/self-hosted): Running the agent on your own hardware. Your data, your rules, no vendor in the middle. - [Vector Store](https://solidstate.cc/glossary/vector-store): A database for embeddings. Returns the nearest matches by cosine or dot product, not by exact keyword. - [Agent Loop](https://solidstate.cc/glossary/agent-loop): The plan-act-observe cycle. Model proposes a step, runs it, reads the result, decides the next step. - [Memory](https://solidstate.cc/glossary/memory): What the agent keeps between sessions. Long-term store, not the active context window. Lets it learn your patterns. - [Guardrails](https://solidstate.cc/glossary/guardrails): Hard limits on what an agent can do. Tool allowlists, output filters, sandboxed execution, human checkpoints. - [Sandboxing](https://solidstate.cc/glossary/sandboxing): Running agent code in an isolated environment with no host access. Required for any agent that runs untrusted code. - [Human in the Loop](https://solidstate.cc/glossary/human-in-the-loop): Pausing the agent for human approval at chosen points. Common pattern for high-stakes actions like sending money. - [Prompt Injection](https://solidstate.cc/glossary/prompt-injection): Adversarial input that hijacks an agent's instructions through user data or fetched content. The XSS of the agent era. - [Model Routing](https://solidstate.cc/glossary/model-routing): Sending each request to the cheapest model that can handle it. Big win on cost without dropping quality on hard tasks. - [Gateway](https://solidstate.cc/glossary/gateway): One process bridging every channel to the agent. The single door messages pass through. - [Multi-Agent Routing](https://solidstate.cc/glossary/multi-agent-routing): Sending each request to the right agent, with isolated sessions per workspace or sender. - [Node](https://solidstate.cc/glossary/node): A paired device that extends an agent's reach. Camera, mic, and screen on your phone. - [Base Model](https://solidstate.cc/glossary/base-model): The foundation weights before instruction tuning, RLHF, or fine-tuning. The raw next-token predictor. - [RLHF](https://solidstate.cc/glossary/rlhf): Reinforcement learning from human feedback. The training stage that turns a base model into a helpful assistant. - [x402](https://solidstate.cc/glossary/x402): HTTP 402 Payment Required, revived as a per-call payment protocol for agents. Powers Agentic Market. - [Agent Harness](https://solidstate.cc/glossary/harness): The runtime around the model. Manages tool calls, context, memory, retries, error handling, and observability. - [Computer Use](https://solidstate.cc/glossary/computer-use): Agents that drive a real or virtual desktop. Mouse, keyboard, screenshots. Can use any app, including ones with no API. - [Mixture of Experts](https://solidstate.cc/glossary/mixture-of-experts): Architecture that routes tokens to a sparse subset of specialist subnetworks. Larger total parameters, lower active cost per token. - [Daemon](https://solidstate.cc/glossary/daemon): A background process that keeps the agent always-on. Survives logout, restarts itself. ## Indexed skills (274) Third-party skills indexed for discovery. Each links to its Solid State listing page; provenance and license live there. - [Anthropic Skill Creator](https://solidstate.cc/skills/anthropic-skill-creator): Anthropic's first-party skill for designing, scaffolding, and validating new agent skills. Apache 2.0. - [Brand Guidelines (Anthropic)](https://solidstate.cc/skills/anthropic-brand-guidelines): Apply Anthropic's brand colors and typography to artifacts. Apache 2.0 — fork it for your own brand. - [MCP Builder](https://solidstate.cc/skills/anthropic-mcp-builder): Anthropic's skill for building MCP servers. Use when you need to integrate an external API as a tool. - [Algorithmic Art](https://solidstate.cc/skills/anthropic-algorithmic-art): Generate p5.js algorithmic art with seeded randomness and parameter exploration. Apache 2.0. - [Canvas Design](https://solidstate.cc/skills/anthropic-canvas-design): Build static visual art (.png / .pdf posters, designs) using opinionated design philosophy. Apache 2.0. - [Theme Factory](https://solidstate.cc/skills/anthropic-theme-factory): Apply or generate themes (colors + fonts) for slides, docs, dashboards, HTML pages. Apache 2.0. - [Claude API](https://solidstate.cc/skills/anthropic-claude-api): First-party reference for using the Claude API: tool use, SDK patterns, streaming, error handling. Apache 2.0. - [Frontend Design](https://solidstate.cc/skills/anthropic-frontend-design): Opinionated frontend design guidance for agents writing UI code. Apache 2.0. - [Web Artifacts Builder](https://solidstate.cc/skills/anthropic-web-artifacts-builder): Author multi-component HTML artifacts with React, Tailwind, shadcn/ui. Apache 2.0. - [Webapp Testing](https://solidstate.cc/skills/anthropic-webapp-testing): Write and run tests against a web application from an agent loop. Apache 2.0. - [Doc Co-authoring](https://solidstate.cc/skills/anthropic-doc-coauthoring): Structured workflow for co-writing docs / proposals / specs with iterative refinement. Apache 2.0. - [Internal Comms](https://solidstate.cc/skills/anthropic-internal-comms): Templates and patterns for status reports, leadership updates, FAQs, incident reports. Apache 2.0. - [Slack GIF Creator](https://solidstate.cc/skills/anthropic-slack-gif-creator): Generate animated GIFs sized and looped for Slack reactions. Apache 2.0. - [DOCX (Anthropic)](https://solidstate.cc/skills/anthropic-docx): Anthropic's production document-skill for Word .docx authoring/editing. Source-available; reference only. - [PDF (Anthropic)](https://solidstate.cc/skills/anthropic-pdf): Anthropic's production document-skill for PDF authoring, forms, merge/split, extraction. Source-available; reference only. - [PPTX (Anthropic)](https://solidstate.cc/skills/anthropic-pptx): Anthropic's production document-skill for PowerPoint .pptx decks. Source-available; reference only. - [XLSX (Anthropic)](https://solidstate.cc/skills/anthropic-xlsx): Anthropic's production document-skill for Excel .xlsx authoring, formulas, charts, models. Source-available; reference only. - [Notion Skills for Claude](https://solidstate.cc/skills/notion-skills-for-claude): Official Notion-built skill bundle: Knowledge Capture, Meeting Intelligence, Research, Spec-to-Implementation. - [Awesome Claude Skills (Composio)](https://solidstate.cc/skills/composio-awesome-claude-skills): Composio's curated index of Claude Skills, resources, and tools across the ecosystem. - [Claude Cookbooks (Anthropic)](https://solidstate.cc/skills/anthropic-claude-cookbooks): MIT-licensed Jupyter cookbooks covering RAG, classification, summarization, tool use, vision, evals, prompt caching, and more. ~40k stars. - [Claude Plugins — Community Marketplace](https://solidstate.cc/skills/anthropic-claude-plugins-community): Read-only mirror of Anthropic's curated community plugin marketplace for Claude Cowork & Code. Apache 2.0. Synced nightly. - [Claude Plugins — Official Directory](https://solidstate.cc/skills/anthropic-claude-plugins-official): Anthropic's official directory of high-quality Claude Code plugins. ~18k stars. 33 internal plugins + external_plugins folder. Per-plugin licenses vary. - [Knowledge Work Plugins](https://solidstate.cc/skills/anthropic-knowledge-work-plugins): Apache 2.0 role-based plugin bundles (sales, marketing, legal, finance, data, design, etc.) for Claude Cowork. ~11.5k stars. - [OpenClaw Skills Archive](https://solidstate.cc/skills/openclaw-skills-archive): MIT-licensed full archive of every version of every skill ever published to clawhub.ai. ~4.4k stars, ~1MB+ of skill metadata. - [ClawHub (live registry)](https://solidstate.cc/skills/openclaw-clawhub-live): Live OpenClaw registry. 52.7k tools, 180k users, 12M downloads, 4.8 avg rating. Vector-search-backed discovery for skills + plugins. - [Awesome OpenClaw Skills (VoltAgent)](https://solidstate.cc/skills/voltagent-awesome-openclaw): 5,400+ OpenClaw skills curated and categorized from the official ClawHub registry. - [Antigravity Awesome Skills (sickn33)](https://solidstate.cc/skills/sickn33-antigravity-awesome): 1,400+ cross-platform agent skills with installer CLI. Targets Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity. - [ClawHub (official OpenClaw registry)](https://solidstate.cc/skills/openclaw-clawhub): OpenClaw's official skill registry. Browse and install ~13,729 community skills. MIT. - [Himalaya CLI](https://solidstate.cc/skills/soywod-himalaya): Terminal-native email client with IMAP/SMTP. Wrap as an OpenClaw skill for agent email workflows. - [Gemini API in Agent Platform](https://solidstate.cc/skills/google-gemini-api): Google's first-party skill for calling the Gemini API from agents. Apache 2.0. - [BigQuery Basics](https://solidstate.cc/skills/google-bigquery-basics): Google's first-party skill for agents working with BigQuery. Apache 2.0. - [Cloud Run Basics](https://solidstate.cc/skills/google-cloud-run-basics): Google's first-party skill for deploying and managing Cloud Run services. Apache 2.0. - [Firebase Basics](https://solidstate.cc/skills/google-firebase-basics): Google's first-party skill for agents building on Firebase. Apache 2.0. - [Well-Architected Framework: Cost Optimization](https://solidstate.cc/skills/google-waf-cost-optimization): Google's first-party skill for agents auditing and reducing GCP spend. Apache 2.0. - [Find Skills](https://solidstate.cc/skills/vercel-labs-skills-find-skills): Find Skills — open agent skill from vercel-labs/skills. Indexed from skills.sh. - [Frontend Design](https://solidstate.cc/skills/anthropics-skills-frontend-design): Frontend Design — open agent skill from anthropics/skills. Indexed from skills.sh. - [Vercel React Best Practices](https://solidstate.cc/skills/vercel-labs-agent-skills-vercel-react-best-practices): Vercel React Best Practices — open agent skill from vercel-labs/agent-skills. Indexed from skills.sh. - [Web Design Guidelines](https://solidstate.cc/skills/vercel-labs-agent-skills-web-design-guidelines): Web Design Guidelines — open agent skill from vercel-labs/agent-skills. Indexed from skills.sh. - [Remotion Best Practices](https://solidstate.cc/skills/remotion-dev-skills-remotion-best-practices): Remotion Best Practices — open agent skill from remotion-dev/skills. Indexed from skills.sh. - [Microsoft Foundry](https://solidstate.cc/skills/microsoft-azure-skills-microsoft-foundry): Microsoft Foundry — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Azure AI](https://solidstate.cc/skills/microsoft-azure-skills-azure-ai): Azure AI — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Azure Deploy](https://solidstate.cc/skills/microsoft-azure-skills-azure-deploy): Azure Deploy — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Azure Prepare](https://solidstate.cc/skills/microsoft-azure-skills-azure-prepare): Azure Prepare — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Azure Diagnostics](https://solidstate.cc/skills/microsoft-azure-skills-azure-diagnostics): Azure Diagnostics — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Azure Storage](https://solidstate.cc/skills/microsoft-azure-skills-azure-storage): Azure Storage — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Appinsights Instrumentation](https://solidstate.cc/skills/microsoft-azure-skills-appinsights-instrumentation): Appinsights Instrumentation — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Azure Validate](https://solidstate.cc/skills/microsoft-azure-skills-azure-validate): Azure Validate — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Entra App Registration](https://solidstate.cc/skills/microsoft-azure-skills-entra-app-registration): Entra App Registration — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Azure Compliance](https://solidstate.cc/skills/microsoft-azure-skills-azure-compliance): Azure Compliance — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Azure RBAC](https://solidstate.cc/skills/microsoft-azure-skills-azure-rbac): Azure RBAC — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Azure Resource Lookup](https://solidstate.cc/skills/microsoft-azure-skills-azure-resource-lookup): Azure Resource Lookup — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Azure Resource Visualizer](https://solidstate.cc/skills/microsoft-azure-skills-azure-resource-visualizer): Azure Resource Visualizer — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Azure Aigateway](https://solidstate.cc/skills/microsoft-azure-skills-azure-aigateway): Azure Aigateway — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Azure Kusto](https://solidstate.cc/skills/microsoft-azure-skills-azure-kusto): Azure Kusto — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Agent Browser](https://solidstate.cc/skills/vercel-labs-agent-browser-agent-browser): Agent Browser — open agent skill from vercel-labs/agent-browser. Indexed from skills.sh. - [Azure Messaging](https://solidstate.cc/skills/microsoft-azure-skills-azure-messaging): Azure Messaging — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Azure Hosted Copilot SDK](https://solidstate.cc/skills/microsoft-azure-skills-azure-hosted-copilot-sdk): Azure Hosted Copilot SDK — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Azure Compute](https://solidstate.cc/skills/microsoft-azure-skills-azure-compute): Azure Compute — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Azure Cloud Migrate](https://solidstate.cc/skills/microsoft-azure-skills-azure-cloud-migrate): Azure Cloud Migrate — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Skill Creator](https://solidstate.cc/skills/anthropics-skills-skill-creator): Skill Creator — open agent skill from anthropics/skills. Indexed from skills.sh. - [Grill Me](https://solidstate.cc/skills/mattpocock-skills-grill-me): Grill Me — open agent skill from mattpocock/skills. Indexed from skills.sh. - [Azure Cost Optimization](https://solidstate.cc/skills/microsoft-azure-skills-azure-cost-optimization): Azure Cost Optimization — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Azure Quotas](https://solidstate.cc/skills/microsoft-azure-skills-azure-quotas): Azure Quotas — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Supabase Postgres Best Practices](https://solidstate.cc/skills/supabase-agent-skills-supabase-postgres-best-practices): Supabase Postgres Best Practices — open agent skill from supabase/agent-skills. Indexed from skills.sh. - [Vercel Composition Patterns](https://solidstate.cc/skills/vercel-labs-agent-skills-vercel-composition-patterns): Vercel Composition Patterns — open agent skill from vercel-labs/agent-skills. Indexed from skills.sh. - [Azure Upgrade](https://solidstate.cc/skills/microsoft-azure-skills-azure-upgrade): Azure Upgrade — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [AI Image Generation](https://solidstate.cc/skills/skills-shell-skills-ai-image-generation): AI Image Generation — open agent skill from skills-shell/skills. Indexed from skills.sh. - [AI Video Generation](https://solidstate.cc/skills/skills-shell-skills-ai-video-generation): AI Video Generation — open agent skill from skills-shell/skills. Indexed from skills.sh. - [UI UX Pro Max](https://solidstate.cc/skills/nextlevelbuilder-ui-ux-pro-max-skill-ui-ux-pro-max): UI UX Pro Max — open agent skill from nextlevelbuilder/ui-ux-pro-max-skill. Indexed from skills.sh. - [AI Avatar Video](https://solidstate.cc/skills/skills-shell-skills-ai-avatar-video): AI Avatar Video — open agent skill from skills-shell/skills. Indexed from skills.sh. - [Brainstorming](https://solidstate.cc/skills/obra-superpowers-brainstorming): Brainstorming — open agent skill from obra/superpowers. Indexed from skills.sh. - [Remotion Render](https://solidstate.cc/skills/skills-shell-skills-remotion-render): Remotion Render — open agent skill from skills-shell/skills. Indexed from skills.sh. - [Twitter Automation](https://solidstate.cc/skills/skills-shell-skills-twitter-automation): Twitter Automation — open agent skill from skills-shell/skills. Indexed from skills.sh. - [Caveman](https://solidstate.cc/skills/juliusbrussee-caveman-caveman): Caveman — open agent skill from juliusbrussee/caveman. Indexed from skills.sh. - [Improve Codebase Architecture](https://solidstate.cc/skills/mattpocock-skills-improve-codebase-architecture): Improve Codebase Architecture — open agent skill from mattpocock/skills. Indexed from skills.sh. - [Sleek Design Mobile Apps](https://solidstate.cc/skills/sleekdotdesign-agent-skills-sleek-design-mobile-apps): Sleek Design Mobile Apps — open agent skill from sleekdotdesign/agent-skills. Indexed from skills.sh. - [Lark Doc](https://solidstate.cc/skills/larksuite-cli-lark-doc): Lark Doc — open agent skill from larksuite/cli. Indexed from skills.sh. - [Lark Base](https://solidstate.cc/skills/larksuite-cli-lark-base): Lark Base — open agent skill from larksuite/cli. Indexed from skills.sh. - [Lark IM](https://solidstate.cc/skills/larksuite-cli-lark-im): Lark IM — open agent skill from larksuite/cli. Indexed from skills.sh. - [Lark Drive](https://solidstate.cc/skills/larksuite-cli-lark-drive): Lark Drive — open agent skill from larksuite/cli. Indexed from skills.sh. - [Lark Shared](https://solidstate.cc/skills/larksuite-cli-lark-shared): Lark Shared — open agent skill from larksuite/cli. Indexed from skills.sh. - [Lark Calendar](https://solidstate.cc/skills/larksuite-cli-lark-calendar): Lark Calendar — open agent skill from larksuite/cli. Indexed from skills.sh. - [Lark Wiki](https://solidstate.cc/skills/larksuite-cli-lark-wiki): Lark Wiki — open agent skill from larksuite/cli. Indexed from skills.sh. - [Lark Whiteboard](https://solidstate.cc/skills/larksuite-cli-lark-whiteboard): Lark Whiteboard — open agent skill from larksuite/cli. Indexed from skills.sh. - [Lark Sheets](https://solidstate.cc/skills/larksuite-cli-lark-sheets): Lark Sheets — open agent skill from larksuite/cli. Indexed from skills.sh. - [Lark Task](https://solidstate.cc/skills/larksuite-cli-lark-task): Lark Task — open agent skill from larksuite/cli. Indexed from skills.sh. - [Lark Mail](https://solidstate.cc/skills/larksuite-cli-lark-mail): Lark Mail — open agent skill from larksuite/cli. Indexed from skills.sh. - [Lark VC](https://solidstate.cc/skills/larksuite-cli-lark-vc): Lark VC — open agent skill from larksuite/cli. Indexed from skills.sh. - [Lark Minutes](https://solidstate.cc/skills/larksuite-cli-lark-minutes): Lark Minutes — open agent skill from larksuite/cli. Indexed from skills.sh. - [Lark Event](https://solidstate.cc/skills/larksuite-cli-lark-event): Lark Event — open agent skill from larksuite/cli. Indexed from skills.sh. - [Lark Contact](https://solidstate.cc/skills/larksuite-cli-lark-contact): Lark Contact — open agent skill from larksuite/cli. Indexed from skills.sh. - [Github Actions Docs](https://solidstate.cc/skills/xixu-me-skills-github-actions-docs): Github Actions Docs — open agent skill from xixu-me/skills. Indexed from skills.sh. - [Lark Workflow Meeting Summary](https://solidstate.cc/skills/larksuite-cli-lark-workflow-meeting-summary): Lark Workflow Meeting Summary — open agent skill from larksuite/cli. Indexed from skills.sh. - [Lark Openapi Explorer](https://solidstate.cc/skills/larksuite-cli-lark-openapi-explorer): Lark Openapi Explorer — open agent skill from larksuite/cli. Indexed from skills.sh. - [Lark Workflow Standup Report](https://solidstate.cc/skills/larksuite-cli-lark-workflow-standup-report): Lark Workflow Standup Report — open agent skill from larksuite/cli. Indexed from skills.sh. - [Lark Skill Maker](https://solidstate.cc/skills/larksuite-cli-lark-skill-maker): Lark Skill Maker — open agent skill from larksuite/cli. Indexed from skills.sh. - [Soultrace](https://solidstate.cc/skills/soultrace-ai-soultrace-skill-soultrace): Soultrace — open agent skill from soultrace-ai/soultrace-skill. Indexed from skills.sh. - [TDD](https://solidstate.cc/skills/mattpocock-skills-tdd): TDD — open agent skill from mattpocock/skills. Indexed from skills.sh. - [Openclaw Secure Linux Cloud](https://solidstate.cc/skills/xixu-me-skills-openclaw-secure-linux-cloud): Openclaw Secure Linux Cloud — open agent skill from xixu-me/skills. Indexed from skills.sh. - [Grill With Docs](https://solidstate.cc/skills/mattpocock-skills-grill-with-docs): Grill With Docs — open agent skill from mattpocock/skills. Indexed from skills.sh. - [Use My Browser](https://solidstate.cc/skills/xixu-me-skills-use-my-browser): Use My Browser — open agent skill from xixu-me/skills. Indexed from skills.sh. - [Azure Enterprise Infra Planner](https://solidstate.cc/skills/microsoft-azure-skills-azure-enterprise-infra-planner): Azure Enterprise Infra Planner — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Shadcn](https://solidstate.cc/skills/shadcn-ui-shadcn): Shadcn — open agent skill from shadcn/ui. Indexed from skills.sh. - [Azure Kubernetes](https://solidstate.cc/skills/microsoft-azure-skills-azure-kubernetes): Azure Kubernetes — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [To PRD](https://solidstate.cc/skills/mattpocock-skills-to-prd): To PRD — open agent skill from mattpocock/skills. Indexed from skills.sh. - [Simple](https://solidstate.cc/skills/roin-orca-skills-simple): Simple — open agent skill from roin-orca/skills. Indexed from skills.sh. - [To Issues](https://solidstate.cc/skills/mattpocock-skills-to-issues): To Issues — open agent skill from mattpocock/skills. Indexed from skills.sh. - [Lark Approval](https://solidstate.cc/skills/larksuite-cli-lark-approval): Lark Approval — open agent skill from larksuite/cli. Indexed from skills.sh. - [Diagnose](https://solidstate.cc/skills/mattpocock-skills-diagnose): Diagnose — open agent skill from mattpocock/skills. Indexed from skills.sh. - [Agentspace](https://solidstate.cc/skills/agentspace-so-skills-agentspace): Agentspace — open agent skill from agentspace-so/skills. Indexed from skills.sh. - [Image To Video](https://solidstate.cc/skills/agentspace-so-runcomfy-agent-skills-image-to-video): Image To Video — open agent skill from agentspace-so/runcomfy-agent-skills. Indexed from skills.sh. - [Write A Skill](https://solidstate.cc/skills/mattpocock-skills-write-a-skill): Write A Skill — open agent skill from mattpocock/skills. Indexed from skills.sh. - [Zoom Out](https://solidstate.cc/skills/mattpocock-skills-zoom-out): Zoom Out — open agent skill from mattpocock/skills. Indexed from skills.sh. - [Setup Matt Pocock Skills](https://solidstate.cc/skills/mattpocock-skills-setup-matt-pocock-skills): Setup Matt Pocock Skills — open agent skill from mattpocock/skills. Indexed from skills.sh. - [GPT Image 2](https://solidstate.cc/skills/agentspace-so-agent-skills-gpt-image-2): GPT Image 2 — open agent skill from agentspace-so/agent-skills. Indexed from skills.sh. - [Caveman](https://solidstate.cc/skills/mattpocock-skills-caveman): Caveman — open agent skill from mattpocock/skills. Indexed from skills.sh. - [Paper Context Resolver](https://solidstate.cc/skills/lllllllama-ai-paper-reproduction-skill-paper-context-resolver): Paper Context Resolver — open agent skill from lllllllama/ai-paper-reproduction-skill. Indexed from skills.sh. - [Impeccable](https://solidstate.cc/skills/pbakaus-impeccable-impeccable): Impeccable — open agent skill from pbakaus/impeccable. Indexed from skills.sh. - [Azure Cost](https://solidstate.cc/skills/microsoft-azure-skills-azure-cost): Azure Cost — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Triage](https://solidstate.cc/skills/mattpocock-skills-triage): Triage — open agent skill from mattpocock/skills. Indexed from skills.sh. - [Lark Approval](https://solidstate.cc/skills/open-feishu-cn-lark-approval): Lark Approval — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Lark Doc](https://solidstate.cc/skills/open-feishu-cn-lark-doc): Lark Doc — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Lark Base](https://solidstate.cc/skills/open-feishu-cn-lark-base): Lark Base — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Lark Drive](https://solidstate.cc/skills/open-feishu-cn-lark-drive): Lark Drive — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Lark Calendar](https://solidstate.cc/skills/open-feishu-cn-lark-calendar): Lark Calendar — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Lark Shared](https://solidstate.cc/skills/open-feishu-cn-lark-shared): Lark Shared — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Lark IM](https://solidstate.cc/skills/open-feishu-cn-lark-im): Lark IM — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Lark Attendance](https://solidstate.cc/skills/open-feishu-cn-lark-attendance): Lark Attendance — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Lark Contact](https://solidstate.cc/skills/open-feishu-cn-lark-contact): Lark Contact — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Lark Openapi Explorer](https://solidstate.cc/skills/open-feishu-cn-lark-openapi-explorer): Lark Openapi Explorer — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Lark Event](https://solidstate.cc/skills/open-feishu-cn-lark-event): Lark Event — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Lark Minutes](https://solidstate.cc/skills/open-feishu-cn-lark-minutes): Lark Minutes — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Lark Mail](https://solidstate.cc/skills/open-feishu-cn-lark-mail): Lark Mail — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Lark Sheets](https://solidstate.cc/skills/open-feishu-cn-lark-sheets): Lark Sheets — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Lark Whiteboard](https://solidstate.cc/skills/open-feishu-cn-lark-whiteboard): Lark Whiteboard — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Lark Skill Maker](https://solidstate.cc/skills/open-feishu-cn-lark-skill-maker): Lark Skill Maker — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Lark Task](https://solidstate.cc/skills/open-feishu-cn-lark-task): Lark Task — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Lark Wiki](https://solidstate.cc/skills/open-feishu-cn-lark-wiki): Lark Wiki — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Lark Slides](https://solidstate.cc/skills/open-feishu-cn-lark-slides): Lark Slides — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Lark VC](https://solidstate.cc/skills/open-feishu-cn-lark-vc): Lark VC — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Lark Workflow Standup Report](https://solidstate.cc/skills/open-feishu-cn-lark-workflow-standup-report): Lark Workflow Standup Report — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Lark Workflow Meeting Summary](https://solidstate.cc/skills/open-feishu-cn-lark-workflow-meeting-summary): Lark Workflow Meeting Summary — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Lark Slides](https://solidstate.cc/skills/larksuite-cli-lark-slides): Lark Slides — open agent skill from larksuite/cli. Indexed from skills.sh. - [Lark Attendance](https://solidstate.cc/skills/larksuite-cli-lark-attendance): Lark Attendance — open agent skill from larksuite/cli. Indexed from skills.sh. - [Vercel React Native Skills](https://solidstate.cc/skills/vercel-labs-agent-skills-vercel-react-native-skills): Vercel React Native Skills — open agent skill from vercel-labs/agent-skills. Indexed from skills.sh. - [Develop Userscripts](https://solidstate.cc/skills/xixu-me-skills-develop-userscripts): Develop Userscripts — open agent skill from xixu-me/skills. Indexed from skills.sh. - [Kling 3 0](https://solidstate.cc/skills/agentspace-so-runcomfy-agent-skills-kling-3-0): Kling 3 0 — open agent skill from agentspace-so/runcomfy-agent-skills. Indexed from skills.sh. - [Pptx](https://solidstate.cc/skills/anthropics-skills-pptx): Pptx — open agent skill from anthropics/skills. Indexed from skills.sh. - [SEO Audit](https://solidstate.cc/skills/coreyhaines31-marketingskills-seo-audit): SEO Audit — open agent skill from coreyhaines31/marketingskills. Indexed from skills.sh. - [Pdf](https://solidstate.cc/skills/anthropics-skills-pdf): Pdf — open agent skill from anthropics/skills. Indexed from skills.sh. - [Using Superpowers](https://solidstate.cc/skills/obra-superpowers-using-superpowers): Using Superpowers — open agent skill from obra/superpowers. Indexed from skills.sh. - [Systematic Debugging](https://solidstate.cc/skills/obra-superpowers-systematic-debugging): Systematic Debugging — open agent skill from obra/superpowers. Indexed from skills.sh. - [Writing Plans](https://solidstate.cc/skills/obra-superpowers-writing-plans): Writing Plans — open agent skill from obra/superpowers. Indexed from skills.sh. - [Lark OKR](https://solidstate.cc/skills/larksuite-cli-lark-okr): Lark OKR — open agent skill from larksuite/cli. Indexed from skills.sh. - [Extract Design System](https://solidstate.cc/skills/arvindrk-extract-design-system-extract-design-system): Extract Design System — open agent skill from arvindrk/extract-design-system. Indexed from skills.sh. - [Lark OKR](https://solidstate.cc/skills/open-feishu-cn-lark-okr): Lark OKR — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Codex Pet](https://solidstate.cc/skills/agentspace-so-runcomfy-agent-skills-codex-pet): Codex Pet — open agent skill from agentspace-so/runcomfy-agent-skills. Indexed from skills.sh. - [Copywriting](https://solidstate.cc/skills/coreyhaines31-marketingskills-copywriting): Copywriting — open agent skill from coreyhaines31/marketingskills. Indexed from skills.sh. - [Caveman Commit](https://solidstate.cc/skills/juliusbrussee-caveman-caveman-commit): Caveman Commit — open agent skill from juliusbrussee/caveman. Indexed from skills.sh. - [Caveman Review](https://solidstate.cc/skills/juliusbrussee-caveman-caveman-review): Caveman Review — open agent skill from juliusbrussee/caveman. Indexed from skills.sh. - [Caveman Compress](https://solidstate.cc/skills/juliusbrussee-caveman-caveman-compress): Caveman Compress — open agent skill from juliusbrussee/caveman. Indexed from skills.sh. - [Docx](https://solidstate.cc/skills/anthropics-skills-docx): Docx — open agent skill from anthropics/skills. Indexed from skills.sh. - [Prototype](https://solidstate.cc/skills/mattpocock-skills-prototype): Prototype — open agent skill from mattpocock/skills. Indexed from skills.sh. - [Caveman Help](https://solidstate.cc/skills/juliusbrussee-caveman-caveman-help): Caveman Help — open agent skill from juliusbrussee/caveman. Indexed from skills.sh. - [Requesting Code Review](https://solidstate.cc/skills/obra-superpowers-requesting-code-review): Requesting Code Review — open agent skill from obra/superpowers. Indexed from skills.sh. - [Test Driven Development](https://solidstate.cc/skills/obra-superpowers-test-driven-development): Test Driven Development — open agent skill from obra/superpowers. Indexed from skills.sh. - [Lark Markdown](https://solidstate.cc/skills/open-feishu-cn-lark-markdown): Lark Markdown — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Azure Observability](https://solidstate.cc/skills/microsoft-azure-skills-azure-observability): Azure Observability — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Next Best Practices](https://solidstate.cc/skills/vercel-labs-next-skills-next-best-practices): Next Best Practices — open agent skill from vercel-labs/next-skills. Indexed from skills.sh. - [Xlsx](https://solidstate.cc/skills/anthropics-skills-xlsx): Xlsx — open agent skill from anthropics/skills. Indexed from skills.sh. - [Supabase](https://solidstate.cc/skills/supabase-agent-skills-supabase): Supabase — open agent skill from supabase/agent-skills. Indexed from skills.sh. - [Lark Markdown](https://solidstate.cc/skills/larksuite-cli-lark-markdown): Lark Markdown — open agent skill from larksuite/cli. Indexed from skills.sh. - [AI Image Generation](https://solidstate.cc/skills/agentspace-so-runcomfy-agent-skills-ai-image-generation): AI Image Generation — open agent skill from agentspace-so/runcomfy-agent-skills. Indexed from skills.sh. - [AI Video Generation](https://solidstate.cc/skills/agentspace-so-runcomfy-agent-skills-ai-video-generation): AI Video Generation — open agent skill from agentspace-so/runcomfy-agent-skills. Indexed from skills.sh. - [Runcomfy CLI](https://solidstate.cc/skills/agentspace-so-runcomfy-agent-skills-runcomfy-cli): Runcomfy CLI — open agent skill from agentspace-so/runcomfy-agent-skills. Indexed from skills.sh. - [AI Avatar Video](https://solidstate.cc/skills/agentspace-so-runcomfy-agent-skills-ai-avatar-video): AI Avatar Video — open agent skill from agentspace-so/runcomfy-agent-skills. Indexed from skills.sh. - [Subagent Driven Development](https://solidstate.cc/skills/obra-superpowers-subagent-driven-development): Subagent Driven Development — open agent skill from obra/superpowers. Indexed from skills.sh. - [Elevenlabs Music Generation](https://solidstate.cc/skills/agentspace-so-runcomfy-agent-skills-elevenlabs-music-generation): Elevenlabs Music Generation — open agent skill from agentspace-so/runcomfy-agent-skills. Indexed from skills.sh. - [Verification Before Completion](https://solidstate.cc/skills/obra-superpowers-verification-before-completion): Verification Before Completion — open agent skill from obra/superpowers. Indexed from skills.sh. - [Design Taste Frontend](https://solidstate.cc/skills/leonxlnx-taste-skill-design-taste-frontend): Design Taste Frontend — open agent skill from leonxlnx/taste-skill. Indexed from skills.sh. - [Polish](https://solidstate.cc/skills/pbakaus-impeccable-polish): Polish — open agent skill from pbakaus/impeccable. Indexed from skills.sh. - [Receiving Code Review](https://solidstate.cc/skills/obra-superpowers-receiving-code-review): Receiving Code Review — open agent skill from obra/superpowers. Indexed from skills.sh. - [Critique](https://solidstate.cc/skills/pbakaus-impeccable-critique): Critique — open agent skill from pbakaus/impeccable. Indexed from skills.sh. - [Just Scrape](https://solidstate.cc/skills/scrapegraphai-just-scrape-just-scrape): Just Scrape — open agent skill from scrapegraphai/just-scrape. Indexed from skills.sh. - [Writing Skills](https://solidstate.cc/skills/obra-superpowers-writing-skills): Writing Skills — open agent skill from obra/superpowers. Indexed from skills.sh. - [Webapp Testing](https://solidstate.cc/skills/anthropics-skills-webapp-testing): Webapp Testing — open agent skill from anthropics/skills. Indexed from skills.sh. - [Marketing Psychology](https://solidstate.cc/skills/coreyhaines31-marketingskills-marketing-psychology): Marketing Psychology — open agent skill from coreyhaines31/marketingskills. Indexed from skills.sh. - [Audit](https://solidstate.cc/skills/pbakaus-impeccable-audit): Audit — open agent skill from pbakaus/impeccable. Indexed from skills.sh. - [Dispatching Parallel Agents](https://solidstate.cc/skills/obra-superpowers-dispatching-parallel-agents): Dispatching Parallel Agents — open agent skill from obra/superpowers. Indexed from skills.sh. - [Using Git Worktrees](https://solidstate.cc/skills/obra-superpowers-using-git-worktrees): Using Git Worktrees — open agent skill from obra/superpowers. Indexed from skills.sh. - [Ace Step](https://solidstate.cc/skills/agentspace-so-runcomfy-agent-skills-ace-step): Ace Step — open agent skill from agentspace-so/runcomfy-agent-skills. Indexed from skills.sh. - [Bolder](https://solidstate.cc/skills/pbakaus-impeccable-bolder): Bolder — open agent skill from pbakaus/impeccable. Indexed from skills.sh. - [AI Music](https://solidstate.cc/skills/agentspace-so-runcomfy-agent-skills-ai-music): AI Music — open agent skill from agentspace-so/runcomfy-agent-skills. Indexed from skills.sh. - [Delight](https://solidstate.cc/skills/pbakaus-impeccable-delight): Delight — open agent skill from pbakaus/impeccable. Indexed from skills.sh. - [Distill](https://solidstate.cc/skills/pbakaus-impeccable-distill): Distill — open agent skill from pbakaus/impeccable. Indexed from skills.sh. - [Airunway AKS Setup](https://solidstate.cc/skills/microsoft-azure-skills-airunway-aks-setup): Airunway AKS Setup — open agent skill from microsoft/azure-skills. Indexed from skills.sh. - [Quieter](https://solidstate.cc/skills/pbakaus-impeccable-quieter): Quieter — open agent skill from pbakaus/impeccable. Indexed from skills.sh. - [Finishing A Development Branch](https://solidstate.cc/skills/obra-superpowers-finishing-a-development-branch): Finishing A Development Branch — open agent skill from obra/superpowers. Indexed from skills.sh. - [Lark VC Agent](https://solidstate.cc/skills/open-feishu-cn-lark-vc-agent): Lark VC Agent — open agent skill from open.feishu.cn. Indexed from skills.sh. - [Content Strategy](https://solidstate.cc/skills/coreyhaines31-marketingskills-content-strategy): Content Strategy — open agent skill from coreyhaines31/marketingskills. Indexed from skills.sh. - [Browser Use](https://solidstate.cc/skills/browser-use-browser-use-browser-use): Browser Use — open agent skill from browser-use/browser-use. Indexed from skills.sh. - [Programmatic SEO](https://solidstate.cc/skills/coreyhaines31-marketingskills-programmatic-seo): Programmatic SEO — open agent skill from coreyhaines31/marketingskills. Indexed from skills.sh. - [High End Visual Design](https://solidstate.cc/skills/leonxlnx-taste-skill-high-end-visual-design): High End Visual Design — open agent skill from leonxlnx/taste-skill. Indexed from skills.sh. - [Hyperframes](https://solidstate.cc/skills/heygen-com-hyperframes-hyperframes): Hyperframes — open agent skill from heygen-com/hyperframes. Indexed from skills.sh. - [Marketing Ideas](https://solidstate.cc/skills/coreyhaines31-marketingskills-marketing-ideas): Marketing Ideas — open agent skill from coreyhaines31/marketingskills. Indexed from skills.sh. - [Redesign Existing Projects](https://solidstate.cc/skills/leonxlnx-taste-skill-redesign-existing-projects): Redesign Existing Projects — open agent skill from leonxlnx/taste-skill. Indexed from skills.sh. - [Emil Design Eng](https://solidstate.cc/skills/emilkowalski-skill-emil-design-eng): Emil Design Eng — open agent skill from emilkowalski/skill. Indexed from skills.sh. - [Hyperframes CLI](https://solidstate.cc/skills/heygen-com-hyperframes-hyperframes-cli): Hyperframes CLI — open agent skill from heygen-com/hyperframes. Indexed from skills.sh. - [GSAP](https://solidstate.cc/skills/heygen-com-hyperframes-gsap): GSAP — open agent skill from heygen-com/hyperframes. Indexed from skills.sh. - [Copy Editing](https://solidstate.cc/skills/coreyhaines31-marketingskills-copy-editing): Copy Editing — open agent skill from coreyhaines31/marketingskills. Indexed from skills.sh. - [Minimalist UI](https://solidstate.cc/skills/leonxlnx-taste-skill-minimalist-ui): Minimalist UI — open agent skill from leonxlnx/taste-skill. Indexed from skills.sh. - [Website To Hyperframes](https://solidstate.cc/skills/heygen-com-hyperframes-website-to-hyperframes): Website To Hyperframes — open agent skill from heygen-com/hyperframes. Indexed from skills.sh. - [Hyperframes Registry](https://solidstate.cc/skills/heygen-com-hyperframes-hyperframes-registry): Hyperframes Registry — open agent skill from heygen-com/hyperframes. Indexed from skills.sh. - [Firebase Basics](https://solidstate.cc/skills/firebase-agent-skills-firebase-basics): Firebase Basics — open agent skill from firebase/agent-skills. Indexed from skills.sh. - [Social Content](https://solidstate.cc/skills/coreyhaines31-marketingskills-social-content): Social Content — open agent skill from coreyhaines31/marketingskills. Indexed from skills.sh. - [Firebase Auth Basics](https://solidstate.cc/skills/firebase-agent-skills-firebase-auth-basics): Firebase Auth Basics — open agent skill from firebase/agent-skills. Indexed from skills.sh. - [Lark VC Agent](https://solidstate.cc/skills/larksuite-cli-lark-vc-agent): Lark VC Agent — open agent skill from larksuite/cli. Indexed from skills.sh. - [Full Output Enforcement](https://solidstate.cc/skills/leonxlnx-taste-skill-full-output-enforcement): Full Output Enforcement — open agent skill from leonxlnx/taste-skill. Indexed from skills.sh. - [Firebase Hosting Basics](https://solidstate.cc/skills/firebase-agent-skills-firebase-hosting-basics): Firebase Hosting Basics — open agent skill from firebase/agent-skills. Indexed from skills.sh. - [Typeset](https://solidstate.cc/skills/pbakaus-impeccable-typeset): Typeset — open agent skill from pbakaus/impeccable. Indexed from skills.sh. - [Firebase App Hosting Basics](https://solidstate.cc/skills/firebase-agent-skills-firebase-app-hosting-basics): Firebase App Hosting Basics — open agent skill from firebase/agent-skills. Indexed from skills.sh. - [Firebase Data Connect](https://solidstate.cc/skills/firebase-agent-skills-firebase-data-connect): Firebase Data Connect — open agent skill from firebase/agent-skills. Indexed from skills.sh. - [MCP Builder](https://solidstate.cc/skills/anthropics-skills-mcp-builder): MCP Builder — open agent skill from anthropics/skills. Indexed from skills.sh. - [Canvas Design](https://solidstate.cc/skills/anthropics-skills-canvas-design): Canvas Design — open agent skill from anthropics/skills. Indexed from skills.sh. - [Industrial Brutalist UI](https://solidstate.cc/skills/leonxlnx-taste-skill-industrial-brutalist-ui): Industrial Brutalist UI — open agent skill from leonxlnx/taste-skill. Indexed from skills.sh. - [Overdrive](https://solidstate.cc/skills/pbakaus-impeccable-overdrive): Overdrive — open agent skill from pbakaus/impeccable. Indexed from skills.sh. - [Stitch Design Taste](https://solidstate.cc/skills/leonxlnx-taste-skill-stitch-design-taste): Stitch Design Taste — open agent skill from leonxlnx/taste-skill. Indexed from skills.sh. - [Cavecrew](https://solidstate.cc/skills/juliusbrussee-caveman-cavecrew): Cavecrew — open agent skill from juliusbrussee/caveman. Indexed from skills.sh. - [Firecrawl](https://solidstate.cc/skills/firecrawl-cli-firecrawl): Firecrawl — open agent skill from firecrawl/cli. Indexed from skills.sh. - [Caveman Stats](https://solidstate.cc/skills/juliusbrussee-caveman-caveman-stats): Caveman Stats — open agent skill from juliusbrussee/caveman. Indexed from skills.sh. - [AI SEO](https://solidstate.cc/skills/coreyhaines31-marketingskills-ai-seo): AI SEO — open agent skill from coreyhaines31/marketingskills. Indexed from skills.sh. - [Developing Genkit JS](https://solidstate.cc/skills/firebase-agent-skills-developing-genkit-js): Developing Genkit JS — open agent skill from firebase/agent-skills. Indexed from skills.sh. - [Developing Genkit Dart](https://solidstate.cc/skills/firebase-agent-skills-developing-genkit-dart): Developing Genkit Dart — open agent skill from firebase/agent-skills. Indexed from skills.sh. - [Product Marketing Context](https://solidstate.cc/skills/coreyhaines31-marketingskills-product-marketing-context): Product Marketing Context — open agent skill from coreyhaines31/marketingskills. Indexed from skills.sh. - [Self-Improving Agent](https://solidstate.cc/skills/clawhub-self-improving-agent): Captures learnings, errors, and corrections to enable continuous improvement of the agent. - [Skill Vetter](https://solidstate.cc/skills/clawhub-skill-vetter): Security-first skill vetting for AI agents. Checks red flags, permission scope, suspicious patterns before install. - [Self-Improving + Proactive Agent](https://solidstate.cc/skills/clawhub-self-improving): Self-reflection, self-criticism, self-learning and self-organizing memory for agents. - [ontology](https://solidstate.cc/skills/clawhub-ontology): Typed knowledge graph for structured agent memory and composable skills. - [Github](https://solidstate.cc/skills/clawhub-github): Interact with GitHub using the gh CLI: issues, PRs, CI runs, and gh api queries. - [Gog](https://solidstate.cc/skills/clawhub-gog): Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs. - [Proactive Agent](https://solidstate.cc/skills/clawhub-proactive-agent): Turns agents into proactive partners. WAL protocol, working buffer, autonomous crons. - [Weather](https://solidstate.cc/skills/clawhub-weather): Get current weather and forecasts (no API key required). - [Multi Search Engine](https://solidstate.cc/skills/clawhub-multi-search-engine): 16-engine search (7 CN + 9 global) with operators, time filters, privacy engines. - [Humanizer](https://solidstate.cc/skills/clawhub-humanizer): Remove signs of AI-generated writing based on Wikipedia's Signs of AI Writing guide. - [Agent Browser](https://solidstate.cc/skills/clawhub-agent-browser-clawdbot): Headless browser automation CLI for agents with accessibility-tree snapshots and ref-based selection. - [Nano Pdf](https://solidstate.cc/skills/clawhub-nano-pdf): Edit PDFs with natural-language instructions using the nano-pdf CLI. - [Nano Banana Pro](https://solidstate.cc/skills/clawhub-nano-banana-pro): Generate/edit images with Nano Banana Pro (Gemini 3 Pro Image). Text-to-image and image-to-image. - [Obsidian](https://solidstate.cc/skills/clawhub-obsidian): Work with Obsidian vaults (plain Markdown notes) and automate via obsidian-cli. - [Tavily Search (CN)](https://solidstate.cc/skills/clawhub-openclaw-tavily-search): Web search via Tavily API (alternative to Brave) with brave-like structured output. - [Auto-Updater Skill](https://solidstate.cc/skills/clawhub-auto-updater): Automatically update Clawdbot and all installed skills once daily via cron. - [Notion](https://solidstate.cc/skills/clawhub-notion): Notion API for creating and managing pages, databases, and blocks. - [Baidu web search](https://solidstate.cc/skills/clawhub-baidu-search): Search the web using Baidu AI Search Engine (BDSE). - [Skill Creator](https://solidstate.cc/skills/clawhub-skill-creator): Guide for creating effective skills that extend an agent with workflows or tool integrations. - [Sonoscli](https://solidstate.cc/skills/clawhub-sonoscli): Control Sonos speakers (discover/status/play/volume/group). - [Openai Whisper](https://solidstate.cc/skills/clawhub-openai-whisper): Local speech-to-text with the Whisper CLI (no API key). - [API Gateway](https://solidstate.cc/skills/clawhub-api-gateway): Connect to external services through Maton-managed API routes. - [Word / DOCX](https://solidstate.cc/skills/clawhub-word-docx): Create, inspect, and edit Word/DOCX files with styles, numbering, tracked changes, tables. - [Automation Workflows](https://solidstate.cc/skills/clawhub-automation-workflows): Design and implement no-code automation workflows (Zapier, Make, n8n) for solopreneurs. - [Excel / XLSX](https://solidstate.cc/skills/clawhub-excel-xlsx): Create, inspect, and edit Excel/XLSX files with formulas, dates, formatting, recalculation. - [Mcporter](https://solidstate.cc/skills/clawhub-mcporter): Use the mcporter CLI to list, configure, auth, and call MCP servers/tools directly. - [Elite Longterm Memory](https://solidstate.cc/skills/clawhub-elite-longterm-memory): Agent memory system: WAL protocol + vector search + git-notes + cloud backup. - [Brave Search](https://solidstate.cc/skills/clawhub-brave-search): Web search and content extraction via Brave Search API. Lightweight, no browser. - [Desktop Control](https://solidstate.cc/skills/clawhub-desktop-control): Advanced desktop automation with mouse, keyboard, and screen control. - [Stock Analysis](https://solidstate.cc/skills/clawhub-stock-analysis): Analyze stocks and crypto via Yahoo Finance: portfolios, watchlists, scoring, trend detection. - [YouTube Watcher](https://solidstate.cc/skills/clawhub-youtube-watcher): Fetch and read YouTube transcripts to summarize or answer questions about videos. - [Video Frames](https://solidstate.cc/skills/clawhub-video-frames): Extract frames or short clips from videos using ffmpeg. - [Find Skills Skill](https://solidstate.cc/skills/clawhub-find-skills-skill): Search and discover OpenClaw skills across ClawHub, directories, GitHub, and forums. - [imap-smtp-email](https://solidstate.cc/skills/clawhub-imap-smtp-email): Read and send email via IMAP/SMTP: unread, fetch, search, mark read, send with attachments. - [Slack](https://solidstate.cc/skills/clawhub-slack): Control Slack from Clawdbot: react to messages, pin/unpin items in channels or DMs. - [Powerpoint / PPTX](https://solidstate.cc/skills/clawhub-powerpoint-pptx): Create, inspect, and edit PowerPoint/PPTX decks with layouts, templates, notes, charts. - [Browser Automation](https://solidstate.cc/skills/clawhub-browser-automation): Automate browser interactions via natural-language CLI: navigate, extract, screenshot, fill forms. - [Himalaya](https://solidstate.cc/skills/clawhub-himalaya): CLI to manage email via IMAP/SMTP: list, read, write, reply, forward, search, organize. - [Browser Use](https://solidstate.cc/skills/clawhub-browser-use): Automate browser interactions for testing, form filling, screenshots, and data extraction. - [Memory Setup](https://solidstate.cc/skills/clawhub-memory-setup): Enable and configure Clawdbot memory search (MEMORY.md, daily logs, vector search).