Skip to content

Commit 876a17d

Browse files
Amram Englanderclaude
andcommitted
Add transaction management commands to docs site
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 6235103 commit 876a17d

1 file changed

Lines changed: 129 additions & 0 deletions

File tree

docs/commands.md

Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,135 @@ Show subscription details.
129129
riseup account subscription
130130
```
131131

132+
## Transaction Management
133+
134+
Commands that modify your RiseUp data. Use with care.
135+
136+
### unclassified
137+
138+
List transactions categorized as "כללי" (General) — these need classification.
139+
140+
```bash
141+
riseup unclassified # Current month
142+
riseup unclassified prev # Previous month
143+
riseup unclassified --json # JSON output with transaction IDs
144+
```
145+
146+
### classify
147+
148+
Classify a transaction into a category. By default (`--apply-to all`), also teaches RiseUp to auto-classify future transactions from the same merchant.
149+
150+
```bash
151+
riseup classify <transactionId> "מזון" # Classify + teach future
152+
riseup classify <transactionId> "רכב" --apply-to single # This transaction only
153+
```
154+
155+
| Flag | Description |
156+
|------|-------------|
157+
| `--apply-to <scope>` | `all` (default) = teach future matching, `single` = this transaction only |
158+
159+
Available categories (Hebrew names):
160+
161+
| Category | English |
162+
|----------|---------|
163+
| כלכלה | Groceries |
164+
| אוכל בחוץ | Eating Out |
165+
| מזון | Food |
166+
| רכב | Car/Vehicle |
167+
| קניות | Shopping |
168+
| ביגוד והנעלה | Clothing & Shoes |
169+
| פארמה | Pharmacy |
170+
| בריאות | Health |
171+
| דיגיטל | Digital |
172+
| תקשורת | Telecom |
173+
| תחבורה ציבורית | Public Transport |
174+
| פנאי | Leisure |
175+
| ביטוח | Insurance |
176+
| ארנונה | Property Tax |
177+
| חשמל | Electricity |
178+
| עמלות | Fees |
179+
| העברות | Transfers |
180+
| תשלומים | Payments |
181+
| שיק | Check |
182+
| תרומה | Donations |
183+
| ביטוח לאומי | National Insurance |
184+
| מס הכנסה | Income Tax |
185+
186+
### rename
187+
188+
Change a transaction's display name.
189+
190+
```bash
191+
riseup rename <transactionId> "Grocery Store"
192+
riseup rename <transactionId> "Monthly Rent" --apply-to all # Rename all future matches too
193+
```
194+
195+
| Flag | Description |
196+
|------|-------------|
197+
| `--apply-to <scope>` | `single` (default) = this transaction only, `all` = future matching too |
198+
199+
### comment
200+
201+
Add a note/comment to a transaction.
202+
203+
```bash
204+
riseup comment <transactionId> "monthly recurring"
205+
```
206+
207+
### exclude
208+
209+
Exclude a transaction from budget calculations (e.g., duplicates, internal transfers).
210+
211+
```bash
212+
riseup exclude <transactionId>
213+
```
214+
215+
### include
216+
217+
Re-include a previously excluded transaction back into the budget.
218+
219+
```bash
220+
riseup include <transactionId>
221+
```
222+
223+
### merge
224+
225+
Approve a credit card billing merge — confirms that a bank debit matches its credit card transactions.
226+
227+
```bash
228+
riseup merge <transactionId> # Approve (default)
229+
riseup merge <transactionId> --input loan # Mark as loan repayment
230+
```
231+
232+
| Flag | Description |
233+
|------|-------------|
234+
| `--input <type>` | `approved` (default), `loan`, `clearing`, `addCreds`, `bug` |
235+
236+
### set-budget-type
237+
238+
Mark a transaction as a fixed or variable expense.
239+
240+
```bash
241+
riseup set-budget-type <transactionId> fixed # Fixed (rent, insurance, etc.)
242+
riseup set-budget-type <transactionId> variable # Variable (groceries, eating out, etc.)
243+
```
244+
245+
### adjust
246+
247+
Adjust a predicted transaction amount.
248+
249+
```bash
250+
riseup adjust <envelopeId> 500 --sequence-id <seqId>
251+
riseup adjust <envelopeId> 500 --sequence-id <seqId> --budget-date 2026-03
252+
riseup adjust <envelopeId> 500 --sequence-id <seqId> --no-permanent
253+
```
254+
255+
| Flag | Description |
256+
|------|-------------|
257+
| `--sequence-id <id>` | Sequence ID (required) |
258+
| `--budget-date <date>` | Budget month YYYY-MM (default: current) |
259+
| `--no-permanent` | Apply only for this month |
260+
132261
## login / logout / status
133262

134263
Authentication commands.

0 commit comments

Comments
 (0)