@greatstore/cli 0.1.1 → 0.1.4

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,38 @@
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.4 — 2026-09-12
7
+
8
+ ### Added
9
+ - Edit one theme field at a time: `gs configure set --theme.fontFamily Manrope
10
+ --theme.radius sharp`. Theme writes merge into the stored theme, so a
11
+ one-field change no longer means retyping the whole object (and no longer
12
+ drops the keys you left out). `--replace` writes a theme outright.
13
+ - `gs configure set --help` prints every field it accepts with its type and
14
+ legal values, and a mistyped field name or value is now rejected with the
15
+ valid list before anything is sent.
16
+
17
+ ### Changed
18
+ - Rejected configuration writes say what was wrong with them — the field and
19
+ the values it accepts — instead of "Request rejected."
20
+ - Commands no longer wait on a version check every run, which takes about half
21
+ a second off each one.
22
+
23
+ ## 0.1.3 — 2026-09-12
24
+
25
+ ### Changed
26
+ - `gs skill` prints the steps for installing the GreatStore agent skill
27
+ instead of installing it itself, so any AI coding agent can set it up in
28
+ whichever skills directory it uses — no `--global` or `--dir` to pick.
29
+ - The installed skill is a link to the copy that ships with the CLI, so
30
+ upgrading `@greatstore/cli` keeps it current with nothing to re-run.
31
+
32
+ ## 0.1.2 — 2026-09-04
33
+
34
+ ### Fixed
35
+ - `gs apps pull` now downloads components that aren't published yet. Pulling
36
+ one used to report that it wasn't found on the server.
37
+
6
38
  ## 0.1.1 — 2026-08-20
7
39
 
8
40
  ### 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