@tloncorp/tlon-skill 0.3.3 → 0.3.5
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 +7 -0
- package/SKILL.md +23 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -104,6 +104,13 @@ tlon --url https://bot.tlon.network --cookie "urbauth-~bot=0v..." contacts self
|
|
|
104
104
|
# List your groups
|
|
105
105
|
tlon channels groups
|
|
106
106
|
|
|
107
|
+
# Create a group channel
|
|
108
|
+
# (preferred alias; tlon groups add-channel still works)
|
|
109
|
+
tlon channels create ~host/group-slug "Projects" --kind chat
|
|
110
|
+
|
|
111
|
+
# Rename a channel
|
|
112
|
+
tlon channels rename chat/~host/project-updates "Team Updates"
|
|
113
|
+
|
|
107
114
|
# Get recent mentions
|
|
108
115
|
tlon activity mentions --limit 10
|
|
109
116
|
|
package/SKILL.md
CHANGED
|
@@ -150,6 +150,8 @@ tlon channels dms # List DM contacts (w
|
|
|
150
150
|
tlon channels groups # List subscribed groups
|
|
151
151
|
tlon channels all # List everything
|
|
152
152
|
tlon channels info chat/~host/slug # Get channel details
|
|
153
|
+
tlon channels create ~host/slug "Projects" --kind chat # Create a group channel
|
|
154
|
+
tlon channels rename chat/~host/slug "New Title" # Rename a channel
|
|
153
155
|
tlon channels update chat/~host/slug --title "New Title" # Update metadata
|
|
154
156
|
tlon channels delete chat/~host/slug # Delete a channel
|
|
155
157
|
|
|
@@ -162,6 +164,14 @@ tlon channels add-readers ~host/group chat/~host/slug admin # Restrict viewin
|
|
|
162
164
|
tlon channels del-readers ~host/group chat/~host/slug admin # Open viewing
|
|
163
165
|
```
|
|
164
166
|
|
|
167
|
+
Help works for both the command and subcommands:
|
|
168
|
+
|
|
169
|
+
```bash
|
|
170
|
+
tlon channels --help
|
|
171
|
+
tlon channels create --help
|
|
172
|
+
tlon channels rename --help
|
|
173
|
+
```
|
|
174
|
+
|
|
165
175
|
Notes on permissions:
|
|
166
176
|
|
|
167
177
|
- Empty writers list = anyone in the group can post (default for chat)
|
|
@@ -232,6 +242,19 @@ Roles vs Admin:
|
|
|
232
242
|
tlon groups add-channel ~host/slug "Name" [--kind chat|diary|heap]
|
|
233
243
|
```
|
|
234
244
|
|
|
245
|
+
`tlon groups add-channel` remains supported, but for agent/tool use prefer the more discoverable channel-centric form:
|
|
246
|
+
|
|
247
|
+
```bash
|
|
248
|
+
tlon channels create ~host/slug "Projects" --kind chat
|
|
249
|
+
```
|
|
250
|
+
|
|
251
|
+
Help works here too:
|
|
252
|
+
|
|
253
|
+
```bash
|
|
254
|
+
tlon groups --help
|
|
255
|
+
tlon groups add-channel --help
|
|
256
|
+
```
|
|
257
|
+
|
|
235
258
|
Group format: `~host-ship/group-slug`
|
|
236
259
|
|
|
237
260
|
### Hooks
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tloncorp/tlon-skill",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"description": "Tlon/Urbit skill for OpenClaw agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -21,10 +21,10 @@
|
|
|
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.5",
|
|
25
|
+
"@tloncorp/tlon-skill-darwin-x64": "0.3.5",
|
|
26
|
+
"@tloncorp/tlon-skill-linux-x64": "0.3.5",
|
|
27
|
+
"@tloncorp/tlon-skill-linux-arm64": "0.3.5"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@tloncorp/api": "^0.0.4",
|