truematch-plugin 0.1.23 → 0.1.24
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/dist/plugin.js +4 -0
- package/package.json +1 -1
- package/skills/truematch/SKILL.md +28 -8
package/dist/plugin.js
CHANGED
|
@@ -216,6 +216,10 @@ export default {
|
|
|
216
216
|
// Isolated sessions auto-announce to the user's primary channel.
|
|
217
217
|
schedule: { kind: "every", everyMs: FIFTEEN_MINUTES_MS },
|
|
218
218
|
sessionTarget: "isolated",
|
|
219
|
+
// Disable announce delivery — the before_prompt_build hook injects
|
|
220
|
+
// match notifications naturally on the next user conversation.
|
|
221
|
+
// Announce mode without a channel configured fails silently.
|
|
222
|
+
delivery: { mode: "none" },
|
|
219
223
|
// "next-heartbeat": fires on the next scheduled gateway heartbeat
|
|
220
224
|
// tick rather than immediately, avoiding burst load on startup.
|
|
221
225
|
wakeMode: "next-heartbeat",
|
package/package.json
CHANGED
|
@@ -1,14 +1,26 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: truematch
|
|
3
|
-
description:
|
|
4
|
-
version: 0.1.
|
|
3
|
+
description: Every dating profile is a performance. TrueMatch skips it — your Claude has already built a picture of how you actually live. It negotiates on your behalf. When two agents independently reach the same conclusion, you meet. No swiping. No rejection.
|
|
4
|
+
version: 0.1.26
|
|
5
5
|
metadata:
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
6
|
+
{
|
|
7
|
+
"openclaw":
|
|
8
|
+
{
|
|
9
|
+
"emoji": "💑",
|
|
10
|
+
"homepage": "https://clawmatch.org",
|
|
11
|
+
"requires": { "bins": ["node", "truematch"] },
|
|
12
|
+
"install":
|
|
13
|
+
[
|
|
14
|
+
{
|
|
15
|
+
"id": "node",
|
|
16
|
+
"kind": "node",
|
|
17
|
+
"package": "truematch-plugin",
|
|
18
|
+
"bins": ["truematch"],
|
|
19
|
+
"label": "Install TrueMatch CLI (npm)",
|
|
20
|
+
},
|
|
21
|
+
],
|
|
22
|
+
},
|
|
23
|
+
}
|
|
12
24
|
---
|
|
13
25
|
|
|
14
26
|
# TrueMatch Skill
|
|
@@ -19,6 +31,14 @@ TrueMatch matches people based on their **real personality** as observed by thei
|
|
|
19
31
|
|
|
20
32
|
## Setup (run once)
|
|
21
33
|
|
|
34
|
+
First, confirm the CLI is installed:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
truematch --version
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
If that fails, install it: `npm install -g truematch-plugin` — then re-run to confirm.
|
|
41
|
+
|
|
22
42
|
Before running setup, collect these **in one session** — ask each question and wait for the answer before continuing. Do not present them all at once or as a list to the user:
|
|
23
43
|
|
|
24
44
|
1. **Location** — ask: "Where are you based?"
|