用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/peteromallet/Arnold --skill pipeline-template-reference命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | pipeline-template-reference |
| description | Reference contract for the canonical Arnold native-first pipeline template scaffold. |
The canonical scaffold is arnold_pipelines/_template/. It shows the minimum
required contract for a native-first pipeline:
build_pipeline() returns arnold.pipeline.Pipeline with a
non-null native_program.driver=("native", "<kind>") and
supported_modes containing "native".pipelines.py using @pipeline, @phase,
@decision, parallel, compile_pipeline, and project_graph.For native-first authoring, organise components as package-local exports:
pipelines.py owns the native declaration topology. Supporting modules
(steps.py, prompts.py, policies.py, schemas.py, subflows.py)
may be imported by the native declaration, but the declaration itself
is the single source of topology truth.
The build_pipeline() entrypoint compiles the native program and projects
it into a Pipeline shell. The shell exists for discovery and validation.
The runtime executes the native program directly.
The native_program field is a dispatch substrate, not a final
compositional surface. It proves the package is executable by the native
runtime, but it does not lock in panel synthesis, join delegation,
parallel merge strategy, subpipeline ownership, or Capsule projection.
Those concerns belong to later Megaplan layers above the dispatch
boundary.
Do not use these patterns in new packages built from the template:
arnold.workflow.Pipeline, Step, Route._legacy.py, graph fallback builders, compatibility namespaces, shim
packages, or temporary wrapper modules.--driver graph scaffolding or manual graph construction.WorkflowManifest, NativeProgram builder objects, or
_forward_m2_m3 graph objects in build_pipeline().Derived manifests, catalogs, and projection artifacts are compiler output, not package source.