plasalid 0.6.1 → 0.6.2
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 +23 -32
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,45 +15,36 @@
|
|
|
15
15
|
|
|
16
16
|
<br />
|
|
17
17
|
|
|
18
|
-
In US
|
|
18
|
+
A unified view of personal financial data is critical. In the US and EU, a financial data aggregator like Plaid empowers most finance apps: one connection, and every app sees the same unified view of your accounts. Most of the world doesn't have that, including Thailand, where there's no such aggregator. All bank data is siloed: knowing where your financial status stands means logging into five bank apps one by one — and with such a steep learning curve, most people just don't bother - and that's why Plasalid emerged
|
|
19
19
|
|
|
20
|
-
Without a
|
|
20
|
+
Data has stayed fragmented for decades. Without a way to bring it together, personal finance remains hard to manage even in the era of AI. Subscriptions stay active long after they're forgotten, unknown charges go unverified, and bank accounts opened years ago drift unchecked.
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
Debt may silently grow beyond what any single statement shows, and savings can't be tracked against a complete baseline. Decisions about how to clear debt, where to cut spending, or what you actually own get made on partial information.
|
|
23
23
|
|
|
24
|
-
Plasalid
|
|
24
|
+
Plasalid addresses this with a simple founding concept: let users drop all their financial documents — bank statements, credit-card statements, payslips, brokerage statements — onto their own machine, where Plasalid leverages AI to extract every transaction, balance, and holding into a single, structured, double-entry database that serves as context for future processing.
|
|
25
25
|
|
|
26
|
-
|
|
26
|
+
Moreover, Plasalid comes with a built-in agentic chat that queries the data directly, so questions like which subscriptions are still active, where money went last month, or what your current net worth is can be answered against actual records rather than estimates. You can talk with your money on Plasalid to help you understand your financial situation and plan efficiently.
|
|
27
27
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
Plasalid is a chain of three stages: **Scan → Resolve → Chat.** Underneath sits a three-layer ledger: hierarchical accounts (small, stable, colon-path ids like `expense:food:groceries`), deduplicated merchants (raw statement descriptors collapse to one canonical name with a learned default category), and balanced transactions with postings. Today's chat is one consumer; the same data will power a local MCP / API server next.
|
|
28
|
+
The data ledger also serves as a harness, open to any AI agent that connects to it, so the picture you assemble once is reusable across whatever tools you choose to use.
|
|
31
29
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
- **Drop PDFs in, get balanced transactions out.** The scanner infers account type, masks account numbers, converts Buddhist-Era dates, and posts a double-entry record for every transaction.
|
|
35
|
-
- **Merchants as first-class.** Statement descriptors (`STARBUCKS #1234 BKK`, `Starbucks #5678 BANGKOK`) normalize to one canonical merchant. Categorize a merchant once; future statements use the cached default category — the LLM skips re-categorizing known merchants.
|
|
36
|
-
- **Never pauses to ask you.** Ambiguous rows post best-guess transactions with a structured *unknown* attached; lines the scanner can't confidently categorize land in `expense:uncategorized` for the resolve cleanup pass; unparseable rows are skipped, not guessed. A missing row is better than a wrong row — resolve clears them up later.
|
|
37
|
-
- **Encrypted PDFs handled inline.** Statement password-protected? Plasalid prompts you once, remembers the password (AES-GCM at rest) under a filename pattern, and unlocks next month's statement silently.
|
|
30
|
+
## Features
|
|
38
31
|
|
|
39
|
-
###
|
|
32
|
+
### Unified ledger from any financial documents
|
|
40
33
|
|
|
41
|
-
- **
|
|
42
|
-
- **
|
|
43
|
-
- **Recurrences as first-class data.** Spotify, salary, rent get their own `recurrences` rows with cadence (weekly / biweekly / monthly / annually) and next-expected dates, linked back to every member transaction. Not a UI category — a structured fact any AI consumer can read.
|
|
44
|
-
- **Step-by-step clarification.** Re-poses every scan-noted unknown as one focused question; loops until unknowns are clear or you skip them.
|
|
34
|
+
- **Drop PDFs, get a complete ledger.** Bank statements, credit-card statements, payslips, brokerage statements, and etc. — Plasalid uses AI to parse every transaction, balance, and holding into double-entry ledger.
|
|
35
|
+
- **No aggregator, no per-bank login.** The picture assembles itself from documents you already receive each month. No manual entry. No fragile connector to maintain.
|
|
45
36
|
|
|
46
|
-
###
|
|
37
|
+
### Build in AI agent that queries your real data
|
|
47
38
|
|
|
48
|
-
- **
|
|
49
|
-
- **
|
|
39
|
+
- **Ask in plain language.** "Which subscriptions are still active?" "Where did money go last month?" "How much did I spend at Starbucks this year?" "What's my net worth right now?"
|
|
40
|
+
- **Answers from actual records.** Figures, dates, and merchants are drawn straight from double-entry ledger — never an estimate, never invented.
|
|
50
41
|
|
|
51
|
-
###
|
|
42
|
+
### Local-first, private, and open as harness
|
|
52
43
|
|
|
53
|
-
- **
|
|
54
|
-
- **
|
|
55
|
-
- **
|
|
56
|
-
- **
|
|
44
|
+
- **Everything runs on your machine.** AES-256-encrypted SQLite ledger. Fully encrypted sensitive data. No cloud aggregator, no upstream account, no third-party can touch your data.
|
|
45
|
+
- **PII redacted on the way out.** Your names, your identity, phone numbers, and full account/card numbers are scrubbed before any prompt leaves your machine.
|
|
46
|
+
- **Pluggable AI provider.** Anthropic, or any OpenAI compatible local model — pick at setup; local models keep inference 100% offline.
|
|
47
|
+
- **A harness layer for AI agents.** Plasalid's standard double-entry ledger is the baseline data layer — open for extensibility by design.
|
|
57
48
|
|
|
58
49
|
|
|
59
50
|
## Install
|
|
@@ -89,9 +80,9 @@ Other day-to-day commands:
|
|
|
89
80
|
Run `plasalid --help` to see all available commands.
|
|
90
81
|
|
|
91
82
|
```bash
|
|
92
|
-
plasalid # Interactive
|
|
83
|
+
plasalid # Interactive chat with your data
|
|
93
84
|
plasalid setup # Configure API key, encryption, and data directory
|
|
94
|
-
plasalid data # Open the Plasalid data folder in your
|
|
85
|
+
plasalid data # Open the Plasalid data folder in your file explorer
|
|
95
86
|
plasalid accounts # Show the chart of accounts with balances
|
|
96
87
|
plasalid status # Net worth and this-month income/expense totals
|
|
97
88
|
plasalid transactions # List transactions and their postings (filter by --account, --from, --to, --query, --limit)
|
|
@@ -104,7 +95,7 @@ plasalid resolve # Walk every open unknown and apply your dec
|
|
|
104
95
|
## How It Works
|
|
105
96
|
|
|
106
97
|
```
|
|
107
|
-
Bank
|
|
98
|
+
Bank · Card · Payslip · Brokerage · Transfer · Receipt
|
|
108
99
|
│
|
|
109
100
|
(drop PDFs)
|
|
110
101
|
│
|
|
@@ -114,7 +105,7 @@ plasalid resolve # Walk every open unknown and apply your dec
|
|
|
114
105
|
│
|
|
115
106
|
plasalid scan / plasalid record
|
|
116
107
|
│
|
|
117
|
-
|
|
108
|
+
AI provider (PII-redacted)
|
|
118
109
|
│
|
|
119
110
|
┌──────────▼──────────┐
|
|
120
111
|
│ Encrypted DB │◀──── plasalid resolve
|
|
@@ -123,7 +114,7 @@ plasalid resolve # Walk every open unknown and apply your dec
|
|
|
123
114
|
plasalid
|
|
124
115
|
```
|
|
125
116
|
|
|
126
|
-
Two outbound calls: the AI provider during scan, and the AI provider during chat. Both are PII-redacted. Your financial data is never stored off your machine. No telemetry. No analytics.
|
|
117
|
+
Two outbound calls: the AI provider during scan, and the AI provider during chat. Both are PII-redacted. Your financial data is never stored off your machine. The same encrypted ledger is open to external AI agents through a local MCP / API server (coming next). No telemetry. No analytics.
|
|
127
118
|
|
|
128
119
|
## Security & Privacy
|
|
129
120
|
|