marketplace-purchase-vetting

marketplace-purchase-vetting is a skill for Claude Code, Codex from AtlasOmnia/hermes-custom-pack. It costs 72 tokens per session (2,547 once invoked), scanned A, a copy of marketplace-purchase-vetting, MIT.

A guide for checking local marketplace listings for scams, misleading prices, and other risks. It first finds suitable listings when needed, then assesses the strongest candidates.

In plain words
What is it for?
It helps search for vehicles or other local items, rank candidates, inspect listing details, and suggest practical next steps before buying.
Why use it?
It helps separate genuinely good deals from listings with warning signs such as deceptive pricing or unreliable sellers.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit It helps search for vehicles or other local items, rank candidates, inspect listing details, and suggest practical next steps before buying.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/atlasomnia/hermes-custom-pack/marketplace-purchase-vetting
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add AtlasOmnia/hermes-custom-pack --skill marketplace-purchase-vetting
Clone the repo
git clone --depth 1 https://github.com/AtlasOmnia/hermes-custom-pack

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for marketplace-purchase-vetting

README.md
[![agentmods](https://agentmods.dev/badge/skills/atlasomnia/hermes-custom-pack/marketplace-purchase-vetting/github.svg)](https://agentmods.dev/skills/atlasomnia/hermes-custom-pack/marketplace-purchase-vetting)
Your own site
<a href="https://agentmods.dev/skills/atlasomnia/hermes-custom-pack/marketplace-purchase-vetting"><img src="https://agentmods.dev/badge/skills/atlasomnia/hermes-custom-pack/marketplace-purchase-vetting/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for marketplace-purchase-vetting

Your own site · 80×15
<a href="https://agentmods.dev/skills/atlasomnia/hermes-custom-pack/marketplace-purchase-vetting"><img src="https://agentmods.dev/badge/skills/atlasomnia/hermes-custom-pack/marketplace-purchase-vetting.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 72 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,547 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00072 $0.02547
Opus 5 $0.00036 $0.01273
Sonnet 5 $0.00014 $0.00509
Haiku 4.5 $0.00007 $0.00255

Measured 13d ago against content hash 3aadf3f0c947, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

marketplace-purchase-vetting scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to marketplace-purchase-vetting — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/marketplace-purchase-vetting/SKILL.md · 182 lines

How it starts

The opening of the file, as written. The whole thing — 182 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Marketplace Purchase Vetting

Use this when the user asks whether a local listing is a scam, "too good to be true," worth looking at, or a good deal. Also use this when he asks you to find options — search/discover candidates, then vet the best ones. The goal is not a generic buying guide; it is a practical risk read with clear next steps.

Two modes: Discovery (find me options) and Vetting (check this listing). Run them in sequence when the user hasn't identified a specific listing.


Mode 1: Discovery — Search for candidates in the area

Run this first when the user says "find me a car/suv/truck for $X in our area" without a specific link. The output is a ranked shortlist of the best live options.

Facebook Marketplace search procedure

Read before a broad or tightly constrained vehicle hunt; it documents radius conversion, ignored filters, regional partitioning, feed virtualization, and dealer/down-payment traps.

  1. Set up the search URL. Facebook Marketplace uses structured URL parameters:
https://www.facebook.com/marketplace/{city}/vehicles?minPrice={min}&maxPrice={max}&sortBy=creation_time_descend&exact=false
  • Default to the user's nearest metro area as the city slug; ask when unclear.
  • Set price range with ~$500 buffer below max budget (e.g. $3,000--$4,000 for a $3.5k budget) so the floor filters out junk but the ceiling doesn't miss negotiable listings.
  • sortBy=creation_time_descend shows newest first — gives the freshest picks.
  1. Navigate in a logged-in browser session. Facebook Marketplace requires authentication to show results. Use the browser tool (Chrome CDP). Navigate to the constructed URL.

  2. Scrape the results page via CDP Runtime.evaluate — much faster than clicking each listing:

JSON.stringify(Array.from(document.querySelectorAll(
'a[href*="/marketplace/item/"]'
)).map(a => ({
text: a.innerText.trim(),
url: (a.href.match(/marketplace\/item\/(\d+)/) || [])[1]
})).filter(x => x.text))

This returns all visible listings' title, price, location, item ID as one JSON blob.

Read the full file on GitHub · 182 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 13d ago First seen · 182 lines · 72 tokens per session scan A 3aadf3f0c947

Subscribe to this mod's changes

marketplace-purchase-vetting is a skill published in the GitHub repository AtlasOmnia/hermes-custom-pack (56 stars, last pushed 28d ago), licensed MIT. It adds 72 tokens to every session and 2,547 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to marketplace-purchase-vetting, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

marketplace-purchase-vetting

Use this when the user asks whether a local listing is a scam, "too good to be true," worth looking at, or a good deal. Also use this when he asks you to find options — search/discover candidates, then vet the best ones. The goal is not a generic buying guide; it is a practical risk read with clear next steps.

AtlasOmnia/donna-starter · 72 tokens

xml-config-migrating

Use this skill when a Shopware plugin or app-server extension needs its XML configuration migrated to PHP — phrases like "migrate services.xml", "convert my plugin config to PHP", "xml to php migration", "fix the XML deprecation", "prepare my plugin for Shopware 6.8 / Symfony 8", or when a deprecation like "The XML…

shopwareLabs/ai-coding-tools · 106 tokens

dev-environment-bootstrapping

Use this skill when the user asks to bootstrap, set up, create, or initialize a Shopware development environment from scratch — phrases like "set up a Shopware dev environment", "clone and install Shopware", "initialize a Shopware plugin project", "bootstrap Shopware and a new plugin called X", "get a fresh Shopware…

shopwareLabs/ai-coding-tools · 144 tokens

parallel-orchestrator

Manage parallel Claude Code workstreams using git worktrees. Use when: splitting large tasks across multiple workers, coordinating parallel development, monitoring worker progress, integrating completed work, analyzing work item documents (code reviews, issue lists). Triggers: parallel, orchestrator, worktrees…

jimmc414/claude-code-plugin-marketplace · 78 tokens

parallel-retrospective

Analyze completed parallel workflows for lessons learned. Use when: reviewing workflow execution quality, identifying process improvements, evaluating skill effectiveness, post-mortem analysis after parallel work, assessing planning accuracy. Triggers: retrospective, review, post-mortem, lessons learned, workflow…

jimmc414/claude-code-plugin-marketplace · 69 tokens

parallel-worker

Execute focused implementation tasks in a parallel workflow. Use when: working on assigned files in a worktree, making checkpoint commits, signaling dependencies or blockers, completing orchestrator-assigned tasks. Triggers: worker, checkpoint, worktree, assigned scope, commit prefix, parallel task.

jimmc414/claude-code-plugin-marketplace · 59 tokens