|
| 1 | +# Commands |
| 2 | + |
| 3 | +## spending |
| 4 | + |
| 5 | +Show spending breakdown for a given month. |
| 6 | + |
| 7 | +```bash |
| 8 | +riseup spending # Current month by category |
| 9 | +riseup spending prev # Previous month |
| 10 | +riseup spending --by merchant --top 10 # Top 10 merchants |
| 11 | +riseup spending --by source # By payment source (bank/card) |
| 12 | +riseup spending --category "כלכלה" # Filter one category |
| 13 | +``` |
| 14 | + |
| 15 | +| Flag | Description | |
| 16 | +|------|-------------| |
| 17 | +| `--by <dimension>` | Group by: `category`, `merchant`, or `source` (default: `category`) | |
| 18 | +| `--category <name>` | Filter by category name | |
| 19 | +| `--top <n>` | Show top N only | |
| 20 | + |
| 21 | +## income |
| 22 | + |
| 23 | +Show income summary for a given month. |
| 24 | + |
| 25 | +```bash |
| 26 | +riseup income # Current month income |
| 27 | +riseup income --salary-only # Only salary entries |
| 28 | +riseup income prev # Previous month |
| 29 | +``` |
| 30 | + |
| 31 | +| Flag | Description | |
| 32 | +|------|-------------| |
| 33 | +| `--salary-only` | Only show salary entries | |
| 34 | + |
| 35 | +## transactions |
| 36 | + |
| 37 | +List all transactions with powerful filtering. |
| 38 | + |
| 39 | +```bash |
| 40 | +riseup transactions # List all this month |
| 41 | +riseup transactions --search "carrefour" # Search by merchant |
| 42 | +riseup transactions --category "רכב" # Filter by category |
| 43 | +riseup transactions --expenses --sort amount # Expenses sorted by amount |
| 44 | +riseup transactions --min 500 --max 2000 # Amount range |
| 45 | +``` |
| 46 | + |
| 47 | +| Flag | Description | |
| 48 | +|------|-------------| |
| 49 | +| `--search <text>` | Filter by merchant name | |
| 50 | +| `--category <name>` | Filter by category | |
| 51 | +| `--min <amount>` | Minimum amount | |
| 52 | +| `--max <amount>` | Maximum amount | |
| 53 | +| `--income` | Only income transactions | |
| 54 | +| `--expenses` | Only expense transactions | |
| 55 | +| `--sort <field>` | Sort by: `date` or `amount` (default: `date`) | |
| 56 | + |
| 57 | +## balance |
| 58 | + |
| 59 | +Show current bank account balances across all connected accounts. |
| 60 | + |
| 61 | +```bash |
| 62 | +riseup balance |
| 63 | +``` |
| 64 | + |
| 65 | +## debt |
| 66 | + |
| 67 | +Show credit card debt at a glance. |
| 68 | + |
| 69 | +```bash |
| 70 | +riseup debt |
| 71 | +``` |
| 72 | + |
| 73 | +## trends |
| 74 | + |
| 75 | +Month-over-month comparison of income vs. expenses. |
| 76 | + |
| 77 | +```bash |
| 78 | +riseup trends # 3-month comparison (income vs expenses vs net) |
| 79 | +riseup trends 6 # 6-month comparison |
| 80 | +riseup trends --by category # Breakdown by category over time |
| 81 | +``` |
| 82 | + |
| 83 | +| Flag | Description | |
| 84 | +|------|-------------| |
| 85 | +| `--by <dimension>` | Breakdown level: `total` or `category` (default: `total`) | |
| 86 | + |
| 87 | +## plans |
| 88 | + |
| 89 | +Show savings goals and progress. |
| 90 | + |
| 91 | +```bash |
| 92 | +riseup plans |
| 93 | +``` |
| 94 | + |
| 95 | +## insights |
| 96 | + |
| 97 | +Show AI-generated financial insights from RiseUp. |
| 98 | + |
| 99 | +```bash |
| 100 | +riseup insights |
| 101 | +``` |
| 102 | + |
| 103 | +## account |
| 104 | + |
| 105 | +### account banks |
| 106 | + |
| 107 | +Show connected banks and cards. |
| 108 | + |
| 109 | +```bash |
| 110 | +riseup account banks |
| 111 | +``` |
| 112 | + |
| 113 | +### account subscription |
| 114 | + |
| 115 | +Show subscription details. |
| 116 | + |
| 117 | +```bash |
| 118 | +riseup account subscription |
| 119 | +``` |
| 120 | + |
| 121 | +## login / logout / status |
| 122 | + |
| 123 | +Authentication commands. |
| 124 | + |
| 125 | +```bash |
| 126 | +riseup login # Opens Chrome for Google OAuth sign-in |
| 127 | +riseup logout # Clear session |
| 128 | +riseup status # Show login status and account info |
| 129 | +``` |
| 130 | + |
| 131 | +See [Getting Started](/getting-started#authentication) for more details on authentication. |
0 commit comments