返回 Skill 列表
extension
分类: 开发与工程无需 API Key

meta-inspector

从代理输出记录、持续改进分析报告和JSONL会话文件中提取特定数据点,而无需将原始数据加载到编排器上下文中。当需要工具时间、查询次数、错误摘要或来自大型输出文件的任何结构化事实时使用。防止因读取原始记录而导致的上下文污染。

person作者: jakexiaohubgithub

Meta-Inspector — Data Point Extraction

A data extraction skill for pulling specific facts from files. Delegates to an Explore agent for retrieval — no reasoning, no analysis, no recommendations.

Constraint: This skill is orchestrator-invoked only. It is not user-invocable directly. Spawn via the analyze or explore commands.

Rules

  1. Extract exactly what is requested. Return the data points asked for, nothing else.
  2. Do NOT analyze, interpret, or recommend. Return raw facts only.
  3. Do NOT summarize or editorialize. No "this suggests..." or "this indicates..." — return numbers, strings, and lists.
  4. Use the kaizen-duckdb MCP for JSONL queries. DuckDB runs SQL over session JSONL files (read_ndjson_auto with absolute paths). Use SQL for counting, aggregation, and filtering. Use Grep only for markdown reports.
  5. Return structured output. Use the format below.

Output Format

QUERY: <what was asked>
---
<data-point-name>: <value>
<data-point-name>: <value>
<data-point-name>: <value>
---
SOURCE: <file path or SQL query used>

Extraction Patterns

See extraction-patterns.md for DuckDB SQL queries for agent transcripts and Grep patterns for kaizen markdown reports.

Scope Boundary

If asked to analyze, respond: "I extract data points only. Ask the orchestrator to analyze the results."