ace-handbook-integration-claude 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/claude.yml +2 -0
- data/CHANGELOG.md +36 -0
- data/README.md +30 -0
- data/lib/ace/handbook/integration/claude/version.rb +11 -0
- data/lib/ace/handbook/integration/claude.rb +13 -0
- metadata +104 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 15aa46067786d5ee9fb0e0bd1dba69fb7bb0dabe3262a18e54fae561a9316718
|
|
4
|
+
data.tar.gz: 62b7e9b861be68b7c7450f5116d65b94b313843218dcb84b35923973b955c39c
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 26f77c1b0316982d428ad7837ab2b5cbcc08d91e06abb5dcf759ee479e31b785d9432abb32b900ead08cfbedee245848ce1a6641168cfd76b4ac75639edf1774
|
|
7
|
+
data.tar.gz: c1307fd50a67f7f57e4857193662aa79a43f89d1410a2a76f6b4a12daa07c3452c5827923e478df2b2798669c76e5041dc15766243e5d05cac892e39cfbe030c
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to ace-handbook-integration-claude will be documented in this file.
|
|
4
|
+
|
|
5
|
+
## [Unreleased]
|
|
6
|
+
|
|
7
|
+
## [0.3.2] - 2026-03-22
|
|
8
|
+
|
|
9
|
+
### Technical
|
|
10
|
+
- Refreshed the package README with standardized handbook integration sections, Claude-specific provider wording, and ACE/`ace-handbook` linkage.
|
|
11
|
+
|
|
12
|
+
## [0.3.1] - 2026-03-13
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- Updated the canonical Claude integration sync skill to explicitly run its bundled workflow in the current project and execute it end-to-end.
|
|
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 Claude 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 Claude provider manifest so `ace-handbook sync` can discover `.claude/skills` as a first-class projection target.
|
|
27
|
+
|
|
28
|
+
## [0.1.1] - 2026-03-10
|
|
29
|
+
|
|
30
|
+
### Added
|
|
31
|
+
- Added the Claude-specific handbook integration package with canonical skill ownership and a namespaced update workflow.
|
|
32
|
+
|
|
33
|
+
## [0.1.0] - 2026-03-10
|
|
34
|
+
|
|
35
|
+
### Added
|
|
36
|
+
- Initial package scaffold for Claude handbook integration support.
|
data/README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
<h1> ACE - Handbook Integration Claude </h1>
|
|
3
|
+
|
|
4
|
+
Claude Code 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-claude"><img alt="Gem Version" src="https://img.shields.io/gem/v/ace-handbook-integration-claude.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-claude` projects canonical ACE handbook skills into Claude-native runtime assets so that `/as-*` skills invoked from Claude Code resolve to the correct provider-specific entrypoints while preserving shared semantics defined in [ace-handbook](../ace-handbook).
|
|
19
|
+
|
|
20
|
+
## Use Cases
|
|
21
|
+
|
|
22
|
+
**Run ACE workflows from Claude Code** - load canonical skill semantics with Claude-specific packaging so that skills like `/as-task-work` and `/as-git-commit` work natively in Claude Code sessions.
|
|
23
|
+
|
|
24
|
+
**Keep provider integration changes isolated** - update Claude-specific manifests and projections inside this package without altering canonical handbook definitions managed by [ace-handbook](../ace-handbook).
|
|
25
|
+
|
|
26
|
+
**Standardize cross-provider behavior** - preserve shared conventions while adapting to Claude Code's command surface, ensuring the same skill intent works across all supported providers.
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
Part of [ACE](https://github.com/cs3b/ace)
|
metadata
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: ace-handbook-integration-claude
|
|
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
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: bundler
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - "~>"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '2.0'
|
|
33
|
+
type: :development
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '2.0'
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: rake
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - "~>"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '13.0'
|
|
47
|
+
type: :development
|
|
48
|
+
prerelease: false
|
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - "~>"
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '13.0'
|
|
54
|
+
- !ruby/object:Gem::Dependency
|
|
55
|
+
name: minitest
|
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - "~>"
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: '5.0'
|
|
61
|
+
type: :development
|
|
62
|
+
prerelease: false
|
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
64
|
+
requirements:
|
|
65
|
+
- - "~>"
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: '5.0'
|
|
68
|
+
description: Claude-specific projection templates and workflows for ACE handbook skills.
|
|
69
|
+
email:
|
|
70
|
+
- mc@cs3b.com
|
|
71
|
+
executables: []
|
|
72
|
+
extensions: []
|
|
73
|
+
extra_rdoc_files: []
|
|
74
|
+
files:
|
|
75
|
+
- ".ace-defaults/handbook/providers/claude.yml"
|
|
76
|
+
- CHANGELOG.md
|
|
77
|
+
- README.md
|
|
78
|
+
- lib/ace/handbook/integration/claude.rb
|
|
79
|
+
- lib/ace/handbook/integration/claude/version.rb
|
|
80
|
+
homepage: https://github.com/cs3b/ace
|
|
81
|
+
licenses:
|
|
82
|
+
- MIT
|
|
83
|
+
metadata:
|
|
84
|
+
homepage_uri: https://github.com/cs3b/ace
|
|
85
|
+
source_code_uri: https://github.com/cs3b/ace/tree/main/ace-handbook-integration-claude/
|
|
86
|
+
changelog_uri: https://github.com/cs3b/ace/blob/main/ace-handbook-integration-claude/CHANGELOG.md
|
|
87
|
+
rdoc_options: []
|
|
88
|
+
require_paths:
|
|
89
|
+
- lib
|
|
90
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
91
|
+
requirements:
|
|
92
|
+
- - ">="
|
|
93
|
+
- !ruby/object:Gem::Version
|
|
94
|
+
version: 3.2.0
|
|
95
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
96
|
+
requirements:
|
|
97
|
+
- - ">="
|
|
98
|
+
- !ruby/object:Gem::Version
|
|
99
|
+
version: '0'
|
|
100
|
+
requirements: []
|
|
101
|
+
rubygems_version: 3.6.9
|
|
102
|
+
specification_version: 4
|
|
103
|
+
summary: Claude provider integration for ACE handbook skills
|
|
104
|
+
test_files: []
|