klio 1.4.6 → 1.4.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/src/cli/cli.js +4 -7
package/README.md
CHANGED
|
@@ -116,7 +116,7 @@ Then, instead using `--i` for the commands from above you can use `--wp <id>` i.
|
|
|
116
116
|
- **Element distribution**: `klio --el` - Shows element distribution of planets in a horizontal chart. combine with `--wp <id>` or `--i`
|
|
117
117
|
- **Aspect figures**: `klio --af` - Shows active aspect figures like T-squares, Grand Trines, etc. Combine with `--wp <id>` or `--i` or `--d <"DD.MM.YYYY HH:MM>` or `--hs <house-system>`
|
|
118
118
|
- **Transits**: `klio --tr` - Shows personal transits based on birth data. Combine with `--wp <id or --i>` and optional `--d <"DD.MM.YYYY HH:MM>`
|
|
119
|
-
|
|
119
|
+
- **Transit Houses**: `klio --s --tra --i`
|
|
120
120
|
### Past and Future Aspects
|
|
121
121
|
|
|
122
122
|
- **Past aspects**: `klio --v <count> [planet1] [aspect-type] [planet2]` - Shows past aspects (Format: --v <count> planet1 aspectType planet2) Available aspect types: c, o, s, t, se (conjunction, opposition, square, trine, sextile)
|
package/package.json
CHANGED
package/src/cli/cli.js
CHANGED
|
@@ -257,7 +257,7 @@ program
|
|
|
257
257
|
.option('--p <prompt>', 'Asks a question to the AI model (e.g. "Which careers suit this position?")')
|
|
258
258
|
.option('--el', 'Shows the element distribution of planets in a horizontal chart')
|
|
259
259
|
.option('--af', 'Shows active aspect figures like T-squares, Grand Trines, etc.')
|
|
260
|
-
.option('--
|
|
260
|
+
.option('--tra', 'Shows personal transits based on birth data')
|
|
261
261
|
.option('--transit-aspekte', 'Shows personal transit aspects (Transit → Radix)')
|
|
262
262
|
.option('--tr', 'Shows personal transit aspects (Transit → Radix) (short form)')
|
|
263
263
|
.option('--v <count>', 'Shows past aspects between two planets (Format: --v <count> planet1 aspectType planet2)')
|
|
@@ -516,8 +516,8 @@ program
|
|
|
516
516
|
return;
|
|
517
517
|
}
|
|
518
518
|
|
|
519
|
-
// Show personal transits if --
|
|
520
|
-
if (options.
|
|
519
|
+
// Show personal transits if --tra option is specified (no planet required)
|
|
520
|
+
if (options.tra) {
|
|
521
521
|
// Person data is required for transits
|
|
522
522
|
const personDataToUse = getPersonDataToUse(options);
|
|
523
523
|
if (!personDataToUse.data) {
|
|
@@ -604,10 +604,7 @@ program
|
|
|
604
604
|
}
|
|
605
605
|
|
|
606
606
|
console.log('================================================================================');
|
|
607
|
-
|
|
608
|
-
console.log('Example: If Jupiter is in Cancer and you have Scorpio ASC, this shows in which');
|
|
609
|
-
console.log('of your birth houses the transit Jupiter is located.');
|
|
610
|
-
|
|
607
|
+
|
|
611
608
|
// Send question to AI model if --p option is specified
|
|
612
609
|
if (options.p) {
|
|
613
610
|
// Create a data object for AI with transit information
|