← 返回 Skills 市场
bryant22

Auto.dev – Automotive Data

作者 Bryant S · GitHub ↗ · v1.1.4 · MIT-0
cross-platform ✓ 安全检测通过
381
总下载
0
收藏
1
当前安装
8
版本数
在 OpenClaw 中安装
/install auto-dev
功能描述
Use when working with Auto.dev APIs, vehicle data, VIN decoding, car listings, vehicle photos, specs, recalls, payments, interest rates, taxes, OEM build dat...
使用说明 (SKILL.md)

Auto.dev

Automotive data for AI agents — via MCP tools, CLI commands, SDK methods, or direct API calls.

Detect Your Surface

Check in this order. Use the first one available:

1. MCP — Check if auto_decode is in your available tools. If yes: use auto_* tools for everything. Do NOT make raw HTTP calls. To install: npx @auto.dev/sdk mcp install (installs globally and configures Claude Code, Claude Desktop, Cursor, Windsurf, VS Code Copilot, Cline, Zed).

2. CLI — Run auto --version. If installed: authenticate once with auto login (OAuth — no API key needed), then use auto commands. To install: npm install -g @auto.dev/sdk or use npx @auto.dev/sdk \x3Ccommand> without installing.

3. SDK — Check if @auto.dev/sdk is in project dependencies. If yes: use typed SDK methods. See code-patterns.md for all methods. To install: npm install @auto.dev/sdk

4. Direct API — Check for AUTODEV_API_KEY env var. If not set: ask the user for it or direct them to https://auto.dev/pricing (free Starter plan).

MCP Tools

If MCP tools are available, this is your only section. Use auto_docs to look up parameters and response shapes before calling an unfamiliar endpoint.

auto_docs listings      # see all listing filters
auto_docs payments      # see payment params
auto_docs vin-decode    # see VIN decode response shape
Tool Description Plan
auto_decode Decode a VIN Starter
auto_listings Search listings with filters Starter
auto_photos Get vehicle photos Starter
auto_specs Vehicle specifications Growth
auto_build OEM build data ($0.10/call) Growth
auto_recalls Safety recalls Growth
auto_payments Payment calculations Growth
auto_apr Interest rates Growth
auto_tco Total cost of ownership Growth
auto_open_recalls Open/unresolved recalls Scale
auto_plate Plate to VIN ($0.55/call) Scale
auto_taxes Taxes and fees Scale
auto_docs Search bundled API documentation
auto_config_set Set a config value (e.g. raw: true)
auto_config_get Get a config value or list all settings

API metadata is stripped from MCP tool responses by default. Use auto_config_set with key: "raw" and value: "true" to get full responses.

If MCP tools are available, skip to Important Rules below.

CLI Quick Reference

Install: npm install -g @auto.dev/sdk (or use npx @auto.dev/sdk without installing) Authenticate once: auto login

auto decode \x3Cvin>
auto photos \x3Cvin>
auto listings --make Toyota --year 2024 --price 10000-40000 --state CA
auto specs \x3Cvin>
auto build \x3Cvin>
auto recalls \x3Cvin>
auto open-recalls \x3Cvin>
auto payments \x3Cvin> --price 35000 --zip 90210 --down-payment 5000
auto apr \x3Cvin> --year 2024 --make Honda --model Accord --zip 90210 --credit-score 750
auto tco \x3Cvin> --zip 90210
auto taxes \x3Cvin> --price 35000 --zip 90210
auto plate \x3Cstate> \x3Cplate>
auto usage
auto docs [query]        # search bundled docs
auto explore [endpoint]  # browse params and mappings

All commands support --json, --yaml, --raw, and --api-key \x3Ckey> flags.

API metadata is stripped by default — you get clean vehicle data. Use --raw to see the full API response.

auto config set raw true    # always show full responses
auto config get raw         # check current value
auto config list            # show all settings

Full CLI reference: https://docs.auto.dev/v2/cli-mcp-sdk

If CLI is available, skip to Important Rules below.

Direct API Quick Reference

Use these only when MCP and CLI are unavailable.

V2 (base: https://api.auto.dev): Authorization: Bearer {key} or ?apiKey={key} V1 (base: https://auto.dev/api): ?apikey={key} (query string only)

Endpoint Plan Required Params
GET /listings?filters Starter See v2-listings-api.md
GET /listings/{vin} Starter
GET /vin/{vin} Starter
GET /photos/{vin} Starter
GET /specs/{vin} Growth
GET /build/{vin} Growth — ($0.10/call)
GET /recalls/{vin} Growth
GET /tco/{vin} Growth
GET /payments/{vin} Growth price, zip
GET /apr/{vin} Growth year, make, model, zip, creditScore
GET /openrecalls/{vin} Scale
GET /plate/{state}/{plate} Scale — ($0.55/call)
GET /taxes/{vin} Scale

V1 supplemental (no V2 equivalent): /api/models, /api/cities, /api/zip/{zip}, /api/autosuggest/{term}

Before making any Direct API call, read the relevant reference file for full parameter names and examples. Full parameter reference: v2-listings-api.md | v2-vin-apis.md | v2-plate-api.md | v1-apis.md

Common Gotchas (All Surfaces)

These parameter names do NOT exist on the Direct API — agents hallucinate them frequently:

make=    ← use vehicle.make
model=   ← use vehicle.model
state=   ← use retailListing.state
price=   ← use retailListing.price (on /listings), or price= (on /payments, /taxes)
rows=    ← use limit
sort=    ← no sort parameter exists
_order=  ← no sort parameter exists

MCP and CLI handle these mappings automatically. This only matters for Direct API calls.

Plans & Pricing

See pricing.md for full per-call costs and upgrade links.

Plan Monthly Includes
Starter Free + data fees VIN Decode, Listings, Photos (1,000 free calls/mo)
Growth $299/mo + data fees + Specs, Recalls, TCO, Payments, APR, Build
Scale $599/mo + data fees + Open Recalls, Plate-to-VIN, Taxes & Fees

All plans charge per-call data fees on every request. Growth/Scale have no cap on volume but data fees still apply.

Important Rules

  • Before batch operations, call the endpoint once with a single item to see the actual response shape. Do not guess field names or nesting — inspect the real response first.
  • Include ALL fields from the API response unless the user explicitly says to exclude some.
  • Small results (\x3C10 items, single VIN): Display inline as formatted table
  • Large results (10+ listings): Ask user preference, default to CSV export
  • Always support: CSV, JSON export when user requests
  • Chain APIs when the query spans multiple endpoints — MCP tools and CLI commands can be called in parallel

Deep Reference

MCP or CLI: use auto_docs [query] or auto docs [query] for live parameter lookup. Full reference: https://docs.auto.dev/v2/cli-mcp-sdk

SDK: see code-patterns.md for typed methods and response format.

Direct API:

  • API Docs: v2-listings-api.md | v2-vin-apis.md | v2-plate-api.md | v1-apis.md
  • Workflows: chaining-patterns.md | interactive-explorer.md | business-workflows.md
  • Code Gen: code-patterns.md | app-scaffolding.md | integration-recipes.md
  • Other: error-recovery.md | pricing.md | examples.md
安全使用建议
This skill is coherent for interacting with Auto.dev and appears safe to install from a permissions/credential perspective. Before proceeding: (1) verify the source (https://github.com/drivly/auto-dev-skill) is the intended project; (2) be cautious when running npm install -g or `auto mcp install` (they modify your environment/tools and require your approval); (3) keep AUTODEV_API_KEY in server-side environment variables (do not commit it to client-side code or public repos); (4) confirm and ask for permission before the agent runs paid endpoints (build/plate) because the skill documents per-call costs; and (5) if you need stricter isolation, avoid running MCP/CLI installs and use the SDK in a controlled environment.
功能分析
Type: OpenClaw Skill Name: auto-dev Version: 1.1.4 The auto-dev skill bundle is a comprehensive and legitimate integration for the Auto.dev automotive data API. It provides the AI agent with clear instructions for surface detection (MCP, CLI, SDK, or Direct API), detailed API references (v1 and v2), and robust code patterns for various frameworks like Next.js and Python. The bundle includes best-practice security advice, such as using server-side proxies to protect API keys, and lacks any indicators of malicious intent, data exfiltration, or harmful prompt injection.
能力标签
cryptocan-make-purchasesrequires-oauth-token
能力评估
Purpose & Capability
The name/description (Auto.dev automotive data) matches the skill contents: docs for MCP/CLI/SDK usage, API endpoints, code patterns, and app scaffolds. The only credential mentioned (AUTODEV_API_KEY) is appropriate for direct API access and is declared optional in SKILL.md.
Instruction Scope
Runtime instructions stay within the stated purpose: use MCP/CLI/SDK, or direct API with AUTODEV_API_KEY. Advice to cache data, proxy API calls server-side, validate VINs, estimate costs, and warn before expensive endpoints is appropriate. There are no instructions to read unrelated system files or exfiltrate data.
Install Mechanism
This is an instruction-only skill with no install spec or code files executed by the platform. It recommends standard, traceable installs (npm / npx @auto.dev/sdk and optional 'auto mcp install'); those are normal for an SDK/CLI-based integration and are under user control.
Credentials
Only an optional AUTODEV_API_KEY is referenced for direct API use. Example code shows using process.env and server-side proxies (recommended). No unrelated secrets or multiple external credentials are requested.
Persistence & Privilege
Skill is not always-enabled and does not request elevated platform privileges. It suggests user-run commands (npm install, auto mcp install, auto login) which configure local tools but are explicitly user-initiated.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install auto-dev
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /auto-dev 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.4
auto-dev 1.1.4 - Added glama.json file. - Updated README.md and SKILL.md documentation. - MCP tools installation instructions now include support for additional platforms (Claude Code, Claude Desktop, Cursor, Windsurf, VS Code Copilot, Cline, Zed). - Bumped SKILL.md version to 1.1.3.
v1.1.3
- Added install instructions for MCP tools, CLI, and SDK in the "Detect Your Surface" and "CLI Quick Reference" sections. - Clarified usage of `auto_config_set` and `auto_config_get` in MCP tools. - Expanded CLI flags documentation (`--json`, `--yaml`, `--raw`, `--api-key`) and provided example config commands. - Updated descriptions to note that API metadata is stripped by default and explained how to enable full/raw responses. - Bumped version in SKILL.md from 1.1.1 to 1.1.2.
v1.1.2
- Updated CLI quick reference section in SKILL.md with additional example commands and improved parameter usage for clarity. - No changes made to core functionality or any files other than documentation.
v1.1.1
- Updated to version 1.1.1. - Adjusted required parameters for select Direct API endpoints: `/tco/{vin}`, `/taxes/{vin}` no longer require `zip` and `price` respectively. - SKILL.md documentation updated to reflect these param changes. No other functional changes.
v1.1.0
Auto.dev 1.1.0 introduces full support for MCP tools, CLI, and SDK usage alongside the Direct API. - Adds usage instructions for MCP tools, CLI commands, and SDK methods, prioritizing them over direct API usage. - Expands supported workflows beyond direct HTTP calls; now supports AI/CLI automation and typed SDK usage. - Updates tags and environment variable handling for newer authentication flows (OAuth via CLI/MCP, optional API key). - Provides quick references and gotchas for each surface (MCP, CLI, SDK, API). - Improves rules for chaining APIs, batching, and formatting results. - Restructures documentation for easier navigation by interface (MCP/CLI/SDK/API).
v1.0.2
- Added a homepage field to SKILL.md with the project’s GitHub URL. - Updated version in SKILL.md from 1.0.0 to 1.0.1 (Version in skill metadata may differ from release tag). - No changes to API logic or usage instructions.
v1.0.1
- Updated environment variable configuration in SKILL.md for improved clarity and structure. - Replaced the detailed environment variable metadata with a simpler format using "requires" and "primaryEnv". - No changes to endpoints, usage rules, or documentation content.
v1.0.0
- Initial release of auto-dev-skill v1.0.0. - Provides structured guidance for using Auto.dev APIs including VIN decoding, vehicle listings, photos, specs, recalls, payments, interest rates, taxes, OEM build data, and plate-to-VIN. - Details authentication process, environment variable setup, and directs users to obtain a free API key if needed. - Includes exact endpoint URL patterns and required parameters to avoid errors. - Outlines usage rules, export options, and pricing information for different API plans. - References supplemental V1 endpoints and directs to further documentation for advanced usage and workflows.
元数据
Slug auto-dev
版本 1.1.4
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 8
常见问题

Auto.dev – Automotive Data 是什么?

Use when working with Auto.dev APIs, vehicle data, VIN decoding, car listings, vehicle photos, specs, recalls, payments, interest rates, taxes, OEM build dat... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 381 次。

如何安装 Auto.dev – Automotive Data?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install auto-dev」即可一键安装,无需额外配置。

Auto.dev – Automotive Data 是免费的吗?

是的,Auto.dev – Automotive Data 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Auto.dev – Automotive Data 支持哪些平台?

Auto.dev – Automotive Data 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Auto.dev – Automotive Data?

由 Bryant S(@bryant22)开发并维护,当前版本 v1.1.4。

💬 留言讨论