financialclaw 1.0.3 → 1.0.4
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 +4 -3
- package/README.md +4 -3
- 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
|
@@ -39,11 +39,12 @@ openclaw gateway restart
|
|
|
39
39
|
|
|
40
40
|
`openclaw plugins install` registra el plugin pero no lo agrega a `plugins.allow`. Una vez que ese campo existe, OpenClaw lo usa como allowlist explícita — todo lo que no esté listado deja de funcionar, incluyendo canales activos como Telegram.
|
|
41
41
|
|
|
42
|
-
`financialclaw-setup` lee el config actual y aplica
|
|
42
|
+
`financialclaw-setup` lee el config actual y aplica dos cambios requeridos:
|
|
43
43
|
|
|
44
44
|
1. **`plugins.allow`** — agrega `financialclaw` junto a todos los canales y plugins activos para que nada deje de funcionar.
|
|
45
|
-
2. **`tools.
|
|
46
|
-
|
|
45
|
+
2. **`tools.allow`** — agrega `"financialclaw"` como entrada explícita en el allowlist de tools.
|
|
46
|
+
|
|
47
|
+
> **Nota:** Si tu `tools.profile` está en algo distinto a `"full"` (ej. `"coding"`), los tools del plugin podrían no ser visibles para el agente. El script te avisará si es el caso — puedes cambiarlo manualmente si lo necesitas.
|
|
47
48
|
|
|
48
49
|
También configura `dbPath` para que la BD persista entre reinstalaciones (por defecto: `~/.openclaw/workspace/financialclaw.db`).
|
|
49
50
|
|
package/README.md
CHANGED
|
@@ -28,11 +28,12 @@ openclaw gateway restart
|
|
|
28
28
|
|
|
29
29
|
`openclaw plugins install` registers the plugin but does not add it to `plugins.allow`. Once that field exists, OpenClaw uses it as an explicit allowlist — anything not listed stops working, including active channels like Telegram.
|
|
30
30
|
|
|
31
|
-
`financialclaw-setup` reads your current config and applies
|
|
31
|
+
`financialclaw-setup` reads your current config and applies two required changes:
|
|
32
32
|
|
|
33
33
|
1. **`plugins.allow`** — adds `financialclaw` alongside all active channels and plugins so nothing stops working.
|
|
34
|
-
2. **`tools.
|
|
35
|
-
|
|
34
|
+
2. **`tools.allow`** — adds `"financialclaw"` as an explicit tool allowlist entry.
|
|
35
|
+
|
|
36
|
+
> **Note:** If your `tools.profile` is set to something other than `"full"` (e.g. `"coding"`), plugin tools may be hidden from the agent. The setup script will warn you if this is the case — you can change it manually if needed.
|
|
36
37
|
|
|
37
38
|
It also sets `plugins.entries.financialclaw.config.dbPath` so the database persists across reinstalls (default: `~/.openclaw/workspace/financialclaw.db`).
|
|
38
39
|
|
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.4";
|
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.4"; // x-release-please-version
|