用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AndrewSmigaj/OpenLLMRI --skill categorize命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | categorize |
| description | Categorize generated outputs for a probe session along output axes |
Executes Stage 3 of the pipeline (see docs/PIPELINE.md).
Ask the user which experiment, or find the most recent completed session:
GET /api/probes
Find the probe guide from sentence_set_name:
glob data/sentence_sets/**/{sentence_set_name}.md
Read the Output Axes section — it contains classification rules for each axis and value.
Also read the sentence set JSON to get the output_axes array (axis IDs and valid values).
GET /api/probes/sessions/{session_id}/generated-outputs
Returns list of {probe_id, input_text, label, generated_text, output_category}.
Skip any probes that already have output_category set (resumability).
For each generated_text, determine:
Use the probe guide's classification rules. When uncertain, use "ambiguous" or the closest match.
Build the batch payload and POST:
POST /api/probes/sessions/{session_id}/output-categories
{
"probe_id_1": {
"output_category": "value",
"output_category_json": "{\"axis_id\": \"value\"}"
}
}
Important: output_category_json must be a JSON string, not a dict.
Process in batches if needed (hundreds of probes).
After posting, report: