@tloncorp/tlon-skill 0.3.1 → 0.3.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/SKILL.md +1 -1
- package/package.json +6 -6
- package/references/hooks.md +0 -1
- package/references/urbit-api.md +0 -3
package/SKILL.md
CHANGED
|
@@ -143,7 +143,7 @@ tlon activity unreads # Unread counts per channel
|
|
|
143
143
|
|
|
144
144
|
### Channels
|
|
145
145
|
|
|
146
|
-
List and manage channels. DMs
|
|
146
|
+
List and manage channels. DMs show nicknames when available.
|
|
147
147
|
|
|
148
148
|
```bash
|
|
149
149
|
tlon channels dms # List DM contacts (with nicknames)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tloncorp/tlon-skill",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Tlon/Urbit skill for OpenClaw agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
"postinstall": "node scripts/postinstall.js"
|
|
22
22
|
},
|
|
23
23
|
"optionalDependencies": {
|
|
24
|
-
"@tloncorp/tlon-skill-darwin-arm64": "0.3.
|
|
25
|
-
"@tloncorp/tlon-skill-darwin-x64": "0.3.
|
|
26
|
-
"@tloncorp/tlon-skill-linux-x64": "0.3.
|
|
27
|
-
"@tloncorp/tlon-skill-linux-arm64": "0.3.
|
|
24
|
+
"@tloncorp/tlon-skill-darwin-arm64": "0.3.2",
|
|
25
|
+
"@tloncorp/tlon-skill-darwin-x64": "0.3.2",
|
|
26
|
+
"@tloncorp/tlon-skill-linux-x64": "0.3.2",
|
|
27
|
+
"@tloncorp/tlon-skill-linux-arm64": "0.3.2"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@tloncorp/api": "
|
|
30
|
+
"@tloncorp/api": "^0.0.4",
|
|
31
31
|
"@urbit/aura": "^3.0.0",
|
|
32
32
|
"@types/node": "^22.0.0",
|
|
33
33
|
"typescript": "^5.9.3"
|
package/references/hooks.md
CHANGED
|
@@ -118,7 +118,6 @@ Hooks can trigger actions on other agents:
|
|
|
118
118
|
[%groups =action:g] :: group actions (ban, kick, etc)
|
|
119
119
|
[%activity =action:a] :: activity actions
|
|
120
120
|
[%dm =action:dm:ch] :: DM actions
|
|
121
|
-
[%club =action:club:ch] :: group DM actions
|
|
122
121
|
[%contacts =action:co] :: contact actions
|
|
123
122
|
[%wait waiting-hook] :: schedule delayed execution
|
|
124
123
|
==
|
package/references/urbit-api.md
CHANGED
|
@@ -68,16 +68,13 @@ interface ContactBookProfile {
|
|
|
68
68
|
|
|
69
69
|
### Scry Paths
|
|
70
70
|
- `/dm` - List of DM ship names (string[])
|
|
71
|
-
- `/clubs` - Group DMs (Clubs)
|
|
72
71
|
- `/blocked` - Blocked ships
|
|
73
72
|
- `/v3/dm/~ship/writs/newest/{count}/light` - DM message history (light = no replies)
|
|
74
73
|
- `/v3/dm/~ship/writs/newest/{count}/heavy` - DM message history (heavy = with replies)
|
|
75
|
-
- `/v3/club/{clubId}/writs/newest/{count}/light` - Group DM message history
|
|
76
74
|
- `/v2/dm/~ship/writs/writ/id/{author}/{postId}` - Single DM post with replies
|
|
77
75
|
|
|
78
76
|
### Poke Marks
|
|
79
77
|
- `chat-dm-action-1` - Send DM
|
|
80
|
-
- `chat-club-action-1` - Group DM operations
|
|
81
78
|
- `chat-remark-action` - Mark read
|
|
82
79
|
|
|
83
80
|
## Groups Agent
|