用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/arm2arm/AstroAgentAssistant --skill stellar-catalog-comparison命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | stellar-catalog-comparison |
| description | Use when comparing matched stellar-catalog parameters. |
| version | 1.0.0 |
| author | Hermes Curator |
| license | MIT |
A reusable workflow for comparing matched stellar-catalog estimates (for example, SH21 versus SH26) across several parameters and scientifically meaningful subgroups. The goal is an exploratory figure that answers the comparison question directly, rather than a crowded dashboard that mixes unrelated diagnostics.
Record, before coding:
Delta = new_catalog - reference_catalog.Check the expected selection count against the live data. Similar names such as “inner box” can refer to materially different boxes; never silently substitute a conventional cut for the cut implied by the requested count.
Apply the base convergence and spatial selection once. Then select finite pairs independently for each parameter:
base = converged AND inside requested spatial region
pair_ok(parameter) = finite(new_parameter) AND finite(reference_parameter)
Do not require every unrelated parameter to be finite for every row unless a complete-case sample is scientifically intended. This preserves the requested base population and makes per-parameter N transparent.
For five parameters, prefer a 5 x 2 layout:
Delta = new - reference.Encode the subgroup with color and the catalog with line style. Use one global legend, not a repeated legend in every panel. Keep titles short; place N, median residual, and MAD in a compact annotation or in the provenance sidecar.
This layout directly shows population differences and agreement/bias. Add scatter or residual-versus-distance panels only when they answer an additional explicit question; they should not displace the primary comparison or create an unreadable 5 x 3 grid.
LogNorm(vmin=1).bbox_inches='tight' only after checking the figure-level title and legend margins.Verify all of the following from the rendered artifact and provenance:
When vision inspection is unreliable, use PDF text extraction plus renderer-level bounding-box checks and simple image-size/border checks. A plot that renders successfully is not necessarily legible.
When a figure already exists in a multi-page PDF, replace the old page in place rather than appending a duplicate. Verify the final page count and extract the revised page’s title, selection, and sample count from the PDF.
See references/sh21-sh26-exploratory.md for a concrete, session-derived recipe and QA checklist.