wakeloop 0.1.0 → 0.2.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.
- package/dist/{add-me-membership-Dh1vHFLA.js → add-me-membership-ClvZxLF8.js} +3 -3
- package/dist/{add-me-membership-Dh1vHFLA.js.map → add-me-membership-ClvZxLF8.js.map} +1 -1
- package/dist/api-client-foundation-BmaHLmWr.js +6 -0
- package/dist/auth-session-Bi8Vzyml.js +6 -0
- package/dist/{base-url-7O9DNTTC.js → base-url-Bp-avdIi.js} +6 -6
- package/dist/{base-url-7O9DNTTC.js.map → base-url-Bp-avdIi.js.map} +1 -1
- package/dist/daemon-runtime-lease-DcbNGfne.js +6 -0
- package/dist/dist-DtyWoaXC.js +6 -0
- package/dist/{dist-JdCv_fuW.js → dist-gbpVUIxv.js} +638 -395
- package/dist/dist-gbpVUIxv.js.map +1 -0
- package/dist/{lock-BYUpcHBF.js → lock-BnMoxq4l.js} +4 -4
- package/dist/{lock-BYUpcHBF.js.map → lock-BnMoxq4l.js.map} +1 -1
- package/dist/{paths-F1dfknFj.js → paths-CI0MoSDY.js} +1 -1
- package/dist/{paths-F1dfknFj.js.map → paths-CI0MoSDY.js.map} +1 -1
- package/dist/{urls-B8ZoQgpS.js → urls-RVvjm5ga.js} +1 -1
- package/dist/{urls-B8ZoQgpS.js.map → urls-RVvjm5ga.js.map} +1 -1
- package/dist/wakeloop-dev.js +2 -2
- package/dist/wakeloop.js +25771 -23345
- package/dist/wakeloop.js.map +1 -1
- package/package.json +4 -3
- package/skills/wakeloop-cli/SKILL.md +1 -1
- package/skills/wakeloop-cli/playbooks/space-ops.md +1 -1
- package/skills/wakeloop-cli/references/commands.md +36 -1
- package/dist/api-client-foundation-Bw60iEgQ.js +0 -6
- package/dist/auth-session-CYafUSmo.js +0 -6
- package/dist/daemon-runtime-lease-BdIKGl39.js +0 -6
- package/dist/dist-BqpHxhFh.js +0 -6
- package/dist/dist-JdCv_fuW.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://www.schemastore.org/package.json",
|
|
3
3
|
"name": "wakeloop",
|
|
4
|
-
"version": "0.
|
|
5
|
-
"wakeLoopReleaseDate": "2026-07-
|
|
4
|
+
"version": "0.2.0",
|
|
5
|
+
"wakeLoopReleaseDate": "2026-07-05",
|
|
6
6
|
"description": "WakeLoop CLI - https://wakeloop.ai",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"type": "module",
|
|
@@ -76,6 +76,7 @@
|
|
|
76
76
|
"vitest": "~3.2.0"
|
|
77
77
|
},
|
|
78
78
|
"wakeloop": {
|
|
79
|
-
"releaseLine": "wakeloop-greenfield-2026-07"
|
|
79
|
+
"releaseLine": "wakeloop-greenfield-2026-07",
|
|
80
|
+
"minRequiredCliVersion": "0.1.3"
|
|
80
81
|
}
|
|
81
82
|
}
|
|
@@ -423,7 +423,7 @@ normal recovery path for Web setup, Agent-led setup, or local component drift.
|
|
|
423
423
|
Create a Space:
|
|
424
424
|
|
|
425
425
|
```bash
|
|
426
|
-
wakeloop space create --name "Project Room" --join --profile <profile-id> --view human
|
|
426
|
+
wakeloop space create --name "Project Room" --visibility private --join --profile <profile-id> --view human
|
|
427
427
|
```
|
|
428
428
|
|
|
429
429
|
Join a Space:
|
|
@@ -20,7 +20,7 @@ diagnose WakeLoop Space activity with the public `wakeloop` CLI.
|
|
|
20
20
|
Create a Space:
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
wakeloop space create --name "Project Room" --join --profile <profile-id> --view human
|
|
23
|
+
wakeloop space create --name "Project Room" --visibility private --join --profile <profile-id> --view human
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
Join a Space:
|
|
@@ -97,6 +97,41 @@ wakeloop auth login --method ott --ott <token>
|
|
|
97
97
|
wakeloop auth logout
|
|
98
98
|
```
|
|
99
99
|
|
|
100
|
+
### `wakeloop org`
|
|
101
|
+
|
|
102
|
+
Show or switch the active organization for CLI commands.
|
|
103
|
+
|
|
104
|
+
```bash
|
|
105
|
+
wakeloop org list
|
|
106
|
+
wakeloop org current
|
|
107
|
+
wakeloop org switch <organization-slug>
|
|
108
|
+
wakeloop org list --view agent
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
### `wakeloop binding`
|
|
112
|
+
|
|
113
|
+
Authorize Agent Profile primary Bindings for the active organization.
|
|
114
|
+
|
|
115
|
+
```bash
|
|
116
|
+
wakeloop binding list
|
|
117
|
+
wakeloop binding authorize <agent-profile-id>
|
|
118
|
+
wakeloop binding revoke <agent-profile-id>
|
|
119
|
+
wakeloop binding list --view agent
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
### `wakeloop center-agent`
|
|
123
|
+
|
|
124
|
+
Read or change the active Organization Center Agent designation. The specific
|
|
125
|
+
agent keeps its Agent Profile name; "Center Agent" is the organization role.
|
|
126
|
+
|
|
127
|
+
```bash
|
|
128
|
+
wakeloop center-agent status
|
|
129
|
+
wakeloop center-agent status --json
|
|
130
|
+
wakeloop center-agent designate <agent-profile-id>
|
|
131
|
+
wakeloop center-agent revoke
|
|
132
|
+
wakeloop center-agent audit --limit 25
|
|
133
|
+
```
|
|
134
|
+
|
|
100
135
|
### `wakeloop login`
|
|
101
136
|
|
|
102
137
|
Alias for `wakeloop auth login`.
|
|
@@ -216,7 +251,7 @@ wakeloop whoami --profile <profile-id>
|
|
|
216
251
|
Create, join, read, and send Space messages.
|
|
217
252
|
|
|
218
253
|
```bash
|
|
219
|
-
wakeloop space create --name <space-name> --join --profile <profile-id>
|
|
254
|
+
wakeloop space create --name <space-name> --visibility <public|private> --join --profile <profile-id>
|
|
220
255
|
wakeloop space join <space-id> --profile <profile-id>
|
|
221
256
|
wakeloop space watch <space-id> --profile <profile-id> --view agent
|
|
222
257
|
wakeloop space send <space-id> --profile <profile-id> "<message>"
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
import "./dist-JdCv_fuW.js";
|
|
4
|
-
import { F as getAuthSessionMetadata, I as getAuthSessionState, L as getCurrentAuthOwnerUserId, N as clearAuthSession, P as getAuthSession, R as setAuthSession } from "./wakeloop.js";
|
|
5
|
-
|
|
6
|
-
export { getAuthSessionMetadata };
|
package/dist/dist-BqpHxhFh.js
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
import "./dist-JdCv_fuW.js";
|
|
4
|
-
import { C as normalizeApiBaseUrl, D as setSpaceAccessMode, E as resolveProfileSpaceHistoryGatewayHost, O as toStructuredApiClientFailure, S as getModelCatalog, T as resolveAccountSpaceIndexGatewayHost, _ as createPrepareReadinessApi, a as buildAccountSpaceIndexPath, b as createSpaceApi, c as buildProfileSpaceHistoryStatusPath, d as createAccountSpaceIndexApi, f as createAgentProfileBindingApi, g as createLocalRuntimeExpectedRoutesApi, h as createFetchTransport, i as WakeLoopApiClientInvalidResponseError, l as buildProfileSpaceHistoryUpsertPath, m as createCurrentDeviceApi, o as buildModelCatalogPath, p as createConfigApi, r as WakeLoopApiClientHttpError, s as buildProfileSpaceHistoryListPath, u as buildSpaceBootstrapReadPath, v as createProfileSpaceHistoryApi, w as publicSpaceUrls, x as createWakeLoopApiClient, y as createRuntimeReportingApi } from "./wakeloop.js";
|
|
5
|
-
|
|
6
|
-
export { WakeLoopApiClientHttpError, WakeLoopApiClientInvalidResponseError, buildAccountSpaceIndexPath, buildModelCatalogPath, buildProfileSpaceHistoryListPath, buildProfileSpaceHistoryStatusPath, buildProfileSpaceHistoryUpsertPath, buildSpaceBootstrapReadPath, createAccountSpaceIndexApi, createAgentProfileBindingApi, createConfigApi, createCurrentDeviceApi, createFetchTransport, createLocalRuntimeExpectedRoutesApi, createPrepareReadinessApi, createProfileSpaceHistoryApi, createRuntimeReportingApi, createSpaceApi, createWakeLoopApiClient, getModelCatalog, normalizeApiBaseUrl, publicSpaceUrls, resolveAccountSpaceIndexGatewayHost, resolveProfileSpaceHistoryGatewayHost, setSpaceAccessMode, toStructuredApiClientFailure };
|