@awebai/claude-channel 1.4.11 → 1.4.12
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
CHANGED
|
@@ -17,20 +17,26 @@ Diagnose and fix the aweb channel setup for this project.
|
|
|
17
17
|
test -f .aw/team-cert.pem && echo "CERT OK" || echo "CERT MISSING"
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
-
If `.aw/workspace.yaml` is missing, the
|
|
21
|
-
Tell the user
|
|
20
|
+
If `.aw/workspace.yaml` is missing, the channel does not yet know which
|
|
21
|
+
aweb team or service this directory should use. Do not guess. Tell the user
|
|
22
|
+
to initialize or join the workspace through the correct source first, for
|
|
23
|
+
example:
|
|
22
24
|
|
|
23
25
|
```bash
|
|
24
|
-
aw
|
|
26
|
+
aw init
|
|
25
27
|
```
|
|
26
28
|
|
|
27
|
-
Or
|
|
29
|
+
Or, when they have an explicit invite/service/BYOT source:
|
|
28
30
|
|
|
29
31
|
```bash
|
|
30
32
|
aw id team accept-invite <token>
|
|
31
33
|
AWEB_URL=<server-url> aw init
|
|
34
|
+
aw service init --service <service-url> --team <team:namespace>
|
|
32
35
|
```
|
|
33
36
|
|
|
37
|
+
After `.aw/workspace.yaml` exists, continue with the channel MCP
|
|
38
|
+
configuration checks below.
|
|
39
|
+
|
|
34
40
|
Do not instruct the user to use legacy project bootstrap commands.
|
|
35
41
|
|
|
36
42
|
2. **Verify the workspace is valid.**
|