ace-handbook-integration-opencode 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: f8261057569af26a622cc5f1017ee81c138fda1650ec4ce570f07c40a7dd44c2
4
+ data.tar.gz: 0f74408091dd8826efa9714cb8ac515054f2b71b9f1e9974e4318230861afb70
5
+ SHA512:
6
+ metadata.gz: af1c870d1608a4016c81f9557e6862c8392d1b79ed6a19bc02d80bd2b5aaa621898bae851d28ed12f14464b00c84988b52e44a1236d175c56db7bec615d0bc77
7
+ data.tar.gz: '095c9e077fce19a7a2bcc543974267455f1419088abf9a6962335edde29fe5968b4db963789a53b9e4ecb0fa346aeffb007a54ee6da9d61891bc7bce48b9b509'
@@ -0,0 +1,2 @@
1
+ provider: opencode
2
+ output_dir: .opencode/skills
data/CHANGELOG.md ADDED
@@ -0,0 +1,31 @@
1
+ # Changelog
2
+
3
+ All notable changes to ace-handbook-integration-opencode 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, OpenCode-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 OpenCode 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 OpenCode provider manifest and packaging support so `ace-handbook sync` can project canonical skills into `.opencode/skills`.
22
+
23
+ ## [0.1.1] - 2026-03-10
24
+
25
+ ### Added
26
+ - Added the OpenCode-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 OpenCode handbook integration support.
data/README.md ADDED
@@ -0,0 +1,30 @@
1
+ <div align="center">
2
+ <h1> ACE - Handbook Integration OpenCode </h1>
3
+
4
+ OpenCode 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-opencode"><img alt="Gem Version" src="https://img.shields.io/gem/v/ace-handbook-integration-opencode.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-opencode` provides OpenCode-focused handbook manifests and projection artifacts so that canonical ACE skills invoked from OpenCode resolve to the correct provider entrypoints while preserving shared semantics from [ace-handbook](../ace-handbook).
19
+
20
+ ## Use Cases
21
+
22
+ **Run ACE workflows from OpenCode integrations** - keep canonical skill intent while targeting OpenCode entrypoints, so agents running under OpenCode get the same behavior as any other provider.
23
+
24
+ **Adapt quickly to provider-specific layouts** - update projection assets inside this package instead of rewriting handbook logic, keeping changes isolated from [ace-handbook](../ace-handbook) canonical definitions.
25
+
26
+ **Keep provider layers small** - isolate integration glue from core handbook behavior with a focused set of manifests and projection assets.
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 Opencode
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 "opencode/version"
5
+
6
+ module Ace
7
+ module Handbook
8
+ module Integration
9
+ module Opencode
10
+ end
11
+ end
12
+ end
13
+ end
metadata ADDED
@@ -0,0 +1,63 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ace-handbook-integration-opencode
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: OpenCode-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/opencode.yml"
35
+ - CHANGELOG.md
36
+ - README.md
37
+ - lib/ace/handbook/integration/opencode.rb
38
+ - lib/ace/handbook/integration/opencode/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-opencode/
45
+ changelog_uri: https://github.com/cs3b/ace/blob/main/ace-handbook-integration-opencode/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: OpenCode provider integration for ACE handbook skills
63
+ test_files: []