Skip to content

Commit 6ab72b3

Browse files
committed
docs: extensive examples in --help (v0.2.11)
1 parent 4367647 commit 6ab72b3

2 files changed

Lines changed: 53 additions & 8 deletions

File tree

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "thoth-cli",
3-
"version": "0.2.10",
3+
"version": "0.2.11",
44
"description": "𓅝 Astrological calculations from the command line. Swiss Ephemeris precision. Built for humans and agents.",
55
"author": "AKLO <aklo@aklolabs.com>",
66
"license": "MIT",

packages/cli/src/bin.ts

Lines changed: 52 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,60 @@ program
2727
.name('thoth')
2828
.description(`𓅝 Astrological calculations from the command line
2929
30-
Examples:
30+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
31+
NATAL CHARTS
32+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
3133
thoth chart --date 1991-07-08 --time 14:06 --city "New York"
34+
thoth chart --date 1991-07-08 --time 14:06 --lat 40.7128 --lng -74.0060
35+
thoth chart --date 1991-07-08 --time 14:06 --city "New York" --svg-file chart.svg
36+
37+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
38+
TRANSITS (current planets → natal)
39+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
3240
thoth transit --natal-date 1991-07-08 --natal-time 14:06 --city "New York"
33-
thoth solar-return --natal-date 1991-07-08 --natal-time 14:06 --city "New York" --year 2026
34-
thoth synastry --date1 1991-07-08 --time1 14:06 --city1 "New York" --date2 2026-02-26 --time2 04:35 --city2 "New York"
35-
thoth progressions --natal-date 1991-07-08 --natal-time 14:06 --city "New York" --target-date 2026-03-01
36-
thoth moon
37-
thoth ephemeris --body pluto`)
38-
.version('0.2.10');
41+
thoth transit --natal-date 1991-07-08 --natal-time 14:06 --city "NYC" --orb 1
42+
43+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
44+
RETURNS (Solar & Lunar)
45+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
46+
thoth solar-return --natal-date 1991-07-08 --natal-time 14:06 --city "NYC" --year 2026
47+
thoth lunar-return --natal-date 1991-07-08 --natal-time 14:06 --city "NYC"
48+
49+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
50+
RELATIONSHIP (Synastry & Composite)
51+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
52+
thoth synastry --date1 1991-07-08 --time1 14:06 --city1 "NYC" \\
53+
--date2 1990-03-15 --time2 09:30 --city2 "LA"
54+
thoth composite --date1 1991-07-08 --time1 14:06 --city1 "NYC" \\
55+
--date2 1990-03-15 --time2 09:30 --city2 "LA"
56+
57+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
58+
PROGRESSIONS & DIRECTIONS
59+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
60+
thoth progressions --natal-date 1991-07-08 --natal-time 14:06 --city "NYC" \\
61+
--target-date 2026-03-01
62+
thoth solar-arc --natal-date 1991-07-08 --natal-time 14:06 --city "NYC" \\
63+
--target-date 2026-03-01
64+
65+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
66+
HORARY (question-based divination)
67+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
68+
thoth horary --question "Should I take the job?" --city "New York"
69+
thoth horary --question "Will we reconcile?" --lat 40.7128 --lng -74.0060
70+
71+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
72+
EPHEMERIS & MOON
73+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
74+
thoth moon # current moon phase
75+
thoth ephemeris --body pluto # where is pluto now?
76+
thoth ephemeris --body saturn --date 2027-01-15 # saturn on specific date
77+
thoth ephemeris-range --body pluto --from 2024-01-01 --to 2030-01-01 --step month
78+
79+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
80+
REFERENCE
81+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
82+
thoth key # full symbol reference`)
83+
.version('0.2.11');
3984

4085
// Chart command
4186
program

0 commit comments

Comments
 (0)