@tloncorp/tlon-skill 0.3.6 → 0.4.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.
Files changed (3) hide show
  1. package/README.md +3 -0
  2. package/SKILL.md +1 -0
  3. package/package.json +5 -5
package/README.md CHANGED
@@ -123,6 +123,9 @@ tlon contacts update-profile --nickname "My Name"
123
123
  # Create a group
124
124
  tlon groups create "My Group" --description "A cool group"
125
125
 
126
+ # Create a group for a bot owner
127
+ tlon groups create-owned "My Group" --owner ~owner-ship --description "A cool group"
128
+
126
129
  # Join a public or invited group; private groups without an invite request one
127
130
  tlon groups join ~host/group-slug
128
131
 
package/SKILL.md CHANGED
@@ -228,6 +228,7 @@ Full group management.
228
228
  tlon groups list # List your groups
229
229
  tlon groups info ~host/slug # Get group details
230
230
  tlon groups create "Name" [--description "..."] # Create a group
231
+ tlon groups create-owned "Name" --owner ~ship [--description "..."] # Create group, invite owner, make owner admin
231
232
  tlon groups join ~host/slug # Join public/invited group, or request invite if private
232
233
  tlon groups request-invite ~host/slug # Request invite to a private group
233
234
  tlon groups accept-invite ~host/slug # Accept an existing group invite
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tloncorp/tlon-skill",
3
- "version": "0.3.6",
3
+ "version": "0.4.0",
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.6",
25
- "@tloncorp/tlon-skill-darwin-x64": "0.3.6",
26
- "@tloncorp/tlon-skill-linux-x64": "0.3.6",
27
- "@tloncorp/tlon-skill-linux-arm64": "0.3.6"
24
+ "@tloncorp/tlon-skill-darwin-arm64": "0.4.0",
25
+ "@tloncorp/tlon-skill-darwin-x64": "0.4.0",
26
+ "@tloncorp/tlon-skill-linux-x64": "0.4.0",
27
+ "@tloncorp/tlon-skill-linux-arm64": "0.4.0"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@tloncorp/api": "^0.0.4",