plasalid 0.6.0 → 0.6.1
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 +11 -3
- package/dist/cli/format.js +1 -1
- package/dist/cli/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -5,17 +5,25 @@
|
|
|
5
5
|
<h1 align="center">Plasalid</h1>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
-
<strong>The Harness for Personal Finance</strong>
|
|
8
|
+
<strong>The Harness Layer for Personal Finance</strong>
|
|
9
9
|
</p>
|
|
10
10
|
|
|
11
11
|
<p align="center">
|
|
12
|
-
|
|
12
|
+
Turn your financial documents into structured, insightful, AI-readable context.
|
|
13
13
|
</p>
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
<br />
|
|
17
17
|
|
|
18
|
-
In
|
|
18
|
+
In US/EU, a financial data platform like Plaid is empowering most personal-finance apps. One connection, every app sees the same unified view of your accounts. Most of the world doesn't have that. In Thailand, for example, there's no equivalent to Plaid; 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. The picture stays fragmented.
|
|
19
|
+
|
|
20
|
+
Without a unified view, the consequences are concrete. Subscriptions stay active long after they're forgotten. Unknown charges go unverified. Brokerage accounts opened years ago drift unchecked. Debt grows 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, if they get made at all.
|
|
21
|
+
|
|
22
|
+
Plasalid addresses this by parsing financial documents into a single structured ledger on your own machine. Drop any document into a folder — bank statements, credit-card statements, payslips, brokerage statements — and Plasalid extracts every transaction, balance, and holding into a double-entry database.
|
|
23
|
+
|
|
24
|
+
Plasalid also comes with a built-in chat that queries the ledger 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.
|
|
25
|
+
|
|
26
|
+
The same 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.
|
|
19
27
|
|
|
20
28
|
## Features
|
|
21
29
|
|
package/dist/cli/format.js
CHANGED
|
@@ -56,7 +56,7 @@ export function formatError(error, context) {
|
|
|
56
56
|
export function banner() {
|
|
57
57
|
return (chalk.cyan("<°(((>< ") +
|
|
58
58
|
chalk.bold("Plasalid") +
|
|
59
|
-
chalk.dim(" ·
|
|
59
|
+
chalk.dim(" · The Harness Layer for Personal Finance"));
|
|
60
60
|
}
|
|
61
61
|
function stripAnsi(str) {
|
|
62
62
|
return str.replace(ANSI_RE, "");
|
package/dist/cli/index.js
CHANGED
|
@@ -15,7 +15,7 @@ function ensureConfigured() {
|
|
|
15
15
|
}
|
|
16
16
|
program
|
|
17
17
|
.name("plasalid")
|
|
18
|
-
.description("
|
|
18
|
+
.description("The Harness Layer for Personal Finance")
|
|
19
19
|
.version(version)
|
|
20
20
|
.addHelpCommand(false)
|
|
21
21
|
.showHelpAfterError(`Run ${chalk.cyan("plasalid --help")} for the list of commands.`)
|
package/package.json
CHANGED