用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/arm2arm/AstroAgentAssistant --skill external-coder-orchestration命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
S3/MinIO operations: connectivity, transfers, read benchmarks, and matplotlib visualization templates.
Complete guide to the REANA reproducible analytics platform: Dockerized client setup, multi-backend profiles, workflow authoring patterns, S3 dataset workflows, and best practices. Covers dev/prod backends, serial workflows, REANA_WORKSPACE usage, and self-learning from finished workflows.
Complete guide to working with Arepo simulation HDF5 files: structure inspection, unit conversion, radial profiles, slice projections, and dimensionality reduction (UMAP/t-SNE) for clustering analysis.
正在显示 SKILL.md
| name | external-coder-orchestration |
| description | Use when running multi-stage plans via external coding CLIs. |
| version | 1.0.0 |
| author | Hermes Agent |
| license | MIT |
| platforms | ["linux","macos"] |
| metadata | {"hermes":{"tags":["orchestration","coding-agent","delegation","multi-stage","git"],"related_skills":["subagent-driven-development","deepseek-harness-dsh","opencode-workflow","claude-code","writing-plans"]}} |
Run a plan (from writing-plans or a user brief) by dispatching fresh sessions of an external coding agent CLI — dsh, opencode, claude-code, codex, or pi — as background terminal processes (one bounded task per session), then verify and commit each stage yourself.
This is distinct from delegate_task (in-process Hermes subagents) and from running a coder once for a single task. It's for when the plan is large (many files / many concerns) and each unit should run in a clean context with an isolated blast radius.
Do NOT use for: a single bounded task (just run the coder once in the foreground); work with no reasoning (use execute_code); anything needing user interaction mid-run.
git tag -a <name> -m "..." HEAD and push a backup/pre-<task>-<date> branch. Multi-stage runs are long; you must be able to revert.git status --short. Record the user's pre-existing modified/untracked files BY PATH. These stay out of every stage commit.PYTHONPATH=src /path/venv/bin/python3 -m pytest tests -q → 52 passed). Every stage prompt gets this line.DSH_PERMISSION_MODE=danger-full-access); the blast radius is bounded by the ground rules below + per-stage commits.Every stage prompt carries the same ground rules, then ONE bounded scope:
git commit/git push — the orchestrator commits; git read-only (log/diff/show) is fine.Run each stage as terminal(background=true, notify_on_complete=true) with a generous timeout. Continue working (or wait) between stages; never poll the agent's private session internals.
The agent's final report is a self-report, not verified fact. Before committing a stage:
git diff <file> for the algorithm-heavy or schema-changing edits) — not a full read.git rm. Executors also stop short of a claimed step or miscount cheap claims (page counts, file counts) — recompute those independently and cheaply (e.g. count PDF pages with pypdf, resolve all citation keys, run the CLI --help).git add -A -- . ':!path/to/user_file_a' ':!path/to/user_file_b'
then git commit -m "stageN/<plan>: <scope> (agent-<name>-implemented)". Attribute the implementation to the agent + stage in the message.git status --short / git diff --stat in the worktree and the process output for progress. Do NOT try to decode the agent's private session log (compressed/opaque format) — it wastes time and burns approval-gated commands.deepseek-harness-dsh, opencode-workflow, claude-code, codex — how to actually run/configure each agent.subagent-driven-development — the in-process delegate_task variant with two-stage review.writing-plans — producing the plan this skill executes.