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/aws/agent-toolkit-for-aws/exploring-data-catalog
exploring-data-catalog logo

exploring-data-catalog

aws/agent-toolkit-for-aws
1K installs870 stars
Run it on Hostinger →up to 70% off + an extra 10% with code ZACAARON10Free API →

Installation

npx skills add https://github.com/aws/agent-toolkit-for-aws --skill exploring-data-catalog

Summary

>-

SKILL.md

Structured inventory and cataloging across your AWS data landscape: Glue Data Catalog with S3 Tables, Redshift-federated, and remote Iceberg catalogs.

Overview

Maps data in an AWS account. Starts with catalog landscape (Glue, S3 Tables, federated), then drills into databases and tables. Read-only — no query execution.

Constraints for parameter acquisition:

  • You MUST ask for the target AWS region upfront if not provided
  • You MUST support a single optional argument: search term, catalog name, database name, S3 path, or table name
  • You MUST accept the argument as direct input or a pointer to a file containing the spec
  • You MUST confirm the scope (full landscape vs. targeted deep dive) before making API calls
  • You MUST respect the user's decision to abort at any step

Common Tasks

Pagination: All list and search calls in this workflow may return paginated results. You MUST pass --next-token from the previous response until no more tokens are returned. You MUST NOT assume a single page contains all results.

1. Verify Dependencies

Check for required tools and AWS access before discovery.

Constraints:

  • You MUST verify AWS MCP server tools are available (aws___call_aws, aws___search_documentation) and fall back to AWS CLI if not
  • You MUST confirm credentials are valid: aws sts get-caller-identity
  • You MUST inform the user about any missing tools and ask whether to proceed

2. Discover Catalogs

List catalogs in account:

aws glue get-catalogs --recursive --include-root

Classify each catalog by type:

Field PresentCatalog TypeWhat It Contains
Neither TargetRedshiftCatalog nor FederatedCatalogDefault (Glue)Standard Glue databases and tables
FederatedCatalog.ConnectionName = aws:s3tablesS3 TablesManaged Iceberg table buckets
TargetRedshiftCatalogRedshift-federatedRedshift databases exposed as Glue catalogs
FederatedCatalog with ConnectionName ≠ aws:s3tablesRemote IcebergExternal catalogs (Snowflake, Databricks, Iceberg REST)

Constraints:

  • You MUST include --include-root to capture default account catalog
  • You MUST present summary of catalog counts by type
  • If only default catalog exists, You SHOULD skip catalog overview and go to step 3

3. Enumerate Databases and Tables

For each catalog (or the user-specified one):

aws glue get-databases --catalog-id <catalog-id>
aws glue get-tables --database-name <db> --catalog-id <catalog-id>

For S3 Tables catalogs, also enumerate via the S3 Tables API:

aws s3tables list-table-buckets
aws s3tables list-namespaces --table-bucket-arn <arn>
aws s3tables list-tables --table-bucket-arn <arn> --namespace <ns>

Constraints:

  • You MUST flag S3 Tables not registered in Glue; You SHOULD suggest registration
  • For sub-catalogs, --catalog-id accepts the catalog name (not the ARN)
  • For the default catalog, omit --catalog-id or pass the account ID

4. Capture Details and Analyze

For each database, capture table count, formats, partitioning, and S3 locations. For each table of interest, capture column schemas, types, partition keys, SerDe format, and last access time.

You MUST report data formats in human-readable terms (Parquet, CSV, JSON), not raw SerDe class names.

See discovery-checklist.md for analysis framework.

Argument Routing

Resolve the argument in this order; stop at the first match:

  1. Starts with s3:// — S3 path (explore unregistered data, detect formats)
  2. Matches a known catalog from step 2 (get-catalogs) — deep dive into that catalog
  3. Matches a known database (get-databases) — deep dive into that database
  4. Matches a known table (get-tables) — detailed table analysis with schema and partitions
  5. No match — treat as search term (Glue search-tables)
  6. No args — full landscape discovery (catalogs, then databases and tables)

Principles

  • Start with catalog landscape, then narrow based on user interest
  • Always report catalog types — users need to know where data lives
  • Always report data formats — they drive cost and performance decisions
  • Flag stale tables and missing descriptions
  • Suggest partitioning for large unpartitioned tables
  • Summary first, details on request
  • You MUST NOT execute Athena queries (start-query-execution) during discovery; query execution belongs to querying-data-lake

Troubleshooting

ErrorCauseFix
Only sub-catalogs returned, default missing--include-root omittedRe-run get-catalogs with --include-root
Federated catalog query slow or failingNetwork call to remote source; connection misconfiguredReport connection errors clearly rather than silently skipping
S3 Tables not queryable via AthenaTables exist in S3 Tables API but not registered in GlueFlag as "not queryable"; suggest registration
get-databases/get-tables fails with catalog-idDefault catalog requires omit or account IDOmit --catalog-id or pass account ID for the default catalog

Additional Resources

  • Discovery checklist
  • AWS Glue Data Catalog API
  • S3 Tables list operations

Score

0–100
55/ 100

Grade

C

Popularity15/30

1,145 installs — growing adoption.

Completeness19/30

Documented: full SKILL.md body, one-line install. Missing: description, 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.

Exploring Data Catalog skill score badge previewScore badge

Markdown

[![Exploring Data Catalog skill](https://www.remoteopenclaw.com/skills/aws/agent-toolkit-for-aws/exploring-data-catalog/badges/score.svg)](https://www.remoteopenclaw.com/skills/aws/agent-toolkit-for-aws/exploring-data-catalog)

HTML

<a href="https://www.remoteopenclaw.com/skills/aws/agent-toolkit-for-aws/exploring-data-catalog"><img src="https://www.remoteopenclaw.com/skills/aws/agent-toolkit-for-aws/exploring-data-catalog/badges/score.svg" alt="Exploring Data Catalog skill"/></a>

Exploring Data Catalog FAQ

How do I install the Exploring Data Catalog skill?

Run “npx skills add https://github.com/aws/agent-toolkit-for-aws --skill exploring-data-catalog” 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 Exploring Data Catalog skill do?

>- The full SKILL.md on this page shows the exact instructions the skill gives your agent.

Is the Exploring Data Catalog skill free?

Yes. Exploring Data Catalog is a free, open-source skill published from aws/agent-toolkit-for-aws. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Exploring Data Catalog work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Exploring Data Catalog 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

Command Execution
View on GitHub

Recommended skills

Browse all →
firebase-data-connect logo

firebase-data-connect

firebase/agent-skills

113K installsInstall
prisma-database-setup logo

prisma-database-setup

prisma/skills

80K installsInstall
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

700K installsInstall
agent-browser logo

agent-browser

vercel-labs/agent-browser

596K installsInstall

Browse

Skills by category

Frontend250Git198Data154Testing120Design105Docs103Security96Automation87Backend76Devops37Productivity29Mcp23

Related guides

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

GuideBest Openclaw Skills 2026GuideHow To Evaluate Openclaw Skill Before InstallingGuideOpenclaw Skills Complete Guide

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