siteplane 0.1.41 → 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 +30 -1
- package/dist/bin/siteplane.js +2033 -417
- package/dist/index.js +1280 -363
- package/dist/next.js +1464 -382
- 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
|
|
|
@@ -18,6 +19,34 @@ stores it only in the ignored `.siteplane/credentials.json`. No browser approval
|
|
|
18
19
|
is required. The same connection resumes the open setup and review corrections
|
|
19
20
|
until the owner completes or revokes the setup.
|
|
20
21
|
|
|
22
|
+
`setup context` returns the single `siteplane.setup-task.v2` task: exact packages, current run,
|
|
23
|
+
authorized modules/scopes, separate unchanged user instructions, environment provenance and one next action.
|
|
24
|
+
An initial instruction such as `Only prices` does not start a correction workflow. The agent integrates
|
|
25
|
+
Siteplane's existing CMS editing layer, preserving the website; it does not build a separate CMS.
|
|
26
|
+
|
|
27
|
+
Report observed work with `siteplane setup activity --phase inspecting` (also integrating, deploying,
|
|
28
|
+
verifying or repairing). Reports are limited to one per 30 seconds; context polling is not activity.
|
|
29
|
+
Optional Analytics preparation uses this same connection with explicit authorization. It grants no
|
|
30
|
+
activation, import, reporting, booking or publishing rights. Standalone bootstrap cannot replace an open task.
|
|
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
|
+
|
|
21
50
|
## Approved fields
|
|
22
51
|
|
|
23
52
|
Run the exact command from Siteplane's compact apply prompt. It authenticates
|