astral-transit-snapshot

/home/avalon/.hermes/skills/astrology/astral-transit-snapshot/SKILL.md · raw

Astral Transit Snapshot

When to use

Use when the user asks "what are the transits now?", "what's hitting my chart?", "any big transits today?", or any short, present-tense ask about current sky activity in relation to a natal chart. This is the succinct transit skill — not a full reading, not a calendar.

For long horizons / calendar feeds / .ics files → use astral-transit-calendar. For a full multi-lens reading → use astrology-reading-compose.

Parameters

Required workflow

1. Time + subject

2. Get current transits

curl -sS https://transit-list-demo.apps.poofc.com/api/transits/current

Returns current positions (sign, degree) for all planets + nodes.

3. Get / load natal chart

If a cached chart exists in the KB (charts/<slug>-<hash>.json), load it. Otherwise compute:

curl -sS "https://transit-list-demo.apps.poofc.com/api/chart?utc=DD/MM/YYYY/HH/mm/0&coordinates=LAT%20LON"

Then save via kb.py save_chart.

4. Compute transit→natal aspects in code (the snapshot core)

The API doesn't return a ranked transit-to-natal aspect list, so compute it locally. Compare every transiting body's longitude to every natal planet/angle (Asc, MC, IC, Desc included).

Aspects: conjunction (0°), opposition (180°), trine (120°), square (90°), sextile (60°). Optionally semi-square (45°) and quincunx (150°) if the orb is very tight.

Orb rules (snapshot — tighter than calendar): | Transiting body | Orb | |---|---| | Moon | 1.0° | | Mercury, Venus, Mars, Nodes | 1.5° | | Sun | 2.0° | | Jupiter, Saturn | 2.0° | | Uranus, Neptune, Pluto | 1.5° |

Tighter than calendar orbs because a snapshot is about what's loud right now, not what's possible across a window.

Rank by exactness: sort by absolute orb ascending. The tightest 3–5 aspects are the headline.

Tag applying vs separating if you can compute it (transit speed vs natal position): applying = sharper, near-future; separating = fading. If you can't compute speed reliably, omit the tag rather than guess.

5. Layer fast-mover spotlight

Independent of the ranked aspect list, surface what the fast movers (Moon, Mercury, Venus, Sun, Mars) are doing right now: - What sign + house they're in (use the natal house framework). - Any current aspect to a personal natal body or angle that's within orb. - Any imminent ingress within ~48 hours (use a quick scan: take the body's current longitude and current daily speed; if it crosses a sign boundary within 48h, mention it).

These short-term layers are what give the snapshot its temporal punch.

Reply formatting (succinct)

Aim for a mobile-readable response — short, scannable, no walls of text. Strict order:

  1. Header line. One line, italic: subject name + local time + UTC.

    Alex · 2026-05-23 08:30 PDT (15:30 UTC)

  2. 🎯 Exact now (the headline). A bulleted list of the 3–5 tightest transit→natal aspects, in transit-first format:

    Moon ☌ natal Venus — 0°12′ (applying) — Cancer 14° • Mars △ natal Sun — 0°48′ — Scorpio 4° → Libra 3° • Saturn □ natal Mercury — 1°30′ (separating) — Pisces 18° → Sagittarius 19°

Bold the aspect, show exact orb in degrees/minutes, tag applying/separating only if confidently computed.

  1. 🌙 Fast layer. 2–4 short bullets on Moon / Mercury / Venus / Sun / Mars positions and any sign change within 48h. House placement (in the natal chart) in parentheses.

    • Moon in Cancer (4th) — quiet/private register today • Mercury 28° Gemini → enters Cancer in ~14h

  2. 📖 Story (1 short paragraph). 2–4 sentences synthesizing the headline aspects into a coherent present-moment picture. Lead with the tightest aspect — that's the most temporally significant signal. If a focus was supplied, tie it in here. No long lists. No "folk" language.

  3. One-breath summary. A single bold sentence at the bottom.

If there are NO aspects within snapshot orbs, say so plainly and lean on the fast-layer + sign/house framing for the story. Don't pad.

Pitfalls

Verification