@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 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 # teach your AI coding agent to build with GreatStore
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 | What it does |
94
- | ------------------------------------ | --------------------------------------------------------- |
95
- | `gs skill [--global] [--dir <path>]` | Install the GreatStore agent skill for AI coding agents. |
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
- `gs skill` installs the GreatStore agent skill a guide AI coding
100
- agents (Claude Code and friends) use to build with GreatStore: AI
101
- content for your own UI, chat entry points, page tools the assistant
102
- can call, custom in-chat components, push notifications, and the
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
- gs skill # ./.claude/skills/greatstore/ (this project)
107
- gs skill --global # ~/.claude/skills/greatstore/ (every project)
108
- gs skill --dir <p> # <p>/greatstore/ (custom location)
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
- Run it again any time to update an installed copy. No sign-in or store
112
- needed.
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