financialclaw 1.0.1 → 1.0.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.es.md +9 -0
- package/README.md +9 -0
- 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
|
```
|
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.2";
|
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.2"; // x-release-please-version
|