showpane 0.4.22 → 0.4.23
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/bundle/meta/scaffold-manifest.json +1 -1
- package/bundle/toolchain/CLI_VERSION +1 -1
- package/bundle/toolchain/VERSION +1 -1
- package/bundle/toolchain/skills/portal-create/SKILL.md +2 -0
- package/bundle/toolchain/skills/portal-create/SKILL.md.tmpl +2 -0
- package/bundle/toolchain/skills/portal-deploy/SKILL.md +4 -5
- package/bundle/toolchain/skills/portal-deploy/SKILL.md.tmpl +4 -5
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.23
|
package/bundle/toolchain/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.8 (requires app >= 0.2.7)
|
|
@@ -141,6 +141,8 @@ of guessing with ad-hoc SQL.
|
|
|
141
141
|
Do not probe `showpane --help`, `package.json`, `scripts/`, `prisma/`, or template
|
|
142
142
|
directories just to understand the project. Do not call `check-slug.ts` with
|
|
143
143
|
anything except `--org-id`.
|
|
144
|
+
Do not re-read config, Prisma, or SQLite to rediscover org fields that were already
|
|
145
|
+
returned by `get-org.ts`.
|
|
144
146
|
|
|
145
147
|
The canonical references for this skill are:
|
|
146
148
|
|
|
@@ -46,6 +46,8 @@ of guessing with ad-hoc SQL.
|
|
|
46
46
|
Do not probe `showpane --help`, `package.json`, `scripts/`, `prisma/`, or template
|
|
47
47
|
directories just to understand the project. Do not call `check-slug.ts` with
|
|
48
48
|
anything except `--org-id`.
|
|
49
|
+
Do not re-read config, Prisma, or SQLite to rediscover org fields that were already
|
|
50
|
+
returned by `get-org.ts`.
|
|
49
51
|
|
|
50
52
|
The canonical references for this skill are:
|
|
51
53
|
|
|
@@ -131,10 +131,9 @@ fi
|
|
|
131
131
|
If the token is missing, stop and tell the user:
|
|
132
132
|
|
|
133
133
|
- `showpane login` is the right next step
|
|
134
|
-
- it
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
- sign in: `https://app.showpane.com/sign-in`
|
|
134
|
+
- it owns the whole browser flow now: sign up or sign in if needed, start checkout,
|
|
135
|
+
then return to CLI authorization automatically
|
|
136
|
+
- do not manually steer the user through separate sign-up, sign-in, or checkout steps
|
|
138
137
|
|
|
139
138
|
If they are already inside Claude Code, explicitly suggest:
|
|
140
139
|
|
|
@@ -536,7 +535,7 @@ If the health endpoint returns non-200 after deploy:
|
|
|
536
535
|
If the Showpane Cloud API returns 401/403 during pre-flight or publish:
|
|
537
536
|
- **401 Unauthorized**: The access token is expired or revoked. Run `showpane login` to re-authenticate.
|
|
538
537
|
- **403 Forbidden**: The token does not belong to an org that can publish. Re-authenticate or finish cloud onboarding.
|
|
539
|
-
- **409 organization_required**:
|
|
538
|
+
- **409 organization_required**: Tell the user to run `showpane login` again and let that browser flow continue. Do not manually redirect them into separate checkout steps from this skill.
|
|
540
539
|
- **409 organization_not_ready**: The org exists, but billing or provisioning is not publish-ready. Surface the returned `reason`, `nextAction`, and settings/checkout URL directly instead of collapsing it into a generic deploy failure.
|
|
541
540
|
|
|
542
541
|
### Cloud: Artifact upload failure
|
|
@@ -36,10 +36,9 @@ fi
|
|
|
36
36
|
If the token is missing, stop and tell the user:
|
|
37
37
|
|
|
38
38
|
- `showpane login` is the right next step
|
|
39
|
-
- it
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
- sign in: `https://app.showpane.com/sign-in`
|
|
39
|
+
- it owns the whole browser flow now: sign up or sign in if needed, start checkout,
|
|
40
|
+
then return to CLI authorization automatically
|
|
41
|
+
- do not manually steer the user through separate sign-up, sign-in, or checkout steps
|
|
43
42
|
|
|
44
43
|
If they are already inside Claude Code, explicitly suggest:
|
|
45
44
|
|
|
@@ -441,7 +440,7 @@ If the health endpoint returns non-200 after deploy:
|
|
|
441
440
|
If the Showpane Cloud API returns 401/403 during pre-flight or publish:
|
|
442
441
|
- **401 Unauthorized**: The access token is expired or revoked. Run `showpane login` to re-authenticate.
|
|
443
442
|
- **403 Forbidden**: The token does not belong to an org that can publish. Re-authenticate or finish cloud onboarding.
|
|
444
|
-
- **409 organization_required**:
|
|
443
|
+
- **409 organization_required**: Tell the user to run `showpane login` again and let that browser flow continue. Do not manually redirect them into separate checkout steps from this skill.
|
|
445
444
|
- **409 organization_not_ready**: The org exists, but billing or provisioning is not publish-ready. Surface the returned `reason`, `nextAction`, and settings/checkout URL directly instead of collapsing it into a generic deploy failure.
|
|
446
445
|
|
|
447
446
|
### Cloud: Artifact upload failure
|