Agent skill
jsmd-ecosystem
JuliaSpaceMissionDesign (JSMD) ecosystem overview covering package dependencies, shared interfaces, utilities, and graph infrastructure. Use when working across multiple JSMD packages or understanding ecosystem architecture.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/jsmd-ecosystem
SKILL.md
JuliaSpaceMissionDesign Ecosystem
Open-source Julia packages for space mission analysis and design. Org: JuliaSpaceMissionDesign
Package Dependency Graph
JSMDInterfaces.jl (abstract types, @interface macro)
├── JSMDUtils.jl (math, file I/O, AD wrappers)
├── SMDGraphs.jl (graph data structures via Graphs.jl)
├── Tempo.jl (timescales, Epoch type)
├── Ephemerides.jl (SPK/PCK kernel reader)
├── CalcephEphemeris.jl (CALCEPH wrapper)
├── IERSConventions.jl (Earth orientation, precession, nutation)
├── AstroModels.jl (force models: gravity, SRP, drag)
└── FrameTransformations.jl (frame graph, state transformations)
Shared Design Patterns
- Order-parameterized: All computations use
vector3/6/9/12androtation3/6/9/12for position through jerk (up to 4th order) - Graph-based: Frames and timescales are directed graphs with automatic path-finding
- AD-compatible: ForwardDiff via
JSMDDiffTagandFunctionWrappersWrapperwith pre-baked dual-number types - Allocation-free: StaticArrays, FunctionWrappers, PreallocationTools throughout
- NAIF IDs: Integer body/frame identifiers (399=Earth, 301=Moon, etc.)
- Time: Seconds since J2000 (TDB by default) via
Tempo.Epoch
JSMDInterfaces.jl (Foundation)
Defines abstract types and interface stubs via @interface macro:
JSMDInterfaces.Frames:vector3/6/9/12,rotation3/6/9/12JSMDInterfaces.Ephemeris:ephem_compute!,ephem_orient!,AbstractEphemerisProviderJSMDInterfaces.Graph:add_vertex!,add_edge!,get_path,has_pathJSMDInterfaces.Models:parse_data,parse_model,compute_accelerationJSMDInterfaces.Bodies:body_rotational_elements+ derivatives
JSMDUtils.jl (Utilities)
- Math:
unitvec,cross3/6/9/12, angle conversions, Akima spline interpolation, rotation derivative helpers (angle_to_δdcm,skew) - AD:
derivative,gradient!,jacobian!,hessian!wrappers around ForwardDiff - File I/O:
JSON,YAML,TXTfile type wrappers withload()
SMDGraphs.jl (Graph Infrastructure)
Lightweight wrappers around Graphs.jl implementing the JSMDInterfaces.Graph interface. Provides MappedGraphs with Dijkstra path-finding used by Tempo and FrameTransformations.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?