fizzy-cli 0.3.1 → 0.3.2
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +12 -20
- data/lib/fizzy/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e138fc3dd09193bc96ddc984ec1a4c68c5d425ab1522f90633cb8013741dcab2
|
|
4
|
+
data.tar.gz: ad8e75db7233f1fb6fb6aed72713c0a7876bc5cc94f0e39644b18562e02f3c97
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f9fc0ed67b2f598b0959ba808b1b0b992430f2aba7c1e98f5b29aeb757351575e3700da8864943f385f2ffcd9be3795229cfdbb57a4bea963768559eacd1aac7
|
|
7
|
+
data.tar.gz: 4e3d6af1559e5994c1431b1a5681c806c8a3661cf8de8d0e84dbca5f44c7f1df598a4bac10238dada7f05267f48bfbc264ff6f526a8ac2eb4c0f49a5eed514d9
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/).
|
|
7
7
|
|
|
8
|
+
## [0.3.2] - 2026-02-22
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- Moved AI Agent Skill section in README to immediately follow Install
|
|
12
|
+
|
|
8
13
|
## [0.3.1] - 2026-02-22
|
|
9
14
|
|
|
10
15
|
### Changed
|
data/README.md
CHANGED
|
@@ -13,6 +13,18 @@ Requires Ruby >= 3.2.
|
|
|
13
13
|
gem install fizzy
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
+
### AI Agent Skill
|
|
17
|
+
|
|
18
|
+
Fizzy CLI ships with a [skill file](skills/fizzy-cli/SKILL.md) that teaches AI coding assistants (Claude Code, Codex) how to use the CLI. Install it so agents can manage your Fizzy boards and cards autonomously.
|
|
19
|
+
|
|
20
|
+
```sh
|
|
21
|
+
fizzy skill install # Claude Code, user-level (default)
|
|
22
|
+
fizzy skill install --target codex # OpenAI Codex / OpenCode
|
|
23
|
+
fizzy skill install --target all # All supported agents
|
|
24
|
+
fizzy skill install --scope project # Project-level instead of user-level
|
|
25
|
+
fizzy skill uninstall # Remove skill file
|
|
26
|
+
```
|
|
27
|
+
|
|
16
28
|
## Authentication
|
|
17
29
|
|
|
18
30
|
### Getting a Personal Access Token
|
|
@@ -190,26 +202,6 @@ bundle exec rake test # tests only
|
|
|
190
202
|
bundle exec rubocop # lint only
|
|
191
203
|
```
|
|
192
204
|
|
|
193
|
-
## AI Agent Integration
|
|
194
|
-
|
|
195
|
-
Fizzy CLI ships with a [skill file](skills/fizzy-cli/SKILL.md) that teaches AI coding assistants how to use the CLI. Install it so agents can manage your Fizzy boards and cards autonomously.
|
|
196
|
-
|
|
197
|
-
The `fizzy` gem must be installed and authenticated first:
|
|
198
|
-
|
|
199
|
-
```sh
|
|
200
|
-
gem install fizzy-cli
|
|
201
|
-
fizzy auth login --token YOUR_TOKEN
|
|
202
|
-
```
|
|
203
|
-
|
|
204
|
-
```sh
|
|
205
|
-
fizzy skill install # Claude Code, user-level (default)
|
|
206
|
-
fizzy skill install --target codex # OpenAI Codex / OpenCode
|
|
207
|
-
fizzy skill install --target all # All supported agents
|
|
208
|
-
fizzy skill install --scope project # Project-level instead of user-level
|
|
209
|
-
fizzy skill uninstall # Remove skill file
|
|
210
|
-
```
|
|
211
|
-
|
|
212
|
-
|
|
213
205
|
## Contributing
|
|
214
206
|
|
|
215
207
|
Bug reports and pull requests are welcome on GitHub at https://github.com/dpaluy/fizzy-cli.
|
data/lib/fizzy/version.rb
CHANGED