소스 정보
- 저장소
- 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 stellar-catalog-comparison명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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 | 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.