antenna-openclaw-plugin 1.2.19 → 1.2.20
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/package.json +1 -1
- package/skills/antenna/EVENTS.md +11 -5
package/package.json
CHANGED
package/skills/antenna/EVENTS.md
CHANGED
|
@@ -82,11 +82,17 @@ Generate a GPS link for setting event location.
|
|
|
82
82
|
## Agent Behavior
|
|
83
83
|
|
|
84
84
|
### When someone says "create an event"
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
85
|
+
Collect the following info through conversation (ask one by one, don't dump all at once):
|
|
86
|
+
1. **Event name** (required) — "活动叫什么名字?"
|
|
87
|
+
2. **Description** — "简单描述一下这个活动?"
|
|
88
|
+
3. **Time** — "什么时候开始?大概多长?" (convert to starts_at / ends_at ISO strings)
|
|
89
|
+
4. **Location** — "活动在哪里?" If user gives an address, geocode it. If vague, generate a bind link after creation.
|
|
90
|
+
5. **Approval** — "需要审批参与者吗?" If yes:
|
|
91
|
+
6. **Screening questions** — "你想问报名者什么问题?" Collect as a list.
|
|
92
|
+
|
|
93
|
+
Then call `antenna_event_create` with all collected info.
|
|
94
|
+
If no GPS, call `antenna_bind(purpose="event", event_code=CODE)` and send the link.
|
|
95
|
+
Share the event URL with the user.
|
|
90
96
|
|
|
91
97
|
### When someone shares an event link
|
|
92
98
|
1. Extract the code from `antenna.fyi/events/CODE`
|