ace-handbook-integration-pi 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 +7 -0
- data/.ace-defaults/handbook/providers/pi.yml +2 -0
- data/CHANGELOG.md +39 -0
- data/README.md +30 -0
- data/lib/ace/handbook/integration/pi/version.rb +11 -0
- data/lib/ace/handbook/integration/pi.rb +4 -0
- metadata +63 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: b34c61360e1a79f8aa011a5b32672e1d2b052f1a63d11b500bdf8f07c14d104c
|
|
4
|
+
data.tar.gz: 1beba4573456c68b1d5f1b7568c7c990918e22a8567958a794bf4dc5c3f9f846
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: b1f3b044aa84a511248a0dea0b7aa3b80d8f95567ad25c83d76f52812098e5e171b4b47d989f2af0750f8c24248e037ed97f618d2364d246a8bf25afa441f2e3
|
|
7
|
+
data.tar.gz: 7c1b2b33ae4df1042775d17c2e3f936f20f81a42239fe1b5ec6f5346496ef2eecf7e25ca250a8989d23f2a78ce1bb45c0c98bab22f280eb95c0b16c433146b70
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to ace-handbook-integration-pi will be documented in this file.
|
|
4
|
+
|
|
5
|
+
## [Unreleased]
|
|
6
|
+
|
|
7
|
+
## [0.3.2] - 2026-03-22
|
|
8
|
+
|
|
9
|
+
### Technical
|
|
10
|
+
- Standardized PI provider casing in README terminology (`PI-specific`, `PI-native`) to match package naming and changelog language.
|
|
11
|
+
|
|
12
|
+
## [0.3.1] - 2026-03-22
|
|
13
|
+
|
|
14
|
+
### Technical
|
|
15
|
+
- Refreshed the package README with standardized handbook integration sections, PI-specific provider wording, and ACE/`ace-handbook` linkage.
|
|
16
|
+
|
|
17
|
+
## [0.3.0] - 2026-03-12
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
- Replaced the legacy `ace-handbook-integration-agent` dependency with a direct `ace-handbook` runtime dependency.
|
|
21
|
+
- Updated the package entrypoint and docs to treat PI integration as a thin provider plugin on top of `ace-handbook`.
|
|
22
|
+
|
|
23
|
+
## [0.2.0] - 2026-03-10
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
- Added a shipped PI provider manifest and packaging support so `ace-handbook sync` can project canonical skills into `.pi/skills`.
|
|
27
|
+
|
|
28
|
+
### Changed
|
|
29
|
+
- Simplified the PI integration entrypoint to a thin provider package that relies on `ace-handbook` for sync and status execution.
|
|
30
|
+
|
|
31
|
+
## [0.1.1] - 2026-03-10
|
|
32
|
+
|
|
33
|
+
### Added
|
|
34
|
+
- Added the PI-specific handbook integration package scaffold on top of the shared agent integration base.
|
|
35
|
+
|
|
36
|
+
## [0.1.0] - 2026-03-10
|
|
37
|
+
|
|
38
|
+
### Added
|
|
39
|
+
- Initial package scaffold for PI handbook integration support.
|
data/README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
<h1> ACE - Handbook Integration PI </h1>
|
|
3
|
+
|
|
4
|
+
pi-agent 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-pi"><img alt="Gem Version" src="https://img.shields.io/gem/v/ace-handbook-integration-pi.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-pi` translates canonical ACE handbook skills into PI provider assets so that skill invocations from pi-agent resolve to the correct provider entrypoints while preserving shared semantics from [ace-handbook](../ace-handbook).
|
|
19
|
+
|
|
20
|
+
## Use Cases
|
|
21
|
+
|
|
22
|
+
**Consume canonical skills from PI tooling** - keep provider-specific behavior while preserving shared semantics, so agents running under pi-agent get the same skill intent as any other provider.
|
|
23
|
+
|
|
24
|
+
**Keep provider updates constrained** - update projection assets inside this package instead of canonical definitions, keeping changes isolated from [ace-handbook](../ace-handbook).
|
|
25
|
+
|
|
26
|
+
**Enable incremental provider onboarding** - add or update PI support independently of core ACE changes, maintaining a focused provider shim layer.
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
Part of [ACE](https://github.com/cs3b/ace)
|
metadata
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: ace-handbook-integration-pi
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.3.2
|
|
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: PI-specific provider integration package that extends ace-handbook with
|
|
27
|
+
provider manifests.
|
|
28
|
+
email:
|
|
29
|
+
- mc@cs3b.com
|
|
30
|
+
executables: []
|
|
31
|
+
extensions: []
|
|
32
|
+
extra_rdoc_files: []
|
|
33
|
+
files:
|
|
34
|
+
- ".ace-defaults/handbook/providers/pi.yml"
|
|
35
|
+
- CHANGELOG.md
|
|
36
|
+
- README.md
|
|
37
|
+
- lib/ace/handbook/integration/pi.rb
|
|
38
|
+
- lib/ace/handbook/integration/pi/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-pi/
|
|
45
|
+
changelog_uri: https://github.com/cs3b/ace/blob/main/ace-handbook-integration-pi/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: PI provider integration for ACE handbook skills
|
|
63
|
+
test_files: []
|