@greatstore/cli 0.1.1 → 0.1.3
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/CHANGELOG.md +15 -0
- package/README.md +15 -16
- package/dist/cli.js +178 -136
- package/dist/gs-skill/SKILL.md +83 -0
- package/dist/gs-skill/recipes/ask-about-this.md +31 -0
- package/dist/gs-skill/recipes/campaign-hero.md +43 -0
- package/dist/gs-skill/recipes/comparison-table.md +80 -0
- package/dist/gs-skill/recipes/complete-the-look.md +59 -0
- package/dist/gs-skill/recipes/custom-chat-button.md +25 -0
- package/dist/gs-skill/recipes/gift-finder-funnel.md +97 -0
- package/dist/gs-skill/recipes/launchers.md +109 -0
- package/dist/gs-skill/recipes/page-action-suite.md +90 -0
- package/dist/gs-skill/recipes/product-faq.md +58 -0
- package/dist/gs-skill/references/agents-and-mcp.md +35 -0
- package/dist/gs-skill/references/chat-components.md +224 -0
- package/dist/gs-skill/references/embed-api.md +381 -0
- package/dist/gs-skill/references/push-notifications.md +66 -0
- package/dist/gs-skill/references/store-admin.md +121 -0
- package/dist/gs-skill/references/structured-content.md +252 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,21 @@
|
|
|
3
3
|
All notable changes to `@greatstore/cli` are recorded here. The format
|
|
4
4
|
follows [Keep a Changelog](https://keepachangelog.com/).
|
|
5
5
|
|
|
6
|
+
## 0.1.3 — 2026-09-12
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
- `gs skill` prints the steps for installing the GreatStore agent skill
|
|
10
|
+
instead of installing it itself, so any AI coding agent can set it up in
|
|
11
|
+
whichever skills directory it uses — no `--global` or `--dir` to pick.
|
|
12
|
+
- The installed skill is a link to the copy that ships with the CLI, so
|
|
13
|
+
upgrading `@greatstore/cli` keeps it current with nothing to re-run.
|
|
14
|
+
|
|
15
|
+
## 0.1.2 — 2026-09-04
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- `gs apps pull` now downloads components that aren't published yet. Pulling
|
|
19
|
+
one used to report that it wasn't found on the server.
|
|
20
|
+
|
|
6
21
|
## 0.1.1 — 2026-08-20
|
|
7
22
|
|
|
8
23
|
### Changed
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ agent to build with GreatStore.
|
|
|
6
6
|
|
|
7
7
|
```
|
|
8
8
|
npm install -g @greatstore/cli
|
|
9
|
-
gs skill #
|
|
9
|
+
gs skill # print how to set up your AI coding agent
|
|
10
10
|
gs login
|
|
11
11
|
gs configure # see your store's configuration
|
|
12
12
|
gs apps init --store <slug>
|
|
@@ -90,26 +90,25 @@ component doesn't accept is an error. A component still declaring
|
|
|
90
90
|
|
|
91
91
|
### Agent skill
|
|
92
92
|
|
|
93
|
-
| Command
|
|
94
|
-
|
|
|
95
|
-
| `gs skill
|
|
93
|
+
| Command | What it does |
|
|
94
|
+
| ---------- | ---------------------------------------------------------------- |
|
|
95
|
+
| `gs skill` | Print how to install the GreatStore agent skill, for the agent to follow. |
|
|
96
96
|
|
|
97
97
|
## Agent skill
|
|
98
98
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
store's MCP endpoints.
|
|
99
|
+
The GreatStore agent skill is a guide AI coding agents (Claude Code and
|
|
100
|
+
friends) use to build with GreatStore: AI content for your own UI, chat
|
|
101
|
+
entry points, page tools the assistant can call, custom in-chat
|
|
102
|
+
components, push notifications, and the store's MCP endpoints.
|
|
104
103
|
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
gs skill
|
|
109
|
-
```
|
|
104
|
+
`gs skill` prints the steps to install it, addressed to the agent that
|
|
105
|
+
ran it — the agent knows its own skills directory, so it can set the
|
|
106
|
+
skill up there without the CLI guessing. Ask your agent to run
|
|
107
|
+
`gs skill` and follow what it prints; no sign-in or store needed.
|
|
110
108
|
|
|
111
|
-
|
|
112
|
-
|
|
109
|
+
The install is a link to the skill that ships with the CLI, so
|
|
110
|
+
`npm install -g @greatstore/cli` keeps it current with nothing to
|
|
111
|
+
re-run.
|
|
113
112
|
|
|
114
113
|
## Store selection
|
|
115
114
|
|