@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 +3 -3
- package/README.md +7 -0
- package/dist/cli.js +598 -123
- package/dist/cli.js.map +1 -1
- package/dist/index.js +598 -123
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
## [0.
|
|
1
|
+
## [0.3.0](https://github.com/clickraft/cli/compare/v0.2.0...v0.3.0) (2026-05-24)
|
|
2
2
|
|
|
3
|
-
###
|
|
3
|
+
### Features
|
|
4
4
|
|
|
5
|
-
* **
|
|
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.
|