ace-handbook-integration-codex 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: 926ad684b70003019b93780b5199cfd10b961b89a3d7bf1a8ca6e99ef1b945b7
4
+ data.tar.gz: 8c85850418b549566f1d3badfe56de699a694abda929aacc22af3fd2a3ed028d
5
+ SHA512:
6
+ metadata.gz: '049884e477a799a5fb4201d5b9659f2d9552db3925d684c5198184d630bcf96227444a68d9c1ed4af2f4aee8a2bbcb431e4a1f25df95ed2922e2af1b2083d4c1'
7
+ data.tar.gz: 5015520fdbc73d0c2decc538526c7c217270dafd9519e5eceab0b6e764d5c8c00c032c33e6cfe39121ef7a0516fcd2123139a184c44e4330c35ac7f4f9c7f9fe
@@ -0,0 +1,2 @@
1
+ provider: codex
2
+ output_dir: .codex/skills
data/CHANGELOG.md ADDED
@@ -0,0 +1,31 @@
1
+ # Changelog
2
+
3
+ All notable changes to ace-handbook-integration-codex 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, Codex-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 Codex 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 Codex provider manifest and packaging support so `ace-handbook sync` can project canonical skills into `.codex/skills`.
22
+
23
+ ## [0.1.1] - 2026-03-10
24
+
25
+ ### Added
26
+ - Added the Codex-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 Codex handbook integration support.
data/README.md ADDED
@@ -0,0 +1,30 @@
1
+ <div align="center">
2
+ <h1> ACE - Handbook Integration Codex </h1>
3
+
4
+ Codex 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-codex"><img alt="Gem Version" src="https://img.shields.io/gem/v/ace-handbook-integration-codex.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-codex` maps canonical ACE handbook skills into Codex-compatible projection assets so that skill invocations from Codex CLI resolve correctly while keeping semantics unchanged from the definitions in [ace-handbook](../ace-handbook).
19
+
20
+ ## Use Cases
21
+
22
+ **Run handbook workflows in Codex contexts** - keep the same behavior while using Codex-native execution entrypoints, so agents running under Codex CLI get the same skill intent as any other provider.
23
+
24
+ **Avoid duplication across providers** - update canonical skill definitions once in [ace-handbook](../ace-handbook) and generate Codex-specific projections automatically from shared contracts.
25
+
26
+ **Keep integration delivery minimal** - maintain a focused provider shim layer with only the manifests and projection assets needed for Codex compatibility.
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 Codex
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 "codex/version"
5
+
6
+ module Ace
7
+ module Handbook
8
+ module Integration
9
+ module Codex
10
+ end
11
+ end
12
+ end
13
+ end
metadata ADDED
@@ -0,0 +1,63 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ace-handbook-integration-codex
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: Codex-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/codex.yml"
35
+ - CHANGELOG.md
36
+ - README.md
37
+ - lib/ace/handbook/integration/codex.rb
38
+ - lib/ace/handbook/integration/codex/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-codex/
45
+ changelog_uri: https://github.com/cs3b/ace/blob/main/ace-handbook-integration-codex/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: Codex provider integration for ACE handbook skills
63
+ test_files: []