openclaw-ynabro 1.0.0 → 2.0.0

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 CHANGED
@@ -1,6 +1,14 @@
1
+ ![YNABro Logo](full_logo.png)
2
+
3
+ <p align="center">
4
+ <a href="https://www.npmjs.com/package/openclaw-ynabro"><img src="https://img.shields.io/npm/v/openclaw-ynabro.svg?style=flat-square" alt="npm version"></a>
5
+ <a href="https://github.com/jmcombs/ynabro/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-MIT-3465a4?style=flat-square" alt="MIT License"></a>
6
+ <a href="https://github.com/sponsors/jmcombs"><img src="https://img.shields.io/badge/Sponsor-GitHub%20Sponsors-3465a4?style=flat-square" alt="GitHub Sponsors"></a>
7
+ </p>
8
+
1
9
  # openclaw-ynabro
2
10
 
3
- OpenClaw plugin that registers [YNABro](https://github.com/jmcombs/ynabro) tools for YNAB budget management.
11
+ OpenClaw plugin that registers [ynabro](https://www.npmjs.com/package/ynabro) tools for YNAB integration.
4
12
 
5
13
  ## Installation
6
14
 
@@ -8,39 +16,16 @@ OpenClaw plugin that registers [YNABro](https://github.com/jmcombs/ynabro) tools
8
16
  openclaw plugins install openclaw-ynabro
9
17
  ```
10
18
 
11
- ## Configuration
12
-
13
- Set your YNAB Personal Access Token:
14
-
15
- ```json
16
- {
17
- "skills": {
18
- "entries": {
19
- "match-transactions": {
20
- "enabled": true,
21
- "env": {
22
- "YNAB_TOKEN": "your-token-here"
23
- }
24
- }
25
- }
26
- }
27
- }
28
- ```
29
-
30
- Or set the `YNAB_TOKEN` environment variable directly.
31
-
32
- ## Tools
19
+ ## Available Tools
33
20
 
34
- | Tool | Description |
35
- |------|-------------|
36
- | `ynabro_setup` | Set up YNAB integration (token + plan selection) |
37
- | `ynabro_get_pending_transactions` | Get pending (uncategorized) transactions |
38
- | `ynabro_get_recent_transactions` | Get recent transactions |
39
- | `ynabro_approve_transaction` | Approve a transaction |
40
- | `ynabro_get_plan_info` | Get plan details |
41
- | `ynabro_get_skill_state` | Read skill state (memory, auto-approve flag) |
42
- | `ynabro_update_skill_state` | Update skill state |
21
+ - `ynabro_setup`
22
+ - `ynabro_get_pending_transactions`
23
+ - `ynabro_get_recent_transactions`
24
+ - `ynabro_approve_transaction`
25
+ - `ynabro_get_plan_info`
26
+ - `ynabro_get_skill_state`
27
+ - `ynabro_update_skill_state`
43
28
 
44
- ## Skills
29
+ ## Requirements
45
30
 
46
- This plugin ships the `match-transactions` skill for reviewing YNAB's automatic transaction matching.
31
+ - `YNAB_TOKEN` environment variable must be set
package/full_logo.png ADDED
Binary file
package/logo.png ADDED
Binary file
package/package.json CHANGED
@@ -1,12 +1,14 @@
1
1
  {
2
2
  "name": "openclaw-ynabro",
3
- "version": "1.0.0",
3
+ "version": "2.0.0",
4
4
  "description": "OpenClaw plugin that registers YNABro tools for YNAB integration",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
7
7
  "files": [
8
8
  "src",
9
9
  "openclaw.plugin.json",
10
+ "full_logo.png",
11
+ "logo.png",
10
12
  "skills",
11
13
  "README.md"
12
14
  ],