siteplane 0.1.40 → 0.1.42
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 +25 -0
- package/dist/bin/siteplane.js +355 -308
- package/dist/index.js +308 -167
- package/dist/next.js +231 -90
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,6 +3,31 @@
|
|
|
3
3
|
Public Siteplane CLI for connected-site setup, field synchronization, Analytics
|
|
4
4
|
instrumentation and Booking integration.
|
|
5
5
|
|
|
6
|
+
## Initial setup
|
|
7
|
+
|
|
8
|
+
Copy the setup prompt in Siteplane, then run its exact one-time command in the
|
|
9
|
+
website repository:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npx -y siteplane@0.1.42 init --setup-token <one-time-setup-grant>
|
|
13
|
+
npx siteplane setup context
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
`init` exchanges the short-lived grant for the run-bound Project Connection and
|
|
17
|
+
stores it only in the ignored `.siteplane/credentials.json`. No browser approval
|
|
18
|
+
is required. The same connection resumes the open setup and review corrections
|
|
19
|
+
until the owner completes or revokes the setup.
|
|
20
|
+
|
|
21
|
+
`setup context` returns the single `siteplane.setup-task.v2` task: exact packages, current run,
|
|
22
|
+
authorized modules/scopes, separate unchanged user instructions, environment provenance and one next action.
|
|
23
|
+
An initial instruction such as `Only prices` does not start a correction workflow. The agent integrates
|
|
24
|
+
Siteplane's existing CMS editing layer, preserving the website; it does not build a separate CMS.
|
|
25
|
+
|
|
26
|
+
Report observed work with `siteplane setup activity --phase inspecting` (also integrating, deploying,
|
|
27
|
+
verifying or repairing). Reports are limited to one per 30 seconds; context polling is not activity.
|
|
28
|
+
Optional Analytics preparation uses this same connection with explicit authorization. It grants no
|
|
29
|
+
activation, import, reporting, booking or publishing rights. Standalone bootstrap cannot replace an open task.
|
|
30
|
+
|
|
6
31
|
## Approved fields
|
|
7
32
|
|
|
8
33
|
Run the exact command from Siteplane's compact apply prompt. It authenticates
|