Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Star Tracker

ASecurity

Use when the task is star identification, boresight and field of view selection, lost in space versus tracking mode, cross-boresight versus roll pointing accuracy, or star tracker update rate. Determine star tracker attitude determination for spacecraft ADCS: identify measured star centroids against an onboard star catalog, compute the angular separation between each measured centroid and its catalog star, and return the best match inside the field of view. The logic normalizes unit vectors, ...

2 stars
0 votes
0 copies
0 views
Added 9/27/2026
ai-agentspythonangular

Works with

claude code

Security Analysis

A100/100

Scanned 9/27/2026

Install to Claude Code

$npx -y skills add ashfordeOU/aero-agent-skills --skill star-tracker --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Star Tracker?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Star Tracker
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-star-tracker/badge)](https://www.skillsdirectory.com/skills/ashfordeou-star-tracker)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: star-tracker
description: "Use when the task is star identification, boresight and field of view selection, lost in space versus tracking mode, cross-boresight versus roll pointing accuracy, or star tracker update rate. Determine star tracker attitude determination for spacecraft ADCS: identify measured star centroids against an onboard star catalog, compute the angular separation between each measured centroid and its catalog star, and return the best match inside the field of view. The logic normalizes unit vectors, finds the nearest catalog star within the field of view radius, returns the matched star id plus boresight error in arcseconds, and selects lost in space or tracking mode from a prior attitude. Trigger: star identification, star catalog, boresight, field of view, lost in space, tracking mode, angular separation, pointing accuracy, attitude determination."
license: Apache-2.0
compliance: STANDARDS-REF
standards:
  - id: ecss
    reference-only: true
gated: false
domain: space-systems
pack: space-systems
compatibility: "agentskills.io SKILL.md; any SKILL.md host (Claude Code, Hermes, OpenClaw)"
metadata:
  domain: space-systems
  subdomain: adcs
  tags: [adcs, star-tracker, star-identification, star-catalog, boresight, attitude-determination, lost-in-space, field-of-view]
  version: 0.1.0
  author: Aero Agent Skills
---

# Star Tracker Attitude Determination (space-systems/adcs/star-tracker)

Use when the task is star tracker attitude determination: matching
measured star centroids to a star catalog, computing the angular
separation between a measured centroid and its catalog star, choosing
the boresight and field of view, or deciding between lost in space and
tracking mode.

## Domain quick reference

- A star tracker is the ADCS attitude reference with the highest
  pointing accuracy: it images stars, measures their centroid
  positions on the focal plane, and matches the pattern against an
  onboard star catalog to recover the instrument attitude.
- Star identification is the matching step: each measured centroid is
  compared against catalog stars by angular separation
  theta = acos(dot(u_meas, u_cat)) between unit vectors, and the best
  match inside the field of view is accepted.
- The boresight is the tracker optical axis, the center of the field
  of view. The field of view (FOV) is the angular window the sensor
  sees; a square FOV of half-angle fov/2 accepts catalog stars within
  that radius of the boresight.
- Lost in space mode identifies stars with no prior attitude by
  searching the full star catalog; tracking mode uses the prior
  attitude to predict which catalog stars should appear and matches
  within a small tracking radius.
- Pointing accuracy is anisotropic: cross-boresight error is set by
  centroid noise relative to focal length, while roll error about the
  boresight is larger because star positions on the focal plane barely
  change under roll.
- Update rate: a star tracker produces attitude at rates from a few
  Hz to tens of Hz; the ADCS uses the matched-star angular separation
  as the pointing error bound between updates.

## Workflow

1. Normalize the catalog star unit vectors and the measured centroid
   unit vector.
2. Compute the angular separation between each measured centroid and
   every candidate catalog star: acos of the dot product, clamped to
   [-1, 1] before the acos call.
3. Accept the nearest catalog star when its separation is within the
   FOV half-angle; return the matched star id and the separation as
   the boresight error.
4. Select the mode: tracking when a prior attitude exists and the
   nearest match is within the tracking radius, otherwise lost in
   space against the full catalog.
5. Report the boresight error in arcseconds and compare the achieved
   pointing accuracy against the requirement.

## Pitfalls

- Comparing unnormalized vectors: the dot product must use unit
  vectors or the acos separation is meaningless.
- Letting floating point round-off push the dot product outside
  [-1, 1], which makes acos return nan; clamp first.
- Accepting a match outside the FOV: the nearest catalog star is not
  a valid identification when its separation exceeds the FOV
  half-angle.
- Choosing lost in space when a valid prior attitude exists: tracking
  mode is cheaper and more robust.
- Reporting roll accuracy as if it equaled cross-boresight accuracy.
- Confusing the field of view (angular window, half-angle fov/2) with
  the boresight (its center direction).

## Behavior contract (gate 3)

The star identification, boresight, and mode logic is exercised by the
gate 3 contract test: scripts/test_star_tracker.py against
scripts/star_tracker_logic.py (stdlib unittest, offline). Run:
python3 scripts/test_star_tracker.py

## Compliance

- ECSS (European Cooperation for Space Standardization) standards are
  freely downloadable, copyright ESA; cite the source and paraphrase.
  This leaf cites ECSS as reference only per standards-map.yaml; the
  logic here is generic star tracker geometry, not ECSS text.
- compliance: STANDARDS-REF, gated: false.

Attribution

ashfordeOUashfordeOU
View sourceMore from ashfordeOU →
SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1074701 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

694821 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →