@clickraft/cli 0.1.8 → 0.3.0

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
@@ -1,8 +1,8 @@
1
- ## [0.1.8](https://github.com/clickraft/cli/compare/v0.1.7...v0.1.8) (2026-05-23)
1
+ ## [0.3.0](https://github.com/clickraft/cli/compare/v0.2.0...v0.3.0) (2026-05-24)
2
2
 
3
- ### Bug Fixes
3
+ ### Features
4
4
 
5
- * **schemas:** allow null clientId on tokens response ([b2b8720](https://github.com/clickraft/cli/commit/b2b8720170c4e80100b194eecf1bb2c57d13c271))
5
+ * **commands:** add template list, get, and find commands ([b2f5c5c](https://github.com/clickraft/cli/commit/b2f5c5c2e501f8ea5c6586476d121b97ce97f4ba))
6
6
 
7
7
  # Changelog
8
8
 
package/README.md CHANGED
@@ -17,6 +17,11 @@ Requires Node.js 20 or later.
17
17
  ```bash
18
18
  clickraft login
19
19
  clickraft generate create --prompt "a serene mountain landscape at dawn"
20
+ clickraft balance
21
+ clickraft brand-model list
22
+ clickraft template list
23
+ clickraft template get <template-id>
24
+ clickraft template find "coffee brand"
20
25
  ```
21
26
 
22
27
  Full documentation: [docs.clickraft.ai/cli](https://docs.clickraft.ai/cli) _(coming soon)_
@@ -30,6 +35,8 @@ export CLOUDFLARE_ACCESS_CLIENT_ID="<client-id>.access"
30
35
  export CLOUDFLARE_ACCESS_CLIENT_SECRET="<client-secret>"
31
36
 
32
37
  clickraft tokens list --profile staging
38
+ clickraft balance --profile staging
39
+ clickraft brand-model list --profile staging
33
40
  ```
34
41
 
35
42
  Both env vars must be set together — if only one is set the CLI exits with a configuration error. Production usage (the default) does not require these env vars.