AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Nimble Map Reference

skill-nimbleway-agent-skills-nimble-map · by Nimbleway

|

No reviews yet
0 installs
40 views
0.0% view→install

Install

$ agentstack add skill-nimbleway-agent-skills-nimble-map

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-nimbleway-agent-skills-nimble-map)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Nimble Map Reference? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

nimble map — reference

Discovers all URLs on a site in seconds. Returns URL metadata (url, title, description) — run extract on results to get page content. Single synchronous call — no polling required.

Table of Contents

  • [Parameters](#parameters)
  • [CLI](#cli)
  • [Python SDK](#python-sdk)
  • [Response](#response)
  • [Common patterns](#common-patterns)
  • [Map vs Crawl](#map-vs-crawl)

Parameters

| Parameter | CLI flag | Type | Default | Description | | --------------- | ----------------- | ------ | --------- | ------------------------------------------------------------------------------------ | | url | --url | string | required | Starting URL | | limit | --limit | int | 100 | Max URLs returned (1–100,000) | | sitemap | --sitemap | string | include | include (sitemap + crawl) \| only (sitemap only, fastest) \| skip (crawl only) | | domain_filter | --domain-filter | string | — | domain (exact) \| subdomain (include subdomains) \| all (follow all links) | | country | --country | string | ALL | ISO Alpha-2 proxy location (e.g. US) | | locale | --locale | string | — | LCID locale (e.g. en-US) or auto |

CLI

nimble map --url "https://docs.example.com" --limit 100

# Sitemap only (fastest)
nimble map --url "https://example.com" --sitemap only --limit 500

# Extract just the URL list
nimble --transform "links.#.url" map --url "https://docs.example.com" --limit 100

Python SDK

from nimble_python import Nimble
nimble = Nimble(api_key=os.environ["NIMBLE_API_KEY"])

resp = nimble.map(url="https://docs.example.com", limit=100, sitemap="include")
links = resp.links  # list of link objects
urls = [l.url for l in links]

Response

| Field | Type | Description | | --------------------- | ------- | ------------------------------------ | | task_id | string | Request identifier | | success | boolean | Whether the request succeeded | | links | array | Discovered URLs | | links[].url | string | The discovered URL | | links[].title | string | Page title (if available) | | links[].description | string | Page meta description (if available) |


Common patterns

# Map → filter → extract
nimble --transform "links.#.url" map --url "https://docs.stripe.com" --limit 200 > .nimble/urls.txt
grep "charges\|refund" .nimble/urls.txt

# Specific path section
nimble map --url "https://shop.example.com/products/" --limit 200

Map vs Crawl

| | map | crawl | | -------- | ------------------------------------------- | ------------------------- | | Speed | Seconds (sync) | Minutes (async) | | Output | URL list with metadata | Full page content per URL | | Best for | Discover URLs, then selectively extract | Archive all pages at once | | LLM use | ✅ Combine with extract --format markdown | ⚠️ Returns raw HTML |

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.