@alook/cli 0.0.68 → 0.0.69
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 +28 -27
- package/dist/index.js +2424 -426
- package/dist/session-runner.js +183 -33
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,11 +33,11 @@ The daemon runs in the background, polling for tasks and dispatching them to you
|
|
|
33
33
|
| `status` | Show registration status and linked workspace |
|
|
34
34
|
| `daemon start` | Start the background daemon |
|
|
35
35
|
| `daemon stop` | Stop the daemon |
|
|
36
|
-
| `email pull
|
|
37
|
-
| `email send --
|
|
38
|
-
| `calendar set --
|
|
39
|
-
| `issue create --
|
|
40
|
-
| `sync upload-artifact --
|
|
36
|
+
| `email pull` | Download agent emails |
|
|
37
|
+
| `email send --to <addr> --subject "..." --body-file <path>` | Send an email |
|
|
38
|
+
| `calendar set --event_title "..." --datetime <YYYY-MM-DDTHH:MM>` | Create a scheduled event |
|
|
39
|
+
| `issue create --title "..."` | Create and dispatch an issue |
|
|
40
|
+
| `sync upload-artifact --conversation_id <id> --file <path>` | Upload a file artifact |
|
|
41
41
|
| `config show` | Show current configuration |
|
|
42
42
|
| `update` | Update CLI to the latest version |
|
|
43
43
|
| `version` | Print CLI version |
|
|
@@ -60,19 +60,19 @@ alook daemon status # Check if the daemon is running
|
|
|
60
60
|
<summary><strong>email</strong> — pull, send, reply, forward, and manage sender whitelist</summary>
|
|
61
61
|
|
|
62
62
|
```bash
|
|
63
|
-
alook email pull
|
|
64
|
-
alook email pull --
|
|
65
|
-
alook email pull --
|
|
66
|
-
alook email set --
|
|
63
|
+
alook email pull # Download inbox
|
|
64
|
+
alook email pull --status unread # Unread only
|
|
65
|
+
alook email pull --folder sent # Sent emails
|
|
66
|
+
alook email set --email_id <id> --status read # Mark as read
|
|
67
67
|
|
|
68
|
-
alook email send --
|
|
68
|
+
alook email send --to <addr> --subject "Hi" --body-file body.html
|
|
69
69
|
alook email send ... --in-reply-to <email_id> # Reply to a thread
|
|
70
70
|
alook email send ... --attachment report.pdf # Attach a file
|
|
71
|
-
alook email forward --
|
|
71
|
+
alook email forward --email_id <id> --to <addr> --note "FYI"
|
|
72
72
|
|
|
73
|
-
alook email whitelist list
|
|
74
|
-
alook email whitelist add
|
|
75
|
-
alook email whitelist delete
|
|
73
|
+
alook email whitelist list # List allowed senders
|
|
74
|
+
alook email whitelist add <email> # Allow a sender
|
|
75
|
+
alook email whitelist delete <email> # Remove a sender
|
|
76
76
|
```
|
|
77
77
|
|
|
78
78
|
Options: `--from <addr>` to send from a custom mailbox, `--limit <n>` / `--offset <n>` for pagination, `--json` for machine-readable output.
|
|
@@ -85,13 +85,13 @@ Options: `--from <addr>` to send from a custom mailbox, `--limit <n>` / `--offse
|
|
|
85
85
|
When an event fires, a new task is dispatched to the agent with the event title as the prompt.
|
|
86
86
|
|
|
87
87
|
```bash
|
|
88
|
-
alook calendar set --
|
|
88
|
+
alook calendar set --event_title "Daily standup" --datetime 2026-05-16T09:00
|
|
89
89
|
alook calendar set ... --repeat 1week --repeat_stop_date 2026-12-31
|
|
90
90
|
|
|
91
|
-
alook calendar list
|
|
92
|
-
alook calendar show --
|
|
93
|
-
alook calendar update --
|
|
94
|
-
alook calendar delete --
|
|
91
|
+
alook calendar list # List upcoming events
|
|
92
|
+
alook calendar show --event_id <id> # Show full detail
|
|
93
|
+
alook calendar update --event_id <id> --datetime 2026-05-17T10:00
|
|
94
|
+
alook calendar delete --event_id <id>
|
|
95
95
|
```
|
|
96
96
|
|
|
97
97
|
Datetime is always local time (`YYYY-MM-DDTHH:MM`). Repeat intervals: `1hour`, `1day`, `1week`, `1month`, etc.
|
|
@@ -102,14 +102,14 @@ Datetime is always local time (`YYYY-MM-DDTHH:MM`). Repeat intervals: `1hour`, `
|
|
|
102
102
|
<summary><strong>issue</strong> — create and manage issues assigned to agents</summary>
|
|
103
103
|
|
|
104
104
|
```bash
|
|
105
|
-
alook issue create --
|
|
106
|
-
alook issue create --
|
|
107
|
-
|
|
108
|
-
alook issue list
|
|
109
|
-
alook issue list --
|
|
110
|
-
alook issue show --
|
|
111
|
-
alook issue update --
|
|
112
|
-
alook issue comment --
|
|
105
|
+
alook issue create --title "Fix login bug"
|
|
106
|
+
alook issue create --title "Refactor auth" --body-file spec.md
|
|
107
|
+
|
|
108
|
+
alook issue list # Active issues
|
|
109
|
+
alook issue list --completed # Completed/closed issues
|
|
110
|
+
alook issue show --issue_id <id> # Full detail + conversation
|
|
111
|
+
alook issue update --issue_id <id> --status done
|
|
112
|
+
alook issue comment --issue_id <id> --body "Looks good"
|
|
113
113
|
```
|
|
114
114
|
|
|
115
115
|
Statuses: `todo`, `in_progress`, `review`, `done`, `closed`, `canceled`, `failed`.
|
|
@@ -137,6 +137,7 @@ Config is stored at `~/.alook/config.json` and includes:
|
|
|
137
137
|
```
|
|
138
138
|
--server <url> Override server URL
|
|
139
139
|
--profile <name> Use a specific config profile
|
|
140
|
+
--agent_id <id> Override agent ID (default: $ALOOK_AGENT_ID env var)
|
|
140
141
|
```
|
|
141
142
|
|
|
142
143
|
## Requirements
|