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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +5 -0
  3. data/README.md +12 -20
  4. data/lib/fizzy/version.rb +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a799ac974669e5becb4d5bd617a4158be7878e36a432014b4c9b1cba9823b92b
4
- data.tar.gz: 4d14b732076b82dd8e0d26102da3db311a6ff14d38707f055e17264012949e53
3
+ metadata.gz: e138fc3dd09193bc96ddc984ec1a4c68c5d425ab1522f90633cb8013741dcab2
4
+ data.tar.gz: ad8e75db7233f1fb6fb6aed72713c0a7876bc5cc94f0e39644b18562e02f3c97
5
5
  SHA512:
6
- metadata.gz: bc9f814d55706dab9762776cccd10492cc0087c0c3152ab968701e98e87812714a52dfa0e9c79eccb3133e7288762f5a081a63c07b8d829f848a85f37606c4d9
7
- data.tar.gz: fff7b7a0f5435d848a8b0c87a82f7f2eaa92d586dc4359f5c8711fd890a7b3f3ed5dc597e326017612cd944f264a076d436f30116df669632b46399921c93532
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Fizzy
4
- VERSION = "0.3.1"
4
+ VERSION = "0.3.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fizzy-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Paluy