siteplane 0.1.42 → 0.1.43
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 +20 -1
- package/dist/bin/siteplane.js +1925 -433
- package/dist/index.js +1198 -377
- package/dist/next.js +1382 -396
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -9,7 +9,8 @@ Copy the setup prompt in Siteplane, then run its exact one-time command in the
|
|
|
9
9
|
website repository:
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
npx -y siteplane
|
|
12
|
+
npx -y siteplane@<exact-version> setup preflight
|
|
13
|
+
npx -y siteplane@<exact-version> init --setup-token <one-time-setup-grant>
|
|
13
14
|
npx siteplane setup context
|
|
14
15
|
```
|
|
15
16
|
|
|
@@ -28,6 +29,24 @@ verifying or repairing). Reports are limited to one per 30 seconds; context poll
|
|
|
28
29
|
Optional Analytics preparation uses this same connection with explicit authorization. It grants no
|
|
29
30
|
activation, import, reporting, booking or publishing rights. Standalone bootstrap cannot replace an open task.
|
|
30
31
|
|
|
32
|
+
`setup prepare` installs the task's exact packages and creates the narrow official runtime integration.
|
|
33
|
+
The agent chooses and instruments content, then persists a separate, bounded summary:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
siteplane setup apply --definition editor-definition.json --selection-summary-file selection.txt
|
|
37
|
+
siteplane setup deploy --wait
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Commit only intended source before deploy. The CLI securely transfers its Production environment, adopts or
|
|
41
|
+
starts one matching deployment and verifies the actual build and signed runtime. Unchanged resume creates no
|
|
42
|
+
new deployment. A saved 15-minute provider deadline and operation identity prevent blind retries after response
|
|
43
|
+
loss. Uploads use committed source in a temporary checkout; local credentials are never copied into it.
|
|
44
|
+
|
|
45
|
+
For a lost connection, the owner chooses **Replace local connection** in the same open setup. Its new grant
|
|
46
|
+
preserves the Site, Run, runtime key, revalidation generation, selected fields and provider admin-session secret.
|
|
47
|
+
Completed setup credentials remain closed. Known package/workspace/provider conflicts are diagnosed before
|
|
48
|
+
writes; support ranges do not trigger automatic framework or package-manager upgrades.
|
|
49
|
+
|
|
31
50
|
## Approved fields
|
|
32
51
|
|
|
33
52
|
Run the exact command from Siteplane's compact apply prompt. It authenticates
|