Operational Steps
- 确认输入参数完整
- 执行核心操作(参考本目录下的 scripts/ 或 references/)
- 验证输出符合契约
- 保存结果并报告
Pitfalls
-
-
Verification
-
-
-
-
1. 2. 3.
System Infrastructure — 系统基础设施
Purpose
Navigation index for system maintenance: devops, automation, tool integration, and monitoring.
Skills in this Layer (50 total)
- 3d-curve-fitting-figures: 3D曲线拟合图的生成规范:从点云到拟合曲线到出版级Figure。 覆盖拟合重建陷阱、多标本复合布局、分段数据合并、argsort路径错乱。
- automation-skills: 触发条件: 对一批论文(10-34 篇)批量处理
step_quality_check.md中的 quality_score 并写入state.json。 - autonomous-ai-agents: 自主AI智能体编排 — 多Agent协作、委托任务、跨Agent通信。
- axolotl: Expert guidance for fine-tuning LLMs with Axolotl — YAML configs, 100+ models, LoRA/QLoRA, DPO/KTO/ORPO/GRPO, multimodal support.
- chinese-form-automation: Directory index for chinese-form-automation: chinese-form-automation
- claude-code: Delegate coding to Claude Code CLI — features, PRs, refactoring, review.
- codebase-inspection: Analyze repositories for lines of code, language breakdown, file counts, and code-vs-comment ratios using
pygount. - codex: Delegate coding to OpenAI Codex CLI — 主力编码代理。覆盖多节点profile配置、无PTY执行、Cron集成、多模型并行。
- computational-ode-modeling: Directory index for computational-ode-modeling: computational-ode-modeling
- cron-system-maintenance: Cron任务运维:诊断error状态、修复脚本缺陷、验证连接性。覆盖cron job list分析、错误分类、脚本语法验证、prompt更新、vLLM多节点负载均衡。
- debug-env-variables: DevOps — environment configuration, subprocess shells, credential injection.
- devops: DevOps运维 — Cron任务管理、看板编排、worker管理。
- dogfood: This skill guides you through systematic exploratory QA testing of web applications using the browser toolset. You will navigate the application, interact with elements, capture evidence of issues, and produce a structured bug report.
- evaluation: Directory index for evaluation — mlops/evaluation 模型评估与实验追踪
- evaluation: Directory index for evaluation — mlops/evaluation 模型评估与实验追踪
- excalidraw: Hand-drawn Excalidraw JSON diagrams (arch, flow, seq).
- github: GitHub工作流 — PR审查、Issue管理、仓库管理、CI/CD。
- github-auth: Skill: github-auth
- github-code-review: Skill: github-code-review
- github-discussions: Create, list, search, and manage GitHub Discussions via GraphQL API.
- github-issues: Skill: github-issues
- github-pr-workflow: Skill: github-pr-workflow
- github-repo-management: ```bash
- godmode: Bypass safety filters on API-served LLMs using techniques from G0DM0D3 and L1B3RT4S. Three attack modes plus Hermes-native configuration for persistent jailbreaking.
- hermes: Hermes Agent管理 — Cron生命周期、配置、工具管理。
- hermes-agent: Configure, extend, or contribute to Hermes Agent — the open-source AI agent framework by Nous Research.
- hermes-scheduler: 本技能适用于以下场景:
- kanban-orchestrator: Create Kanban tasks when any of these are true:
- kanban-worker: Your workspace kind determines how you should behave inside
$HERMES_KANBAN_WORKSPACE: - lm-evaluation-harness: Evaluates LLMs across 60+ academic benchmarks (MMLU, HumanEval, GSM8K, TruthfulQA, HellaSwag). Use when benchmarking model quality, comparing models, reporting academic results, or tracking training progress. Industry standard used by EleutherAI, HuggingFace, and major labs. Supports HuggingFace, vLLM, APIs.
- maintenance: Synthos维护 — 认知原子结构完整性验证。
- mcp: MCP集成 — 模型上下文协议服务器配置与工具注册。
- mcp-ecosystem-guide: Directory index for mcp-ecosystem-guide: mcp-ecosystem-guide
- medical-image-centerline: Directory index for medical-image-centerline: medical-image-centerline
- memory-optimization-system: Directory index for memory-optimization-system — > 注意: 本技能是记忆管理的唯一入口。
memory-enhancement已合并至此。 - mlops: 机器学习运维 — ODE建模、实验管理、模型训练、推理部署、模型架构。
- native-mcp: Directory index for native-mcp: native-mcp
- opencode: 1. 非常驻服务 — OpenCode 不是 daemon,按需启动、用完即关。
ps aux | grep opencode无进程是正常状态,不是故障。 - python-docx: 创建/读取/编辑.docx — python-docx: 表格/字体/页面设置。
- red-teaming: 红队测试 — LLM越狱攻击(Parseltongue、GODMODE、ULTRAPLINIAN)。
- remote-gpu-training: Directory index for remote-gpu-training: remote-gpu-training
- repo-path-sanity: Purpose: Diagnose and fix broken directory relationships when
~/Synthosand/media/yakeworld/sda2/Synthosdiverge into independent copies instead of symlink. - shared: 共享资源 — 跨技能引用的通用资源。
- sklearn-benchmark: 设计、运行和优化scikit-learn多模型基准测试。覆盖预赛时序检测、失败模型预判、大数据集模型过滤、OOM防护、并行策略、结果整合。
- synthos-probe: Class: maintenance / audit
- training-pipeline-principles: Skill: training-pipeline-principles
- trl-fine-tuning: TRL provides post-training methods for aligning language models with human preferences.
- unsloth: Comprehensive assistance with unsloth development, generated from official documentation.
- webhook-subscriptions: Webhook subscriptions: event-driven agent runs.
- weights-and-biases: Use Weights & Biases (W&B) when you need to:
IO_CONTRACT
- input:
layer: str, query: str, context: dict— Layer name, search query, and context - output:
skill_list: list[dict]— Filtered list of skills matching the query
验证清单 · VERIFICATION
- 输入参数
layer、query、context是否完整且类型/范围/格式符合 IO_CONTRACT 定义;不完整或无效时是否立即拒绝执行(LAYE-001) - 执行核心操作前是否已确认输入参数完整,且已参考本目录下 scripts/ 或 references/ 进行标准化处理(LAYE-002/Operational Steps 1-2)
- 输出
skill_list: list[dict]结构是否严格符合 IO_CONTRACT,各字段命名与编码一致(LAYE-003) - 空输入、极大值或异常场景是否触发边界验证,错误信息是否包含上下文与恢复建议(LAYE-004)
- 涉及代码执行或状态变更的操作是否遵循安全约束:不执行未验证代码、不暴露内部状态,违规操作是否已拒绝或隔离(LAYE-005)
- 本次改进或迭代是否已通过 Golden 集合(标准输入/预期输出/预期错误)测试(LAYE-006)
- 每项验证是否可执行、可记录、可复现,验证失败时是否已记录原因及修复方案(LAYE-007)
约束规则 · RULES
- 输入约束: 参数类型、范围、格式必须校验
- 输出约束: 返回值结构、编码、命名必须一致
- 异常约束: 错误信息必须包含上下文和恢复建议
- 安全约束: 不执行未验证的任意代码,不暴露内部状态
Golden 集合 · GOLDEN SET
- Golden Input:
layer="devops", query="cron", context={}— 正常路径:指定 layer 与检索词,命中本层技能列表 - Golden Output:
skill_list: list[dict]仅含 devops 层中匹配 "cron" 的条目(如cron-system-maintenance、devops),每项为含 name/description 的 dict,结构严格符合 IO_CONTRACT - Golden Error:
layer或query缺失/类型错误时,按 LAYE-001/LAYE-004 拒绝执行,返回含缺失字段名、上下文与恢复建议的错误信息,且不产出任何skill_list
Golden 集合是测试的单一真理来源。所有改进必须通过 golden 测试。
违反规则的操作视为不安全,必须拒绝或隔离。
每项验证必须可执行、可记录、可复现。验证失败时记录原因和修复。
对应原则:P3(人机分层 — 路由器负责路由,原子负责执行)
Layer Index System---
(P032 去重: 以下为合并前第二份中的 1 行独有内容, 保留以防丢失)
Layer Index System
Genes (策略基因)
紧凑策略表示。条件→策略。需要深度时参考完整文档。
- [LAYE-015] 输入参数(layer, query, context)不完整或无效 → 立即执行输入验证并拒绝执行,确保参数类型、范围及格式符合契约
- [LAYE-016] 执行核心操作前 → 必须确认输入参数完整,并参考目录下的 scripts/ 或 references/ 进行标准化处理
- [LAYE-017] 生成输出结果时 → 严格校验输出结构(skill_list: list[dict])是否符合 IO_CONTRACT 定义,确保命名与编码一致
- [LAYE-018] 遇到空输入、极大值或异常场景 → 触发边界验证逻辑,提供包含上下文和恢复建议的明确错误信息
- [LAYE-019] 涉及代码执行或状态变更 → 遵循安全约束,不执行未验证的任意代码,不暴露内部状态,违规操作必须拒绝或隔离
- [LAYE-020] 进行系统改进或功能迭代 → 必须通过 Golden 集合(标准输入/预期输出/预期错误)测试,将其作为单一真理来源
- [LAYE-021] 验证过程执行中 → 确保每项验证可执行、可记录、可复现,失败时详细记录原因及修复方案