financialclaw 1.0.1 → 1.0.3
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.es.md +9 -0
- package/README.md +9 -0
- package/bin/financialclaw-setup.mjs +9 -11
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/package.json +1 -1
package/README.es.md
CHANGED
|
@@ -21,7 +21,16 @@ Si necesitas el detalle de avance por tarea, revisa [docs/hitos.md](docs/hitos.m
|
|
|
21
21
|
## Instalación
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
+
# Desde ClawHub (recomendado)
|
|
25
|
+
openclaw plugins install clawhub:financialclaw
|
|
26
|
+
|
|
27
|
+
# O desde npm
|
|
24
28
|
openclaw plugins install financialclaw
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Luego ejecutar el setup y reiniciar:
|
|
32
|
+
|
|
33
|
+
```bash
|
|
25
34
|
npx financialclaw financialclaw-setup
|
|
26
35
|
openclaw gateway restart
|
|
27
36
|
```
|
package/README.md
CHANGED
|
@@ -10,7 +10,16 @@ Personal finance plugin for OpenClaw. Registers expenses, income, recurring paym
|
|
|
10
10
|
## Installation
|
|
11
11
|
|
|
12
12
|
```bash
|
|
13
|
+
# From ClawHub (recommended)
|
|
14
|
+
openclaw plugins install clawhub:financialclaw
|
|
15
|
+
|
|
16
|
+
# Or from npm
|
|
13
17
|
openclaw plugins install financialclaw
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Then run the setup and restart:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
14
23
|
npx financialclaw financialclaw-setup
|
|
15
24
|
openclaw gateway restart
|
|
16
25
|
```
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* 1. Adds "financialclaw" to plugins.allow (preserving active channels
|
|
10
10
|
* and plugins so they don't get blocked)
|
|
11
11
|
* 2. Sets plugins.entries.financialclaw.config.dbPath if not already set
|
|
12
|
-
* 3.
|
|
12
|
+
* 3. Warns if tools.profile is not "full" (does not modify it)
|
|
13
13
|
* 4. Adds "financialclaw" to tools.allow as explicit allowlist entry
|
|
14
14
|
*
|
|
15
15
|
* Usage:
|
|
@@ -127,18 +127,16 @@ if (!fc.config.dbPath) {
|
|
|
127
127
|
changes.push(`Set database path: ${dbPath}`);
|
|
128
128
|
}
|
|
129
129
|
|
|
130
|
-
// 3.
|
|
130
|
+
// 3. Check tools.profile — warn if not "full" but don't modify it
|
|
131
131
|
// Profiles like "coding" or "minimal" exclude plugin tools entirely
|
|
132
132
|
{
|
|
133
133
|
const tools = (cfg.tools ??= {});
|
|
134
134
|
const prev = tools.profile;
|
|
135
|
-
if (prev !== "full") {
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
);
|
|
141
|
-
tools.profile = "full";
|
|
135
|
+
if (prev && prev !== "full") {
|
|
136
|
+
console.log(`\n⚠ Warning: tools.profile is set to "${prev}".`);
|
|
137
|
+
console.log(` Profiles other than "full" may hide plugin tools from the agent.`);
|
|
138
|
+
console.log(` If financialclaw tools are not visible after setup, change it manually:`);
|
|
139
|
+
console.log(` Set tools.profile to "full" in ${configPath}\n`);
|
|
142
140
|
}
|
|
143
141
|
}
|
|
144
142
|
|
|
@@ -172,8 +170,8 @@ if (!skipConfirm) {
|
|
|
172
170
|
console.log("\nTo configure financialclaw manually, add the following to your OpenClaw config:\n");
|
|
173
171
|
console.log(` 1. Add "financialclaw" to plugins.allow`);
|
|
174
172
|
console.log(` 2. Add "financialclaw" to tools.allow`);
|
|
175
|
-
console.log(` 3. Set
|
|
176
|
-
console.log(` 4.
|
|
173
|
+
console.log(` 3. Set plugins.entries.financialclaw.config.dbPath to your desired path`);
|
|
174
|
+
console.log(` 4. If plugin tools are not visible, set tools.profile to "full"`);
|
|
177
175
|
console.log(`\nConfig file: ${configPath}`);
|
|
178
176
|
console.log(`After making changes, restart the gateway: openclaw gateway restart`);
|
|
179
177
|
process.exit(0);
|
package/dist/src/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare const PACKAGE_NAME = "financialclaw";
|
|
2
|
-
export declare const PACKAGE_VERSION = "1.0.
|
|
2
|
+
export declare const PACKAGE_VERSION = "1.0.3";
|
package/dist/src/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const PACKAGE_NAME = "financialclaw";
|
|
2
|
-
export const PACKAGE_VERSION = "1.0.
|
|
2
|
+
export const PACKAGE_VERSION = "1.0.3"; // x-release-please-version
|