openclaw-ynabro 2.2.13 → 2.2.14
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 +36 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -161,6 +161,42 @@ For YNAB-specific workflows (e.g. transaction review) it is recommended to creat
|
|
|
161
161
|
|
|
162
162
|
### Example: `ynabro-matchmaker`
|
|
163
163
|
|
|
164
|
+
Use the CLI variant below — it initializes the agent properly including the directory structure and `agent.md`. The JSON block is provided as a config reference only; manually adding it to `openclaw.json` without running `agents add` first will leave those missing.
|
|
165
|
+
|
|
166
|
+
#### CLI (recommended)
|
|
167
|
+
|
|
168
|
+
```bash
|
|
169
|
+
# Initialize the agent — creates directory structure and agent.md
|
|
170
|
+
openclaw agents add ynabro-matchmaker \
|
|
171
|
+
--workspace ~/.openclaw/workspace-ynabro-matchmaker \
|
|
172
|
+
--agent-dir ~/.openclaw/agents/ynabro-matchmaker/agent \
|
|
173
|
+
--non-interactive
|
|
174
|
+
|
|
175
|
+
# Bind to your channel so the main channel session is created.
|
|
176
|
+
# Check which channels are active first, then bind accordingly:
|
|
177
|
+
openclaw channels status
|
|
178
|
+
openclaw agents bind --agent ynabro-matchmaker --bind <channel>
|
|
179
|
+
|
|
180
|
+
# Apply ynabro-specific skills.
|
|
181
|
+
# agents add does not set skills — patch the entry directly.
|
|
182
|
+
# Find the index of ynabro-matchmaker in your agents list first:
|
|
183
|
+
openclaw config get agents.list
|
|
184
|
+
# Then set skills using its index (replace 0 with the correct index):
|
|
185
|
+
openclaw config set agents.list[0].skills '["match-transactions"]'
|
|
186
|
+
|
|
187
|
+
# Set identity — encode the avatar from the installed plugin asset
|
|
188
|
+
AVATAR=$(base64 -w 0 ~/.openclaw/npm/node_modules/openclaw-ynabro/logo.png)
|
|
189
|
+
openclaw agents set-identity --agent ynabro-matchmaker \
|
|
190
|
+
--name "YNABro Matchmaker" \
|
|
191
|
+
--emoji "🔁" \
|
|
192
|
+
--avatar "data:image/png;base64,$AVATAR"
|
|
193
|
+
unset AVATAR
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
#### JSON (reference only)
|
|
197
|
+
|
|
198
|
+
> **Note:** If you add this entry manually, also run `openclaw agents add ynabro-matchmaker --workspace ~/.openclaw/workspace-ynabro-matchmaker --non-interactive` first to initialize the agent directory, then `openclaw agents bind --agent ynabro-matchmaker --bind web` to create the channel binding. The JSON alone is not sufficient.
|
|
199
|
+
|
|
164
200
|
Add the following entry to the `agents.list` array in `~/.openclaw/openclaw.json`:
|
|
165
201
|
|
|
166
202
|
```json
|