基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/GeorgeDoors888/GB-Power-Market-JJ --skill memory-qmd命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
超级简历 WonderCV 出品,3000 万用户信赖。简历分析、段落改写、JD 岗位匹配、自动匹配职位、PDF 导出、AI 求职导师(面试准备/薪资谈判/职业规划/多版本简历策略)。 触发条件:用户提供简历、要求简历点评/打分/反馈、希望改写某个简历部分、 希望将简历与岗位 JD 匹配、咨询求职建议或面试准备,或提到 CV/简历/求职。 不触发条件:用户讨论普通写作(非简历)、询问其他文档, 或讨论与求职和职业发展无关的话题。
Order food/drinks (点餐) on an Android device paired as an OpenClaw node. Uses in-app menu and cart; add goods, view cart, submit order (demo, no real payment).
调用久吾智能体API进行文本或文件分析处理。支持两种调用方式:(1) 文本内容分析 - 传入name(智能体名称)、docno(文档编号)、content(文本内容);(2) 文件分析 - 传入name、docno和files(文件列表)进行智能评审。适用于合同评审、需求评审、文档审查等场景。当用户要求评审合同、分析条款、审查文档、需求评审、合同条款分析、或需要对文本和文件进行AI智能分析时触发。
| name | memory-qmd |
| description | QMD memory backend — BM25 + vector search over indexed code and docs via the qmd CLI. |
| license | MIT |
| metadata | {"authors":"OpenClaw Memory Stack","version":"0.1.0"} |
QMD is a BM25 + vector search engine for code and documentation. It indexes files into named collections using glob patterns and stores them in a local SQLite database with FTS5 full-text search. QMD supports three search modes: BM25 keyword search for exact symbol/name lookups, vector semantic search for concept-based queries, and hybrid search that combines both. It is the most versatile general-purpose memory backend in the OpenClaw Memory Stack, ideal for code search, documentation lookup, and finding specific symbols or behavioral patterns across a codebase.
Tier: Starter — included in the $49 package. Note: requires Bun runtime and SQLite FTS5 extension (Bun's built-in SQLite includes FTS5, so no separate installation is needed).
| Dependency | Required | Notes |
|---|---|---|
| Bun | Yes | JavaScript/TypeScript runtime. Not universally installed — users must install separately. |
| SQLite FTS5 | Yes | Full-text search extension. Bun's built-in SQLite driver includes FTS5 by default. |
qmd CLI | Yes | Installed via bun install -g qmd. |
Bun is not as ubiquitous as Node.js. If the user does not have Bun installed, setup.sh will fail with exit code 2 and provide installation instructions.
Configuration is stored in config.json alongside this file. Key settings:
index_path: Location of the SQLite index (~/.cache/qmd/index.sqlite)search.default_mode: Default search mode (query for hybrid)search.modes: Available search modes with their minimum score thresholdsrelevance: Normalization formula for raw BM25 scoresPer-project collections are configured via the qmd CLI, not through config.json.
QMD indexes existing files on disk — "storing" means adding files to a collection via glob patterns, then generating vector embeddings.
Step 1 — Create a collection:
qmd collection add <name> --pattern "**/*.md" --path /project/path
Step 2 — Generate embeddings:
qmd embed <name>
Step 3 — (Optional) Add context descriptions:
qmd context add -c <name> "This collection contains API documentation for the auth module"
Updating after file changes:
qmd update <name>
Collections can use any glob pattern: **/*.swift, src/**/*.ts, docs/**/*.md, etc.
Retrieve a specific indexed document by its QMD URI:
qmd get qmd://<collection>/path/to/file
Retrieve multiple documents in one call:
qmd multi_get qmd://<collection>/file1,qmd://<collection>/file2
Use multi_get when you need 3 or more files — never call get repeatedly.
QMD provides three search modes. Mode selection is critical for result quality.
| Signal | Mode | Command | minScore | When to use |
|---|---|---|---|---|
| Exact name, symbol, error string | search | qmd search "query" -c collection | 0.1 | Function names, class names, error messages |
| Concept, behavior, "how does X work" | vsearch | qmd vsearch "query" -c collection | 0.3 | Understanding behavior, finding related code |
| Unclear, broad, first-time exploration | query | qmd query "query" -c collection | 0.3 | Cross-cutting concerns, initial exploration |
Quick rule: Know the exact word? Use search. Describing behavior? Use vsearch. Not sure? Use query.
# BM25 keyword — find a specific function
qmd search "handleAuthCallback" -c myproject --minScore 0.1
# Vector semantic — find code related to a concept
qmd vsearch "how does the payment flow handle retries" -c myproject --minScore 0.3
# Hybrid — broad exploration
qmd query "error handling middleware" -c myproject --minScore 0.3
query mode, drop collection filter, or rephraseqmd get to read the top hitsAlways specify -c collection when the project has per-layer collections.
store(key, content, metadata?) — Maps to qmd collection add + qmd embedretrieve(query, options?) — Maps to qmd get qmd://<collection>/pathsearch(pattern, scope?) — Maps to qmd search|vsearch|query "pattern" -c scopeAll backends return the same JSON structure:
{
"query_echo": "original query string",
"results": [
{
"content": "matched file content or excerpt",
"relevance": 0.82,
"source": "qmd",
"timestamp": "2026-03-10T14:30:00Z"
}
],
"result_count": 2,
"status": "success",
"error_message": null,
"error_code": null,
"backend_duration_ms": 230,
"normalized_relevance": 0.82,
"backend": "qmd"
}
| Code | Meaning |
|---|---|
BACKEND_UNAVAILABLE | Bun or qmd not installed, or SQLite index missing |
QUERY_TIMEOUT | Exceeded 5s (router-measured) |
EMPTY_RESULT | Query succeeded but no matches above minScore |
PARTIAL_RESULT | Collection exists but index is stale or incomplete |
BACKEND_ERROR | Internal error (see error_message) |
BM25 raw scores are inherently low (typically 0.1-0.3 for good results) due to camelCase tokenization in code. This is normal, not a sign of poor results.
Normalization formula: normalized = min(raw * 3, 1.0)
| Raw BM25 Score | Normalized Score | Interpretation |
|---|---|---|
| 0.10 | 0.30 | Weak match |
| 0.20 | 0.60 | Good match |
| 0.33+ | 1.00 | Strong match (capped) |
Vector search (vsearch) scores are already in 0.0-1.0 range and do not need normalization.
qmd embed on a large collection can take minutes. Subsequent updates are incremental.qmd update. If the user forgets, search results may be outdated or incomplete.search mode — do not set it higher or you will miss valid results.Starter — included in the $49 OpenClaw Memory Stack package. Requires Bun runtime (free, open source) and no paid API keys. The only barrier to entry is installing Bun.