Remote OpenClaw
Menu
SkillsMCPPluginsFree guideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Remote OpenClaw
SkillsMCPPluginsFree guideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise

Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Skills/jezweb/claude-skills/deep-research
deep-research logo

deep-research

jezweb/claude-skills
796 installs860 stars
Run it on Hostinger →up to 70% off + an extra 10% with code ZACAARON10Free API →

Installation

npx skills add https://github.com/jezweb/claude-skills --skill deep-research

Summary

Deep research and discovery before building something new. Explores local projects for reusable code, researches competitors, reads forums and reviews, analyses plugin ecosystems, investigates technical options, and produces a comprehensive research brief. Three depths: focused (30 min), wide (1-2 hours), deep (3-6 hours). Triggers: 'research this', 'discovery', 'explore the space', 'what should I build', 'competitive analysis', 'before I start building', 'research before coding'. Not for cited fact-checking research reports (a separate harness does those); this is pre-build product discovery.

SKILL.md

Deep Research

Comprehensive research and discovery before building something new. Instead of jumping straight into code from training data, this skill goes wide and deep — local exploration, web research, competitor analysis, ecosystem signals, future-casting — and produces a research brief that makes the actual build 10x more productive.

Depth Levels

The difference is scope of ambition, not just time.

DepthPurposeScope
focusedAnswer a specific questionOne decision: "CodeMirror vs ProseMirror?" — targeted search, local scan, 1-2 comparisons. Produces a 1-page recommendation.
wideUnderstand the spaceLandscape for a new product or feature. Competitors, ecosystem, user needs, architecture options. Enough to write a spec.
deepPlan a major buildLeave no stone unturned. Everything in wide PLUS library/component research, plugin ecosystems, GitHub issues mining, community sentiment, future-casting, technical deep-dives on every decision. Enough to drive weeks of coding.

Default: wide

Workflow

1. Understand the Intent

Ask the user:

  • What are you building? (one sentence)
  • Why? What problem does it solve? Who's it for?
  • Constraints? Stack preferences, budget, timeline, must-haves?
  • Existing work? Any projects to build on? Repos to look at?

If the user gives a brief prompt ("obsidian replacement on cloudflare"), that's enough — fill in the gaps through research.

2. Local Exploration

Scan the user's machine for relevant prior work:

# Find related projects by name/keyword
ls ~/Documents/ | grep -i "KEYWORD"

# Read CLAUDE.md of related projects for architecture context
find ~/Documents -maxdepth 2 -name "CLAUDE.md" -exec grep -l "KEYWORD" {} \;

# Check for reusable patterns, schemas, components
find ~/Documents -maxdepth 3 -name "schema.ts" -o -name "ARCHITECTURE.md" | head -20

For each related project found:

  • Read CLAUDE.md (stack, architecture, gotchas)
  • Check for reusable code (schemas, components, utilities, configs)
  • Note what worked well and what didn't (from git history, TODO comments)

Also check:

  • Basalt Cortex (~/Documents/basalt-cortex/) for related clients, contacts, knowledge facts
  • grep -rl "KEYWORD" ~/Documents/basalt-cortex/ --include="*.md"

3. Web Research

Search broadly to understand the space:

  • Product category: "markdown note app", "knowledge management tool for teams"
  • Competitors: find top 5-10 by searching "best X", "X alternatives", "X vs Y"
  • Open source: search GitHub for open-source alternatives, check star counts
  • Architecture: "how to build X", "X tech stack", "building X with [framework]"
  • Technology docs: check llms.txt, official docs for key technologies
  • Platform examples: "built with Cloudflare Workers", "D1 full-text search example"
  • Tutorials and case studies: "building a Y from scratch", "lessons learned building Z"

4. Ecosystem and Community Research (wide + deep)

Go beyond the core product — the ecosystem reveals what users actually need:

Plugins and add-ons:

  • What plugins exist for major competitors? The most popular ones reveal what the core product lacks.
  • e.g. Obsidian has 1800+ plugins — the top 20 tell you what Obsidian doesn't do well natively.
  • Search: "top [product] plugins", "[product] plugin directory"

GitHub issues and feature requests:

  • Check top competitors' GitHub repos for most-upvoted issues
  • Sort by thumbs-up reactions — this is direct user demand signal
  • Check closed issues for how features were implemented

Forum discussions:

  • Reddit: r/[product], r/selfhosted, r/webdev, relevant niche subreddits
  • Hacker News: search for the product category
  • Discord/Discourse: product-specific communities
  • What do users love? What do they complain about? What do they wish existed?

App store and review sites:

  • 1-star reviews = unmet needs (the product fails at this)
  • 5-star reviews = what to preserve (users love this, don't break it)
  • 3-star reviews = the interesting middle (it's okay but...)
  • Search: ProductHunt, G2, Capterra, App Store reviews

Integration requests:

  • What systems do users want to connect to? (Zapier integrations, API requests)
  • These reveal real workflows — users duct-tape tools together

5. Competitor Deep-Dive (wide + deep)

For each major competitor (3-5 for wide, 5-10 for deep):

QuestionHow to research
FeaturesLanding page, docs, changelog
PricingPricing page, comparison sites
User complaintsReddit, HN, app store reviews
Tech stackWappalyzer, view-source, job postings, blog posts
What they do well5-star reviews, product demos
What they do poorly1-star reviews, forum complaints, migration guides FROM the product
Documentation qualityRead their docs site — is it comprehensive? What topics need the most explanation? (Complex topics = things users struggle with)
Help/support contentHelp centre, FAQ, knowledge base, support forums — what questions do users ask most?
Onboarding/tutorialsGetting started guides, video tutorials, interactive walkthroughs — how do they teach their product? What do they assume the user already knows?
API documentationIf they have an API — how well documented? What patterns do they use? What SDKs do they provide?
Migration guidesDo they have "switch from X" guides? These reveal what they consider their advantages AND what users find hard to switch from

6. Library and Component Research (deep mode)

Research the building blocks — what already exists that you can use or learn from:

React / UI libraries:

  • Search npm for category-specific packages ("react markdown editor", "react kanban", "react data table")
  • Check weekly downloads, last publish date, GitHub stars, open issues count
  • Read the README and examples — what patterns do they use?
  • Check bundle size (bundlephobia.com) — does it fit the project constraints?
  • Look at the source code of the best ones — their architecture is proven by real usage

Headless / unstyled libraries:

  • Headless UI, Radix, React Aria, Downshift — what primitives exist for the features you need?
  • These are often better than full component libraries because you control the styling
  • Check if shadcn/ui already wraps what you need

Hooks and utilities:

  • TanStack (Query, Table, Virtual, Router) — what's relevant?
  • React Hook Form, Zod, date-fns, Zustand — proven solutions for common problems
  • Search "awesome-react" lists and curated collections

Platform-specific libraries:

  • For Cloudflare: what works on Workers? (No Node.js APIs, no native modules)
  • Check Cloudflare's own examples and starter templates
  • Search for "cloudflare workers" + the feature you need

What to capture for each library:

QuestionWhy it matters
Does it solve our problem?Feature match
Bundle sizePerformance budget
Last publish dateIs it maintained?
Open issues / PRsCommunity health
Works on our platform?Cloudflare Workers has restrictions
What patterns does it use?Even if we don't use the library, its patterns are valuable

The insight: Even if you decide to build something custom, researching existing libraries shows you the patterns that survived contact with real users. A library with 10K stars has had its API refined by thousands of developers — steal their design decisions.

7. Platform Capability Deep-Dive (wide + deep)

This is critical. Claude's training data is always behind on platform features. Cloudflare, Vercel, Firebase, Supabase — they all ship new capabilities constantly. A feature you assume doesn't exist might have launched last month. The Basalt Cortex project exists because of capabilities (Workers AI toMarkdown, Vectorize metadata filtering, D1 FTS5) that weren't obvious without actively looking.

Do NOT rely on training data for platform capabilities. Go read the actual current docs.

How to Research the Platform
  1. Fetch the platform's changelog/blog:
  • Cloudflare: https://blog.cloudflare.com/ + https://developers.cloudflare.com/changelog/
  • Vercel: https://vercel.com/changelog
  • Firebase: https://firebase.google.com/support/releases
  • Supabase: https://supabase.com/changelog
  1. Read the full product catalogue — not just the services you already use:
  • Cloudflare: Workers, D1, R2, KV, Vectorize, Queues, Durable Objects, Workers AI, AI Gateway, Workflows, Containers, Browser Rendering, Tunnel, Email Routing, Images, Stream, Hyperdrive, Pipelines, Sandbox
  • Vercel: Functions, Edge Middleware, KV, Postgres, Blob, AI SDK, Cron, Firewall
  • Firebase: Firestore, Auth, Storage, Functions, Hosting, Extensions, Genkit, App Check
  1. For each service, ask: could this solve a problem in the product we're building?
  1. Look for recently shipped features that expand what's possible:
  • New AI models available at the edge?
  • New storage primitives?
  • New networking capabilities?
  • New auth/identity features?
  • New build/deploy options?
Cloudflare Capability Checklist (Expand for Other Platforms)

Go through each and ask "would this be useful for what we're building?":

CategoryServices to investigate
ComputeWorkers, Cron Triggers, Queues consumers, Workflows (multi-step), Containers, Durable Objects (stateful), Tail Workers
StorageD1 (SQL + FTS5), R2 (objects), KV (key-value), Durable Object storage (strongly consistent)
AIWorkers AI models (text, image, embedding, speech, translation, toMarkdown), Vectorize (semantic search), AI Gateway (caching/routing)
NetworkingCustom domains, Tunnel, Spectrum (TCP/UDP), WebSockets, Hyperdrive (database proxy)
SecurityWAF, Turnstile (CAPTCHA), Bot Management, API Shield, DDoS
MediaImages (resize/optimise on-the-fly), Stream (video), Browser Rendering (screenshots, PDF generation)
EmailEmail Routing (rules), Email Workers (programmable inbound email processing)
ObservabilityWorkers Logs, Analytics Engine, GraphQL analytics
What to Capture

For each relevant capability, note:

  • What it does (one sentence)
  • How it could be used in this product
  • Any limitations or pricing considerations
  • Example: "Workers AI toMarkdown() converts any uploaded PDF/DOCX to markdown at the edge — we could use this for document import without any external service"
Why This Matters

The difference between "build a note app" and "build a note app that converts any file to markdown, searches semantically across all notes, generates summaries with AI, syncs via background Workflows, and renders PDFs with Browser Rendering" is knowing what the platform offers. Most developers only use 20% of their platform because they never looked at the other 80%.

8. Future-Casting (deep mode)

Think beyond what exists today:

Platform roadmap: Based on the changelog and blog research above, what direction is the platform heading? What's in beta? What was announced but not yet GA?

AI integration: Not "add a chatbot" — think deeper. What's possible when the tool can read, reason about, and act on the user's data? What if every note could be searched semantically? What if the app could write its own documentation? What if uploads auto-converted to markdown?

Device and input evolution: Mobile-first, voice input, wearables, spatial computing. How might users interact with this in 2-5 years?

Data sources: What new inputs could feed in? Sensors, APIs, real-time data, cross-app context?

Adjacent opportunities: What problems sit next to this one? e.g. building a note app — adjacent: task management, project tracking, team communication. What are users duct-taping together today?

Convergence trends: What separate tools are being unified? (Email + chat + tasks = Slack. Notes + databases + wikis = Notion. What's next?)

9. Technical Research (deep mode)

For each major architectural decision:

Decision areaQuestions to answer
Editor / UI frameworkOptions, tradeoffs, community size, our experience
DatabaseSQL vs NoSQL vs file, managed vs self-hosted, our stack support
AuthBetter-auth, Clerk, Auth.js, custom — what fits?
Hosting / deploymentCloudflare, Vercel, Railway — constraints and capabilities
SearchFTS5, Elasticsearch, Meilisearch, Vectorize — what scale?
Real-timeWebSockets, SSE, Durable Objects — do we need it?
File storageR2, S3, local — access patterns?
API designREST, tRPC, GraphQL — what does the use case need?

10. Synthesis

Produce a research brief saved to .jez/artifacts/research-brief-{topic}.md:

# Research Brief: [Topic]
**Depth**: [focused|wide|deep]
**Date**: YYYY-MM-DD
**Research time**: [duration]

## Executive Summary
[2-3 sentences: what to build, why, key insight from research]

## Competitive Landscape
| Product | Strengths | Weaknesses | Pricing | Users |

### Key Insights
[What winners do well, what gaps exist in the market]

## Ecosystem Signals
### Most Popular Plugins/Add-ons
[Top plugins for competitors — reveals unmet needs]
### Most Requested Features
[From GitHub issues, forums, reviews — sorted by demand]
### Integration Patterns
[What systems users connect to — reveals real workflows]

## User Needs
[What real users want, from reviews/forums/complaints]

## Technical Landscape
| Decision | Options | Recommendation | Why |

## Libraries and Components
| Need | Library | Stars | Size | Fits platform? | Notes |
[Key libraries evaluated for each major feature]

## Platform Capabilities
| Service | Could use for | Impact |
[Every platform service evaluated against the product's needs]
[Flag recently shipped features the team may not know about]

## Reusable From Existing Projects
| Project | What to reuse | Location |

## Future Possibilities
### Platform roadmap
### AI opportunities
### Adjacent problems
### 2-5 year horizon

## Proposed Architecture
[Stack, data model sketch, key flows]

## Risks and Open Questions
[Things research couldn't answer]

## Suggested Phases
[Build order based on research findings]

## Sources
[Links to everything read]

Tips

  • Start the brief early and add to it as you research — the artifact is the deliverable
  • For deep mode, use sub-agents to parallelise web research and local exploration
  • The "Reusable From Existing Projects" section often saves weeks of work
  • Ecosystem signals (plugins, issues, reviews) are often more valuable than competitor feature lists
  • Save the brief to .jez/artifacts/ — it's useful for future sessions and for the actual build phase
  • The brief is a living document — update it as you learn more during the build

Score

0–100
63/ 100

Grade

C

Popularity15/30

796 installs — growing adoption.

Completeness27/30

Documented: full SKILL.md body, description, one-line install. Missing: category/license metadata.

Trust15/25

Community skill with a public GitHub source repository you can review.

Freshness6/15

No update timestamp is tracked for this skill in our catalog.

Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.

Proud of your score? Add this badge to your README.

Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.

Deep Research skill score badge previewScore badge

Markdown

[![Deep Research skill](https://www.remoteopenclaw.com/skills/jezweb/claude-skills/deep-research/badges/score.svg)](https://www.remoteopenclaw.com/skills/jezweb/claude-skills/deep-research)

HTML

<a href="https://www.remoteopenclaw.com/skills/jezweb/claude-skills/deep-research"><img src="https://www.remoteopenclaw.com/skills/jezweb/claude-skills/deep-research/badges/score.svg" alt="Deep Research skill"/></a>

Deep Research FAQ

How do I install the Deep Research skill?

Run “npx skills add https://github.com/jezweb/claude-skills --skill deep-research” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.

What does the Deep Research skill do?

Deep research and discovery before building something new. Explores local projects for reusable code, researches competitors, reads forums and reviews, analyses plugin ecosystems, investigates technical options, and produces a comprehensive research brief. Three depths: focused (30 min), wide (1-2 hours), deep (3-6 hours). Triggers: 'research this', 'discovery', 'explore the space', 'what should I build', 'competitive analysis', 'before I start building', 'research before coding'. Not for cited fact-checking research reports (a separate harness does those); this is pre-build product discovery. The full SKILL.md on this page shows the exact instructions the skill gives your agent.

Is the Deep Research skill free?

Yes. Deep Research is a free, open-source skill published from jezweb/claude-skills. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Deep Research work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Deep Research works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.

Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →

Categories

Data ExfiltrationPrompt InjectionCommand Execution
View on GitHub

Recommended skills

Browse all →
find-skills logo

find-skills

vercel-labs/skills

2.7M installsInstall
frontend-design logo

frontend-design

anthropics/skills

720K installsInstall
grill-me logo

grill-me

mattpocock/skills

701K installsInstall
agent-browser logo

agent-browser

vercel-labs/agent-browser

596K installsInstall
grill-with-docs logo

grill-with-docs

mattpocock/skills

594K installsInstall
vercel-react-best-practices logo

vercel-react-best-practices

vercel-labs/agent-skills

591K installsInstall

Browse

Skills by category

Frontend250Git198Data154Testing120Design105Docs103Security96Automation87Backend76Devops37Productivity29Mcp23

Related guides

Hand-picked reading to help you choose, install, and use agent skills.

GuideBest Code Review SkillsGuide10 Openclaw Skills Every Nextjs Developer NeedsGuideHow To Build Your First Openclaw Skill

Remote OpenClaw

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

The Agent Stack: weekly agent tooling digest, free.

Explore

  • Home
  • Skills Directory
  • Claude Code Skills
  • Codex Skills
  • MCP Clients
  • Marketplace
  • Hermes Ecosystem
  • Free guide
  • Learn
  • OpenClaw for Creators
  • OpenClaw for Founders
  • Blog
  • The Agent Stack (Digest)

More

  • Submit a Tool
  • Advertise
  • Playbook
  • Free Tools
  • API
  • Shipping
  • Contact
  • Terms
  • Privacy

Know a company that should advertise here? Refer them and earn 10% — up to $300 per referral.

© 2026 Remote OpenClaw
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0Featured on Uneed