broker-schedule

broker-schedule is a skill for Claude Code from madguyevans-creator/resale-agent-skill-hub. It costs 69 tokens per session (404 once invoked), scanned A, original, MIT.

A scheduler for periodically checking resale listings and researching whether their prices should change.

In plain words
What is it for?
Setting repricing intervals, registering daily checks on macOS or Linux, updating eligible prices, blocking changes below a chosen floor, recording decisions, and removing listings elsewhere when an item is sold.
Why use it?
It removes the need to remember when to review each listing and applies a minimum-price safeguard before repricing.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the resale-agent-skill-hub plugin — 8 skills shipped together

Good fit Setting repricing intervals, registering daily checks on macOS or Linux, updating eligible prices, blocking changes below a chosen floor, recording decisions, and removing listings elsewhere when an item is sold.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/madguyevans-creator/resale-agent-skill-hub/broker-schedule
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 madguyevans-creator/resale-agent-skill-hub --skill broker-schedule
Clone the repo
git clone --depth 1 https://github.com/madguyevans-creator/resale-agent-skill-hub

Made for: Claude Code.

Or install resale-agent-skill-hub, the plugin that ships this one along with the rest of its 8 skills.

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 broker-schedule

README.md
[![agentmods](https://agentmods.dev/badge/skills/madguyevans-creator/resale-agent-skill-hub/broker-schedule/github.svg)](https://agentmods.dev/skills/madguyevans-creator/resale-agent-skill-hub/broker-schedule)
Your own site
<a href="https://agentmods.dev/skills/madguyevans-creator/resale-agent-skill-hub/broker-schedule"><img src="https://agentmods.dev/badge/skills/madguyevans-creator/resale-agent-skill-hub/broker-schedule/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 broker-schedule

Your own site · 80×15
<a href="https://agentmods.dev/skills/madguyevans-creator/resale-agent-skill-hub/broker-schedule"><img src="https://agentmods.dev/badge/skills/madguyevans-creator/resale-agent-skill-hub/broker-schedule.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 69 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 404 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.00069 $0.00404
Opus 5 $0.00034 $0.00202
Sonnet 5 $0.00014 $0.00081
Haiku 4.5 $0.00007 $0.00040

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

Security

Grade A, and why

broker-schedule 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 12d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/schedule.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.

skills/broker-schedule/SKILL.md · 37 lines

What it actually says

broker-schedule: Repricing Interval & Scheduler

Sets the repricing cycle and registers the system timer that drives automatic price adjustments.

Workflow

  1. Ask user for interval in days (default: 7)
  2. Write interval to the listing's state via state_manager
  3. Register (or update) the system-level daily check job:
    • macOS: LaunchAgent plist at ~/Library/LaunchAgents/com.skillhub.broker-repricing.plist
    • Linux: crontab entry

What the Daily Check Does

  1. Scans all active listings
  2. For listings whose next_repricing_date ≤ today:
    • Search platform prices using stored sessions
    • Calculate new recommended price
    • Floor validation (MANDATORY GATE): If new price < floor → BLOCKED. Repricing paused, user notified, event logged to audit trail.
    • If new price ≥ floor: auto-adjust, log repricing to audit trail.
  3. Also checks each listing's status on platform:
    • If found as "sold" on any platform → auto-trigger broker-delist on all others
  4. All decisions logged: Every repricing, floor block, and delist event is recorded in ~/.broker/audit.jsonl

Script

python3 scripts/schedule.py --item-id <id> --interval 7    # Set interval
python3 scripts/schedule.py --item-id <id> --status         # Check schedule
python3 -m broker_core.scheduler register                   # Register cron/launchd
Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 37 lines · 0 tokens per session scan A bd43964aa9bc

Subscribe to this mod's changes

broker-schedule is a skill published in the GitHub repository madguyevans-creator/resale-agent-skill-hub (94 stars, last pushed 3mo ago), licensed MIT. It adds 69 tokens to every session and 404 once invoked, about $0.0003 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-30.

Related

Other skills, from other repositories