Tabela FIPE

v1.0.0

Consulta preços médios de carros, motos e caminhões na Tabela FIPE brasileira para compra, venda, seguro e financiamento.

1· 290·2 current·2 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (Tabela FIPE) match the included code and SKILL.md. The code fetches vehicle brands, models, years and prices from the documented public API (https://parallelum.com.br/fipe/api/v1), which is exactly what the skill claims to do.
Instruction Scope
SKILL.md instructs running the included Node CLI (node src/index.js) and documents commands. The instructions and code only perform HTTP GETs to the FIPE API and format results; they do not read local files, environment variables, other services, or transmit data to unexpected endpoints.
Install Mechanism
There is no explicit install spec in the registry metadata, but the package includes package.json and package-lock.json with a dependency on axios (standard). Running the skill in practice will require Node.js and installing dependencies (npm install) which pulls packages from the public npm registry. This is expected and proportionate, but users should be aware npm install will write node_modules to disk.
Credentials
The skill requires no environment variables, credentials, or config paths. The external API used is public and does not require an API key. No unrelated secrets or services are requested.
Persistence & Privilege
The skill does not request permanent/always-on inclusion and does not modify other skills or system configuration. It runs as a simple CLI program and makes outbound HTTP requests only when invoked.
Assessment
This skill appears coherent and implements exactly what it claims: a FIPE table lookup using the public parallelum API. Before running: ensure you have Node.js installed and run npm install in an isolated or trusted environment (it will download axios and transitive npm dependencies). The tool makes outbound HTTPS GET requests to parallelum.com.br (no credentials are sent). If you plan to run it in a sensitive environment, review node_modules or run in a sandbox/container. No environment variables or secrets are required by this skill.

Like a lobster shell, security has layers — review code before you run it.

latestvk974bmd8mevbj0tx108ydnm0an828dqj
290downloads
1stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

Tabela FIPE Skill

Consulta preços de veículos (carros, motos, caminhões) na Tabela FIPE brasileira.

O que é a Tabela FIPE?

A Tabela FIPE é uma referência oficial de preços médios de veículos no Brasil, calculada pela Fundação Instituto de Pesquisas Econômicas (FIPE) ligada à USP. Atualizada mensalmente, é usada para:

  • Compra e venda de veículos
  • Financiamentos e consórcios
  • Cálculo de seguros
  • Base para IPVA

Gatilhos

Ative a skill usando:

  • "fipe", "tabela fipe" — buscar preço
  • "preço carro", "valor carro" — consultar
  • "carro tá quanto" — consulta informal

Como Usar

# Listar marcas de carros
node src/index.js marcas

# Listar modelos de uma marca
node src/index.js modelos 59  # 59 = Volkswagen

# List anos de um modelo
node src/index.js anos 59 5940

# Ver preço de um veículo
node src/index.js preco 59 5940 2014-3

# Busca rápida por nome (pesquisa em todas as marcas)
node src/index.js search "Hilux"

Busca Inteligente

A skill suporta busca por nome que retorna modelos compatíveis:

node src/index.js search "Toyota Corolla"
node src/index.js search "Honda Civic"

API

Exemplos de Códigos de Marcas

CódigoMarca
59Volkswagen
21Chevrolet
23Ford
33Fiat
2Honda (motos)
1Yamaha (motos)

Comments

Loading comments...