AgentSkillsCN

qmd-handler

执行QMD(快速Markdown)技能。这些技能是独立的Markdown文件,内含元数据与Python代码。无需自行编写代码,即可运行预定义的逻辑(如搜索、数学运算或API调用),从而节省上下文Token。

SKILL.md
--- frontmatter
name: qmd-handler
description: "Execute QMD (Quick Markdown) skills. These skills are standalone markdown files containing metadata and Python code. Use this to run pre-defined logic (like search, math, or API calls) without having to write the code yourself, saving context tokens."

QMD Handler

Use this skill to execute deterministic logic stored in .md files.

How to use

  1. Find a skill: Look in skills/ for .md files.
  2. Execute: Use the qmd_runner.py script.
bash
python3 vps/qmd_runner.py skills/your-skill.md '{"param": "value"}'

Benefits

  • Token Efficiency: The code lives on disk, not in your context window.
  • Reliability: Deterministic Python execution.
  • Safety: Runs in a separate subprocess.