From skillhub
Sets an unbreachable minimum price floor for AI-assisted pricing. Blocks any price adjustment below the floor and logs to audit trail.
How this skill is triggered — by the user, by Claude, or both
Slash command
/skillhub:broker-fuseThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
The hard-stop safety mechanism that gives users confidence to delegate pricing authority to the AI.
The hard-stop safety mechanism that gives users confidence to delegate pricing authority to the AI.
This is a GLOBAL INTERCEPTOR, NOT a sequential step. Every publish action (broker-card) and every auto-repricing action (broker-schedule) MUST validate against the floor. It is the gate that all price-mutating operations pass through.
The user delegates daily price adjustments to the AI, but retains ultimate control via an unbreachable floor. The AI operates within a safe zone; the fuse is absolute.
Every price change — whether initial publish or later auto-repricing — flows through the shield check. If suggested_price < floor_price, the action is BLOCKED and logged to the audit trail. This is the technical implementation of the pricing safety boundary.
| Profile | Floor | Effect |
|---|---|---|
| Fast Sale | 55% of recommended | Faster liquidity, less profit |
| Balanced (recommended) | 70% of recommended | Trade speed and profit |
| Profit Protection | 85% of recommended | Wait for right buyer |
python3 scripts/fuse.py --item-id <id> --set 200 # Set floor at ¥200
python3 scripts/fuse.py --item-id <id> --auto balanced # Auto-calculate
python3 scripts/fuse.py --item-id <id> --check 150 # Check if ¥150 breaches
npx claudepluginhub madguyevans-creator/resale-agent-skill-hubOrchestrates 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.
Guides pricing strategy using minimalist entrepreneur principles. Helps set initial prices, choose cost-based vs value-based models, and calculate path to financial independence.
Configures CCA smart contract parameters via batched interactive prompts for token auctions on EVM chains like Ethereum, Base, Arbitrum. Collects network, token, supply details.