소스 정보
- 저장소
- arm2arm/AstroAgentAssistant
- 최근 소스 활동
- 2026년 8월 26일 12:28
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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.