@aight-cool/aight-utils 0.1.10 → 0.1.11
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/openclaw.plugin.json +4 -13
- package/package.json +1 -1
- package/src/bootstrap.ts +20 -1
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "aight-utils",
|
|
3
3
|
"name": "Aight App Utils",
|
|
4
4
|
"description": "Aight App: Push notifications, Today items, config RPC, and agent bootstrap",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.11",
|
|
6
6
|
"configSchema": {
|
|
7
7
|
"type": "object",
|
|
8
8
|
"additionalProperties": false,
|
|
@@ -13,10 +13,7 @@
|
|
|
13
13
|
"properties": {
|
|
14
14
|
"mode": {
|
|
15
15
|
"type": "string",
|
|
16
|
-
"enum": [
|
|
17
|
-
"private",
|
|
18
|
-
"rich"
|
|
19
|
-
],
|
|
16
|
+
"enum": ["private", "rich"],
|
|
20
17
|
"default": "rich"
|
|
21
18
|
},
|
|
22
19
|
"relayUrl": {
|
|
@@ -34,19 +31,13 @@
|
|
|
34
31
|
},
|
|
35
32
|
"platform": {
|
|
36
33
|
"type": "string",
|
|
37
|
-
"enum": [
|
|
38
|
-
"ios",
|
|
39
|
-
"android"
|
|
40
|
-
]
|
|
34
|
+
"enum": ["ios", "android"]
|
|
41
35
|
},
|
|
42
36
|
"registeredAt": {
|
|
43
37
|
"type": "string"
|
|
44
38
|
}
|
|
45
39
|
},
|
|
46
|
-
"required": [
|
|
47
|
-
"token",
|
|
48
|
-
"platform"
|
|
49
|
-
]
|
|
40
|
+
"required": ["token", "platform"]
|
|
50
41
|
}
|
|
51
42
|
},
|
|
52
43
|
"relaySecret": {
|
package/package.json
CHANGED
package/src/bootstrap.ts
CHANGED
|
@@ -8,7 +8,26 @@ import { fileURLToPath } from "node:url";
|
|
|
8
8
|
|
|
9
9
|
const AIGHT_MD = `# Aight Integration
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
Aight is the iOS app the user is chatting through. It connects to the OpenClaw gateway running on their machine, giving them a native mobile interface for their AI agent.
|
|
12
|
+
|
|
13
|
+
## What You Can Do (via Aight)
|
|
14
|
+
|
|
15
|
+
When the user asks "What can you do?" — here's what to highlight:
|
|
16
|
+
|
|
17
|
+
- **Chat naturally** — Ask anything, get help with tasks, brainstorm ideas
|
|
18
|
+
- **Set reminders & track tasks** — "Remind me to call the dentist tomorrow at 2pm" → creates a reminder in the Today view
|
|
19
|
+
- **Voice mode** — Tap the mic to talk instead of type; you respond with voice too
|
|
20
|
+
- **Manage calendar & email** — Check schedule, draft emails, summarize inbox
|
|
21
|
+
- **Search the web** — Real-time web search, fetch pages, summarize articles
|
|
22
|
+
- **Run shortcuts** — Quick-access saved prompts for things you do often
|
|
23
|
+
- **Browse the Skills marketplace** — 700+ skills to extend capabilities (weather, GitHub, music, finance, etc.)
|
|
24
|
+
- **Create custom agents** — Spin up specialized AI personas for different tasks
|
|
25
|
+
- **Today view** — A personal dashboard with reminders, tasks, deadlines, and background processes
|
|
26
|
+
- **Sub-agents** — Delegate complex tasks to background workers that report back when done
|
|
27
|
+
- **Group chats** — Multi-agent conversations where your agents collaborate
|
|
28
|
+
- **Security built-in** — All data stays on your machine; nothing phones home
|
|
29
|
+
|
|
30
|
+
Keep the response conversational and concise — don't dump the whole list. Pick 4-5 highlights that feel most relevant, and mention there's more to explore in Skills and Settings.
|
|
12
31
|
|
|
13
32
|
## When to Use \`aight_item\` (Aight App)
|
|
14
33
|
|