ebay-seller

ebay-seller is a skill for Claude Code from okuegow/agent-skills. It costs 112 tokens per session (1,642 once invoked), scanned A, original, MIT.

A guided workflow for selling individual items on eBay.de, the German version of eBay, with each item tracked through fixed stages.

In plain words
What is it for?
Use it to research prices, improve or assess item photos, write German listings, create listings, and check the status of an existing eBay listing.
Why use it?
It organizes research, listing preparation, and checks for active listings, reducing uncertainty about what stage each item is in and what must happen next.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code.

Part of the ebay-seller plugin — 1 skill shipped together

Good fit Use it to research prices, improve or assess item photos, write German listings, create listings, and check the status of an existing eBay listing.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/okuegow/agent-skills/ebay-seller
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 okuegow/agent-skills --skill ebay-seller
Clone the repo
git clone --depth 1 https://github.com/okuegow/agent-skills

Made for: Claude Code.

Or install ebay-seller, the plugin that ships this one along with the rest of its 1 skill.

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 ebay-seller

README.md
[![agentmods](https://agentmods.dev/badge/skills/okuegow/agent-skills/ebay-seller/github.svg)](https://agentmods.dev/skills/okuegow/agent-skills/ebay-seller)
Your own site
<a href="https://agentmods.dev/skills/okuegow/agent-skills/ebay-seller"><img src="https://agentmods.dev/badge/skills/okuegow/agent-skills/ebay-seller/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 ebay-seller

Your own site · 80×15
<a href="https://agentmods.dev/skills/okuegow/agent-skills/ebay-seller"><img src="https://agentmods.dev/badge/skills/okuegow/agent-skills/ebay-seller.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 112 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,642 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 original No closer match found 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.00112 $0.01642
Opus 5 $0.00056 $0.00821
Sonnet 5 $0.00022 $0.00328
Haiku 4.5 $0.00011 $0.00164

Measured 11d ago against content hash 4bfb78b926ef, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

ebay-seller 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 11d ago.

The scan reads SKILL.md. This mod also ships 6 executable files (scripts/__init__.py, scripts/enhance_photo.py, scripts/state.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

plugins/ebay-seller/skills/ebay-seller/SKILL.md · 79 lines

How it starts

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

eBay-Seller

Guides each item through fixed phases. Per-item state lives in <workspace>/ebay/items/<YYYY-MM-DD-slug>/state.json. Seller defaults in <workspace>/ebay/config.json. Usually one new item per day; several items can run in parallel across different phases.

The listing text and item content are produced in German (target marketplace eBay.de), even though this guide is written in English.

<workspace> = the user's current project directory (fallback: ask). On Windows the .claude directory is under %USERPROFILE%\.claude\. References and templates live relative to this SKILL.md under references/ and templates/.

Requirements

  • Required: Claude Code + the "Claude in Chrome" extension, and a Chrome where the user is logged in to eBay.de. Nothing else — runs on macOS and Windows.
  • Optional (convenience only): Python 3 + Pillow for automatic photo enhancement (scripts/enhance_photo.py). Without Python/Pillow the skill still works — photos are used unedited (the user uploads them manually anyway).
  • No installation needed: manage state.json directly (read/write JSON), no Python helper required.

Safety gates (non-negotiable)

  • Never publish without explicit approval. Fill the listing, then stop before the final click.
  • Live price changes and counter-offers only after approval.
  • Never retouch defects out of photos (see references/compliance.md).

First run

If <workspace>/ebay/config.json does not exist, this is the first run: first show a short quick-start (3 sentences: drag in a photo + "sell on eBay"; you upload the photos yourself; nothing is published without your approval). Then create it from templates/config-template.json and ask the user for the fields (location/ZIP, shipping method+cost, returns, handling time, default sale format, tone). ebay_benutzername is optional. Login is manual: the user logs in to eBay in Chrome themselves — no password in chat, no Keychain setup needed.

Every run

  1. Scan <workspace>/ebay/items/. Show an overview: item × phase × today's task.
  2. New photo(s) on the message? (one or more) — derive a rough name from the first photo, then search items/ for an item with a similar name (dedupe). Match → ask whether it is the same item; if yes, add the new photos to the existing item. Otherwise create a new item (phase neu).
  3. For items in beobachten and live: daily update — but only if letzter_lauf ≠ today (idempotency). Otherwise skip and report "already captured today".
  4. The user drives the phase transitions.

Read the full file on GitHub · 79 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. 11d ago First seen · 79 lines · 112 tokens per session scan A 4bfb78b926ef

Subscribe to this mod's changes

ebay-seller is a skill published in the GitHub repository okuegow/agent-skills (4 stars, last pushed 1mo ago), licensed MIT. It adds 112 tokens to every session and 1,642 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

ecommerce-seo

E-commerce SEO audit for online stores (WooCommerce, Shopify, Magento, custom). Covers the structural problems unique to commerce sites: category / product listing pages (PLP), product detail pages (PDP), faceted navigation and the crawl-budget / duplicate-content traps it creates, pagination, canonical handling for…

nowork-studio/notfair-plugin · 235 tokens

paid-ads-amazon

Plan and review Amazon Ads with margin-aware ACoS, product, and search-term guardrails. Use for Amazon advertising, Sponsored Products, Sponsored Brands, Sponsored Display, ASIN targeting, Amazon ACoS, or Amazon Ads performance exports.

nowork-studio/notfair-plugin · 55 tokens

skill-monitor

Analyze skill effectiveness across sessions. Computes per-skill metrics (action rate, friction, outcomes), identifies degrading skills, and generates improvement recommendations. Requires session-scan data in metrics.jsonl.

oliver-kriska/claude-elixir-phoenix · 41 tokens

deps-audit

Audit Hex deps for supply-chain security risk — bidi chars, compile-time exec, maintainer changes, typosquats, CVEs. Use after mix deps.update, when checking if a package upgrade is safe, or reviewing mix.lock PR diffs.

oliver-kriska/claude-elixir-phoenix · 55 tokens

review

Review code with parallel agents — tests, security, Ecto, LiveView, Oban. Use after implementation to catch bugs and anti-patterns before committing.

oliver-kriska/claude-elixir-phoenix · 34 tokens

phx-deps-audit

Audit Hex deps for supply-chain security risk — bidi chars, compile-time exec, maintainer changes, typosquats, CVEs. Use after mix deps.update, when checking if a package upgrade is safe, or reviewing mix.lock PR diffs.

oliver-kriska/claude-elixir-phoenix · 58 tokens