ace-handbook-integration-gemini 0.3.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 13b9e6e9d2bb42c50457caf3c491b8ffd01ca55b2d0d635709a8169c7c92ac88
4
+ data.tar.gz: 5696fbfb798a3e6aa1d4250c2788c591c05e0b5cc268a0e64e6ff828b3e64a60
5
+ SHA512:
6
+ metadata.gz: 814cbf18cf385ad6a054df6c1966567467db64335c83ffd421942b86109dc818876a737821107c6d310e45f96c122e20da83ad99f2b60e454cf91359c7db27f8
7
+ data.tar.gz: 647d805585a25ea0c4462906db569424a36b12f3a5392cb963d3c6c54bfc0998a1ab53ecd6d981da69fc04b5653ca78b746e983709c4c36f65f8b84f27e6bf53
@@ -0,0 +1,2 @@
1
+ provider: gemini
2
+ output_dir: .gemini/skills
data/CHANGELOG.md ADDED
@@ -0,0 +1,31 @@
1
+ # Changelog
2
+
3
+ All notable changes to ace-handbook-integration-gemini will be documented in this file.
4
+
5
+ ## [Unreleased]
6
+
7
+ ## [0.3.1] - 2026-03-22
8
+
9
+ ### Technical
10
+ - Refreshed the package README with standardized handbook integration sections, Gemini-specific provider wording, and ACE/`ace-handbook` linkage.
11
+
12
+ ## [0.3.0] - 2026-03-12
13
+
14
+ ### Changed
15
+ - Replaced the legacy `ace-handbook-integration-agent` dependency with a direct `ace-handbook` runtime dependency.
16
+ - Updated the package entrypoint and docs to treat Gemini integration as a thin provider plugin on top of `ace-handbook`.
17
+
18
+ ## [0.2.0] - 2026-03-10
19
+
20
+ ### Added
21
+ - Added a shipped Gemini provider manifest and packaging support so `ace-handbook sync` can project canonical skills into `.gemini/skills`.
22
+
23
+ ## [0.1.1] - 2026-03-10
24
+
25
+ ### Added
26
+ - Added the Gemini-specific handbook integration package scaffold on top of the shared agent integration base.
27
+
28
+ ## [0.1.0] - 2026-03-10
29
+
30
+ ### Added
31
+ - Initial package scaffold for Gemini handbook integration support.
data/README.md ADDED
@@ -0,0 +1,30 @@
1
+ <div align="center">
2
+ <h1> ACE - Handbook Integration Gemini </h1>
3
+
4
+ Gemini CLI provider integration for ACE handbook skills and workflows.
5
+
6
+ <img src="https://raw.githubusercontent.com/cs3b/ace/main/docs/brand/AgenticCodingEnvironment.Logo.XS.jpg" alt="ACE Logo" width="480">
7
+ <br><br>
8
+
9
+ <a href="https://rubygems.org/gems/ace-handbook-integration-gemini"><img alt="Gem Version" src="https://img.shields.io/gem/v/ace-handbook-integration-gemini.svg" /></a>
10
+ <a href="https://www.ruby-lang.org"><img alt="Ruby" src="https://img.shields.io/badge/Ruby-3.2+-CC342D?logo=ruby" /></a>
11
+ <a href="https://opensource.org/licenses/MIT"><img alt="License: MIT" src="https://img.shields.io/badge/License-MIT-blue.svg" /></a>
12
+
13
+ </div>
14
+
15
+ > Works with: Claude Code, Codex CLI, OpenCode, Gemini CLI, pi-agent, and more.
16
+
17
+ [ace-handbook](../ace-handbook)
18
+ `ace-handbook-integration-gemini` projects canonical ACE handbook skills into Gemini-native manifest assets so that skill invocations from Gemini CLI resolve to the correct provider entrypoints while preserving shared semantics from [ace-handbook](../ace-handbook).
19
+
20
+ ## Use Cases
21
+
22
+ **Run ACE skill workflows in Gemini-native stacks** - preserve canonical behavior while using Gemini-native projection format, so agents running under Gemini CLI get the same skill intent as any other provider.
23
+
24
+ **Centralize skill updates** - keep shared definitions in [ace-handbook](../ace-handbook) and avoid provider-specific drift by generating Gemini projections from one canonical source.
25
+
26
+ **Ship lean provider packs** - support only the provider shims and manifests needed for Gemini compatibility, keeping integration scope minimal.
27
+
28
+ ---
29
+
30
+ Part of [ACE](https://github.com/cs3b/ace)
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Ace
4
+ module Handbook
5
+ module Integration
6
+ module Gemini
7
+ VERSION = "0.3.1"
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "ace/handbook"
4
+ require_relative "gemini/version"
5
+
6
+ module Ace
7
+ module Handbook
8
+ module Integration
9
+ module Gemini
10
+ end
11
+ end
12
+ end
13
+ end
metadata ADDED
@@ -0,0 +1,63 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ace-handbook-integration-gemini
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.1
5
+ platform: ruby
6
+ authors:
7
+ - Michal Czyz
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: ace-handbook
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '0.13'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '0.13'
26
+ description: Gemini-specific provider integration package that extends ace-handbook
27
+ with provider manifests.
28
+ email:
29
+ - mc@cs3b.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - ".ace-defaults/handbook/providers/gemini.yml"
35
+ - CHANGELOG.md
36
+ - README.md
37
+ - lib/ace/handbook/integration/gemini.rb
38
+ - lib/ace/handbook/integration/gemini/version.rb
39
+ homepage: https://github.com/cs3b/ace
40
+ licenses:
41
+ - MIT
42
+ metadata:
43
+ homepage_uri: https://github.com/cs3b/ace
44
+ source_code_uri: https://github.com/cs3b/ace/tree/main/ace-handbook-integration-gemini/
45
+ changelog_uri: https://github.com/cs3b/ace/blob/main/ace-handbook-integration-gemini/CHANGELOG.md
46
+ rdoc_options: []
47
+ require_paths:
48
+ - lib
49
+ required_ruby_version: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: 3.2.0
54
+ required_rubygems_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: '0'
59
+ requirements: []
60
+ rubygems_version: 3.6.9
61
+ specification_version: 4
62
+ summary: Gemini provider integration for ACE handbook skills
63
+ test_files: []