Skip to main content
Open Source · MITgdkiddd/kid-skills

KID Open Source Library

The agent skills I actually run in production, opened up. A single SKILL.md states when it triggers, what steps it follows, and where the decision thresholds sit. No toy demos.

Browse the GitHub repo
Skills published
1
License
MIT
Entry file
SKILL.md

Skills

Published skills

Each skill is a standalone folder. Copy it out and it works.

skills/<name>/SKILL.md

buy-price-scout

E-commerce / Purchase decisions

v1.1.0

One sentence in—"I want to buy this"—and the whole pipeline runs

Turns "I want to buy X" into an executable purchase decision. Route by category first (secondhand vs. new), lock down generation and region to avoid mixed listings, pull live prices from multiple channels, rank by value rather than price, then answer: what to buy, where, at what price, and whether to buy now or wait.

  • Category routing: electronics favor secondhand, everything else favors new
  • Quantified thresholds: ≥25% gap favors secondhand, <15% means buy new
  • Three veto rules: battery decay, hygiene, no inspection channel
  • Recycle quotes as a price anchor; listings carry 10–20% haggling room
  • For discontinued models: dual references, take the lower one
  • Three tiers (deal / balanced / no-hassle), balanced recommended by default
比价二手性价比购买决策

Triggers

我想买 X比价 XX 多少钱X 值不值得买
View source
SKILL.md · loadingMITUpdated 2026-09-22skills/buy-price-scout/

More skills on the way

I am still de-identifying and documenting the rest of my daily toolkit. Star the repo to catch updates first.

Star on GitHub

How to use

Installed in three steps

Skills are just folders. Drop one into your client’s skills directory and the agent picks it up.

  1. 1

    Locate the skills folder

    It depends on your client: ~/.workbuddy/skills for WorkBuddy, ~/.claude/skills for Claude Code.

  2. 2

    Drop the SKILL.md in

    Use the copy button on any card, or curl the raw file straight into <skills>/<skill-name>/SKILL.md.

  3. 3

    Say the trigger phrase

    No manual loading needed. Mention a trigger and the agent pulls in the matching skill on its own.

Clone the whole repo

One command gets every skill, and git pull keeps them current.

git clone https://github.com/gdkiddd/kid-skills.git ~/kid-skills

Skills are plain Markdown. Nothing executes on install.