Travel Planner for Astrological Scheduling with AI

Astrological calculation with LLM prompts for any AI platform for accurate and practical travel planning.

Astrological forecasting is directly and practically useful for travel planning. You may be asking when's the best time to schedule a trip and what you might expect to experience. With an astrological travel planner, you can determine the best and worst days for travel each month, taking Mercury retrograde periods, Moon void-of-course windows, and other astrological "bad travel days" into account. It is useful for choosing departure dates when you have flexibility, and for understanding in retrospect why a particular trip felt smooth or rough.

AstroPrompt has a Travel Planner view to evaluate travel conditions across a chosen month. It uses Astrolog to obtain monthly transit-intensity tables, Moon void-of-course windows, Mercury retrograde periods, house ingresses, and Moon phases. AstroPrompt sends a large dataset and a travel-astrologer prompt to any LLM that asks for date-range recommendations and a best-cluster suggestion rather than open-ended interpretation.

For an introduction to the process, see calculation-first AI astrology workflow.

Before you get started

Travel Planner is an option in the AstroPrompt navigation bar, and the fastest way to get a result is to use AstroPrompt. The tutorial below explains how to obtain the same result from any LLM yourself. To do it yourself you will need to install Astrolog, write the chart output to a file, and combine the Astrolog dataset with the prompts shown below. AstroPrompt makes the workflow easier: it runs Astrolog automatically, lets you pick from popular LLMs (such as OpenAI GPTs, Claude Opus, or Google Gemini), and streamlines the prompt assembly. For advanced users, AstroPrompt Pro lets you edit the prompts so you can customize tone, interpretation, or output structure. Try AstroPrompt now; it is FREE.

Travel Planner

The Travel Planner shows a single month of peak-intensity transits, the Moon void-of-course schedule, the Mercury retrograde status (in or out of retrograde, and the next station date), 3rd-house and 9th-house ingresses (when birth time is known), New Moon and Full Moon dates, and a transit-intensity table.

A prompt for a full report produces a "best travel windows" list and an "avoid travel periods" list with specific date ranges.

How to get an accurate LLM response

AI can't calculate planetary positions accurately or read an ephemeris reliably. To get an accurate and reliable interpretation, you must provide this astrological data:

  • A month of personal transits, restricted to peak intensity (8 to 9 in Astrolog's strength index).
  • Restriction to faster-moving transiting planets (Mercury through Saturn, plus Uranus) since travel timing turns on shorter windows.
  • The Moon void-of-course schedule for the month.
  • The Mercury retrograde status across the month.
  • House ingress dates for the 3rd house (short trips) and 9th house (long-distance travel) when birth time is known.
  • New Moon and Full Moon dates within the month.

Astrolog commands

The Travel Planner runs three Astrolog commands chained together, plus a separate Mercury retrograde service call:

# Transit calendar for the month:
        astrolog -z {tz} -z0 0 \
                 -qa {natal_month} {natal_day} {natal_year} {natal_time} 0 {lon} {lat} \
                 -V {month} {year} \
                 -R0 Moo Mer Ven Sun Mar Jup Sat Ura Nep Plu Asc Mid \
                 -RT0 Mer Ven Sun Mar Jup Sat Ura

        # House ingresses (only when birth time is known):
        astrolog -z {tz} -z0 0 \
                 -qa {natal_month} {natal_day} {natal_year} {natal_time} 0 {lon} {lat} \
                 -C -R0 Asc 2nd 3rd 4th 5th 6th Des 8th 9th Mid 11th 12th \
                 -RT0 Mer Ven Sun Mar Jup Sat Ura Nep Plu -RA0 Con \
                 -t {month} {year}

        # New and Full Moons:
        astrolog -qb {month} 1 {year} 12:00 0 {tz} 0 0 -dm -R0 Sun Moo \
                 -RA0 Con Opp
        
  • `-qa` defines the natal chart anchor with UTC time (0).
  • `-V {month} {year}` produces the transit-intensity tables for the month.
  • `-RT0 Mer Ven Sun Mar Jup Sat Ura` is the key restriction: travel timing depends on Mercury (communications and short trips), Venus (ease and cooperation), Sun, Mars (energy and friction), Jupiter (luck and expansion), Saturn (delay and structure), and Uranus (disruption). Outer planets beyond Uranus move too slowly to matter at the monthly resolution.
  • `-R0 Moo Mer Ven Sun Mar Jup Sat Ura Nep Plu Asc Mid` keeps the natal anchor list complete so transits can be evaluated against any natal point including the angles.
  • `-C` on the ingress command includes house cusps so 3rd-house and 9th-house entries are detected.
  • `-RA0 Con` restricts the ingress aspect set to conjunctions, since a planet entering a house is a conjunction with that cusp.
  • `-t {month} {year}` is the transit calendar for the month, which AstroPrompt parses for ingress events.
  • `-qb` and -dm `` together with -R0 Sun Moo -RA0 Con Opp produce just the New Moon (Sun-Moon conjunction) and Full Moon (Sun-Moon opposition) events.

In AstroPrompt, the Moon void-of-course schedule and Mercury retrograde windows come from cached event data computed by separate services and merged into the data pane.

Prompts

Astrological data is combined with a user's prompt to create the context for a question that begins an AI chat. The LLM receives everything (including its responses to previous questions) as a single context block, but it is easier for us if we assemble the context from three specific prompts: a system prompt, a data description prompt, and a user prompt that asks for a report. In AstroPrompt Pro, you can edit and save each of these prompts to customize tone, interpretation, or output structure. For this tutorial, combine each of these prompts with the astrological data and then paste the entire block into the AI chat.

System Prompt

The foundational instruction that sets the AI's overall tone, style, and approach, which applies to every message in the conversation. The default produces balanced, measured analysis. You can change it to anything: terse bullet-point summaries, a specific cultural or traditional framework, a particular language, or even a lengthy style guide that reproduces your own voice for client-facing work. This is the most powerful lever for fundamentally changing the character of the AI's responses.

The system prompt is shared across every AstroPrompt view:

When generating astrological forecasts, do not use rhetorical or
        persuasive devices typical of popular horoscope writing. Avoid inserting
        emotional appeals or literary devices. Avoid the following:

        • Imperatives and exhortative tone (e.g., "Embrace change," "Let go of
          the past," "Surround yourself with warmth")
        • Evocative metaphors and symbolic language (e.g., "personal
          renaissance," "magnetic energy," "mirror of the soul")
        • Overly enthusiastic, poetic, or cute phrasing
        • Vague affirmations or inspirational advice not grounded in planetary
          positions

        Instead, use a neutral, informative tone. Focus on:

        • Relevant planetary influences and their timing
        • Which life areas are affected and how
        • Expected themes based on astrological interpretation
        • Possibility framing using modal verbs (e.g., may, might, could)
          without interpretive flourish
        • Objective language suitable for readers seeking analysis rather than
          affirmation

        Structure any planner forecast by timeline or topic (e.g., career,
        relationships, health).
        

AstroPrompt adds a terminology directive (advanced or beginner) based on its settings.

Data Description

This prompt tells the AI what the raw astrological data actually represents. This is how the AI understands the underlying dataset. Advanced users can use this to direct the AI's attention toward specific technical elements they care about most.

After the chained output, AstroPrompt appends a description that flags the dataset's role:

This data contains monthly transit-intensity tables with peak-orb
        indices, Moon Void-of-Course periods, Mercury retrograde windows, house
        ingresses, and Moon phases. Only transits at peak intensity (8-9) are
        shown. The data is designed for evaluating travel conditions and timing.
        

The "Only transits at peak intensity (8-9) are shown" line tells the model not to interpret blank columns as quiet periods. Many transits are present below threshold and have been filtered by Astrolog.

Full Report Prompt

AstroPrompt provides detailed instructions when a user wants a full report. This is typically the longest prompt and has the greatest single impact on report quality and structure. The default walks the AI through a specific analytical sequence. You can replace this entirely as you wish, for example, to focus the report on career and finance, restructure it around specific techniques, or direct the LLM to use the point of view of a favored lineage or tradition.

The full report prompt structures the month around best windows, avoid periods, and a final summary:

You are a travel astrologer. Use the provided dataset—which includes (a)
        monthly transit-intensity tables with peak-orb indices, (b) Moon
        Void-of-Course periods, (c) Mercury retrograde windows, (d) house
        ingresses, and (e) Moon phases—to evaluate travel conditions for the
        month. Identify the optimal and least optimal travel periods by
        analyzing: • Hard transits from Mercury, Venus, Sun, Mars, Saturn,
        Uranus to the natal personal planets or angles, especially those
        suggesting delays, disruptions, or safety risk. • Beneficial transits
        involving Jupiter or Venus that may support ease, flow, timing, and
        problem-solving. • Moon VOC periods that may correlate with scheduling
        issues or reduced momentum. • Relevant house ingresses (3rd house for
        short trips, 9th house for long-distance travel). • The influence of New
        Moons and Full Moons on timing and decisiveness. Based on these factors,
        produce: Best Travel Windows (with specific date ranges and brief
        explanations). Avoid Travel Periods (with specific date ranges).
        Conclude with a concise monthly summary recommending the most optimal
        departure dates and suggesting a "best cluster" (and second best).
        Conclude by inviting the user to provide specific flight dates and times
        for a personalized evaluation.
        

The "specific date ranges" requirement is the part that turns the prompt into a planning tool. The "best cluster" closer asks the model to pick a single primary recommendation rather than a balanced overview.

Unique features of the Travel Planner prompt

  • The transit set is restricted to Mercury through Uranus, the planets whose timing actually matters for trips ranging from a weekend to a month.
  • The 3rd house (short journeys) and 9th house (long-distance travel) ingresses are flagged separately, mirroring traditional travel-electional rules.
  • Moon VOC periods are computed from the cached monthly schedule, not invented from training data.
  • Mercury retrograde status is computed from a cached year-level service, with exact station dates available.
  • The full report prompt requires both a "best" and "avoid" output, which prevents the model from hedging.
  • The closing invitation to share flight dates pivots from monthly forecast to per-trip evaluation, giving the user a clear next step.

What's Next

This was written in May 2026, describing the data and prompts used in AstroPrompt version 1.0. Astrologers are just beginning to explore the capabilities of AI as a tool for astrological insight. If you've got suggestions for a better dataset or improved prompts, I'd love to hear from you. Email me at hello@timecasters.com.