Help us improve
Share bugs, ideas, or general feedback.
From skillhub
Orchestrates a 7-step C2C resale pipeline: photo recognition, price research, platform auth, listing card generation, auto-publish, schedule repricing, and auto-delist on sale. Activates when user wants to sell second-hand items.
npx claudepluginhub madguyevans-creator/resale-agent-skill-hubHow this skill is triggered — by the user, by Claude, or both
Slash command
/skillhub:personal-brokerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Orchestrates the complete C2C resale workflow: photo recognition → price research → platform auth → listing card & publish → schedule + fuse → auto-delist on sale.
Generates platform-adapted listing cards for C2C marketplaces, collects repricing schedule and price shield settings, and auto-publishes on user confirmation. Use when ready to list an item after price research.
Guides forking a reference adapter to build an AdCP seller agent (publisher, SSP, retail media network) that sells ad inventory to buyer agents.
Scrapes Facebook Marketplace listings (titles, prices, locations, seller info) via camoufox/camofox-browser with cookie injection and Playwright session management.
Share bugs, ideas, or general feedback.
Orchestrates the complete C2C resale workflow: photo recognition → price research → platform auth → listing card & publish → schedule + fuse → auto-delist on sale.
Use broker_core/mcp_server.py — a standard MCP server exposing 7 tools. Any MCP-compatible client (Claude Desktop, Cursor, VS Code) can connect.
Use the 7 /broker-* slash commands within Claude Code CLI.
Load guardrails/Omni-Agent-Guardrails.yaml as the system prompt. This enforces:
audit:// referenceMCP tool mapping:
cognitive_intake → broker-recognize
generate_xai_pricing → broker-price
fuse_gatekeeper → broker-fuse (MANDATORY GATE)
execute_platform_action → broker-card + broker-delist
audit_trail_query → audit_logger
schedule_repricing → broker-schedule
platform_auth_trigger → broker-auth
ANTHROPIC_API_KEY must be set. broker-recognize (Step 1) requires Claude Vision API to analyze product photos. Without this key, photo recognition will fail.
export ANTHROPIC_API_KEY="sk-ant-..."
📷 broker-recognize → Photo → structured product info
🔐 broker-auth → Bind platform accounts (login once, session persisted)
🔍 broker-price → Authenticated price search across platforms
🛡️ broker-fuse → ⚠️ GLOBAL INTERCEPTOR — set fuse BEFORE publish/schedule
📋 broker-card → Listing card preview → user confirmation → auto-publish
⏰ broker-schedule → Set repricing interval → register cron/launchd
✅ broker-delist → Auto-detect sale → delist all platforms
broker-fuse is NOT step 6. It is a mandatory interceptor/gate. Before broker-card can publish and before broker-schedule can auto-reprice, broker-fuse MUST be called and set. Every publish and repricing action validates against the fuse.
Guide the user through skills in this order: recognize → auth → price → fuse → card → schedule. Fuse is set as a gate BEFORE card publishing. Schedule is configured during the card conversation before publishing.
broker-recognize — user uploads photo, AI extracts product info. User confirms.broker-auth — open browser for each platform user wants to list on. Sessions persist automatically.broker-price — search all bound platforms using stored sessions. Present transparency report. User confirms recommended price.broker-fuse — set unbreachable floor price. This is NOT optional. No publishing or repricing may proceed without a fuse set.broker-card — generate listing cards. Script validates fuse before publish. Ask user to set repricing interval (default 7 days). User reviews card → says "发布" → script checks fuse → auto-publishes.broker-schedule registers the cron/launchd task. Daily repricing also validates against fuse. Done automatically after publish.broker-delist triggers when: (a) user says "卖了", or (b) daily scheduler detects item sold on a platform.Each sub-skill can be invoked independently:
/broker-recognize — just analyze a product photo/broker-price — just research prices for a described item/broker-fuse — adjust an existing fuse/broker-delist — manually trigger delisting/broker-schedule — change repricing intervalSkills communicate via ~/.broker/listings.json (state_manager) and conversation context. The item_id links everything.