@tenderprompt/cli 0.1.15 → 0.1.17
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 +4 -3
- package/dist/index.js +1043 -21
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -56,7 +56,7 @@ tender capabilities --json
|
|
|
56
56
|
|
|
57
57
|
tender auth login --device --profile edit-preview --artifact artifact_123 --ttl 7d
|
|
58
58
|
|
|
59
|
-
tender app init artifact_123 --dir ./widget --json
|
|
59
|
+
tender app init artifact_123 --dir ./widget --preview --json
|
|
60
60
|
|
|
61
61
|
cd ./widget
|
|
62
62
|
npm run check
|
|
@@ -70,7 +70,7 @@ tender app publish artifact_123 --commit "$(git rev-parse HEAD)" --confirm publi
|
|
|
70
70
|
For agents, keep the pattern simple:
|
|
71
71
|
|
|
72
72
|
1. start with `tender capabilities --json`
|
|
73
|
-
2. use `tender app init` to clone/bootstrap an existing app checkout
|
|
73
|
+
2. use `tender app init --preview` to clone/bootstrap an existing app checkout
|
|
74
74
|
3. inspect and edit files locally
|
|
75
75
|
4. run `tender app doctor` and local project checks
|
|
76
76
|
5. push source with Git
|
|
@@ -128,8 +128,9 @@ tender --version
|
|
|
128
128
|
tender capabilities --json
|
|
129
129
|
tender app list --json
|
|
130
130
|
tender app create --name "Exit Intent Widget" --json
|
|
131
|
+
tender app create --name "Exit Intent Widget" --init --dir ./widget --preview --json
|
|
131
132
|
tender app update artifact_123 --name "Sale Widget" --json
|
|
132
|
-
tender app init artifact_123 --dir ./widget --json
|
|
133
|
+
tender app init artifact_123 --dir ./widget --preview --json
|
|
133
134
|
tender app bindings outbound --id shopify --host admin.shopify.com --dry-run --json
|
|
134
135
|
tender app context status artifact_123 --dir ./widget --json
|
|
135
136
|
tender app doctor --dir ./widget --json
|