ace-handbook 0.19.0

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.
Files changed (85) hide show
  1. checksums.yaml +7 -0
  2. data/.ace-defaults/handbook/config.yml +4 -0
  3. data/.ace-defaults/nav/protocols/guide-sources/ace-handbook.yml +19 -0
  4. data/.ace-defaults/nav/protocols/tmpl-sources/ace-handbook.yml +10 -0
  5. data/.ace-defaults/nav/protocols/wfi-sources/ace-handbook.yml +19 -0
  6. data/CHANGELOG.md +362 -0
  7. data/LICENSE +21 -0
  8. data/README.md +42 -0
  9. data/Rakefile +12 -0
  10. data/exe/ace-handbook +6 -0
  11. data/handbook/guides/ai-agent-integration.g.md +625 -0
  12. data/handbook/guides/atom-pattern.g.md +371 -0
  13. data/handbook/guides/changelog.g.md +333 -0
  14. data/handbook/guides/cli-dry-cli.g.md +276 -0
  15. data/handbook/guides/cli-support-cli.g.md +277 -0
  16. data/handbook/guides/coding-standards/ruby.md +41 -0
  17. data/handbook/guides/coding-standards/rust.md +19 -0
  18. data/handbook/guides/coding-standards/typescript.md +20 -0
  19. data/handbook/guides/coding-standards.g.md +134 -0
  20. data/handbook/guides/debug-troubleshooting.g.md +62 -0
  21. data/handbook/guides/error-handling/ruby.md +29 -0
  22. data/handbook/guides/error-handling/rust.md +59 -0
  23. data/handbook/guides/error-handling/typescript.md +38 -0
  24. data/handbook/guides/error-handling.g.md +207 -0
  25. data/handbook/guides/meta/agents-definition.g.md +823 -0
  26. data/handbook/guides/meta/guides-definition.g.md +322 -0
  27. data/handbook/guides/meta/markdown-definition.g.md +210 -0
  28. data/handbook/guides/meta/tools-definition.g.md +159 -0
  29. data/handbook/guides/meta/workflow-instructions-definition.g.md +367 -0
  30. data/handbook/guides/mono-repo-patterns.g.md +92 -0
  31. data/handbook/guides/multi-agent-research.g.md +251 -0
  32. data/handbook/guides/performance/ruby.md +25 -0
  33. data/handbook/guides/performance/rust.md +48 -0
  34. data/handbook/guides/performance/typescript.md +32 -0
  35. data/handbook/guides/performance.g.md +211 -0
  36. data/handbook/guides/prompt-caching.g.md +83 -0
  37. data/handbook/guides/quality-assurance/ruby.md +33 -0
  38. data/handbook/guides/quality-assurance/rust.md +41 -0
  39. data/handbook/guides/quality-assurance/typescript.md +49 -0
  40. data/handbook/guides/quality-assurance.g.md +222 -0
  41. data/handbook/guides/strategic-planning.g.md +69 -0
  42. data/handbook/guides/troubleshooting/ruby.md +21 -0
  43. data/handbook/guides/troubleshooting/rust.md +20 -0
  44. data/handbook/guides/troubleshooting/typescript.md +36 -0
  45. data/handbook/guides/workflow-context-embedding.g.md +286 -0
  46. data/handbook/skills/as-handbook-init-project/SKILL.md +34 -0
  47. data/handbook/skills/as-handbook-manage-agents/SKILL.md +35 -0
  48. data/handbook/skills/as-handbook-manage-guides/SKILL.md +35 -0
  49. data/handbook/skills/as-handbook-manage-workflows/SKILL.md +35 -0
  50. data/handbook/skills/as-handbook-parallel-research/SKILL.md +29 -0
  51. data/handbook/skills/as-handbook-perform-delivery/SKILL.md +35 -0
  52. data/handbook/skills/as-handbook-review-guides/SKILL.md +32 -0
  53. data/handbook/skills/as-handbook-review-workflows/SKILL.md +32 -0
  54. data/handbook/skills/as-handbook-synthesize-research/SKILL.md +29 -0
  55. data/handbook/skills/as-handbook-update-docs/SKILL.md +35 -0
  56. data/handbook/skills/as-release/SKILL.md +50 -0
  57. data/handbook/skills/as-release-bump-version/SKILL.md +28 -0
  58. data/handbook/skills/as-release-rubygems-publish/SKILL.md +58 -0
  59. data/handbook/skills/as-release-update-changelog/SKILL.md +28 -0
  60. data/handbook/templates/completed-work-documentation.md +59 -0
  61. data/handbook/templates/cookbooks/cookbook.template.md +237 -0
  62. data/handbook/templates/research-comparison.template.md +175 -0
  63. data/handbook/workflow-instructions/handbook/init-project.wf.md +629 -0
  64. data/handbook/workflow-instructions/handbook/manage-agents.wf.md +379 -0
  65. data/handbook/workflow-instructions/handbook/manage-guides.wf.md +294 -0
  66. data/handbook/workflow-instructions/handbook/manage-workflows.wf.md +292 -0
  67. data/handbook/workflow-instructions/handbook/parallel-research.wf.md +328 -0
  68. data/handbook/workflow-instructions/handbook/perform-delivery.wf.md +267 -0
  69. data/handbook/workflow-instructions/handbook/research.wf.md +247 -0
  70. data/handbook/workflow-instructions/handbook/review-guides.wf.md +348 -0
  71. data/handbook/workflow-instructions/handbook/review-workflows.wf.md +299 -0
  72. data/handbook/workflow-instructions/handbook/synthesize-research.wf.md +429 -0
  73. data/handbook/workflow-instructions/handbook/update-docs.wf.md +338 -0
  74. data/lib/ace/handbook/atoms/provider_registry.rb +70 -0
  75. data/lib/ace/handbook/cli/commands/status.rb +36 -0
  76. data/lib/ace/handbook/cli/commands/sync.rb +36 -0
  77. data/lib/ace/handbook/cli.rb +51 -0
  78. data/lib/ace/handbook/models/skill_document.rb +25 -0
  79. data/lib/ace/handbook/molecules/skill_projection.rb +54 -0
  80. data/lib/ace/handbook/organisms/provider_syncer.rb +106 -0
  81. data/lib/ace/handbook/organisms/skill_inventory.rb +54 -0
  82. data/lib/ace/handbook/organisms/status_collector.rb +181 -0
  83. data/lib/ace/handbook/version.rb +7 -0
  84. data/lib/ace/handbook.rb +28 -0
  85. metadata +227 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: b0d7a79a21b2d55e4fd1a583f2825f10eff4e163629b49520c7aa50096e6472c
4
+ data.tar.gz: 38696630f7cad28c282e6904195c397d808d667f6fe5c9543b31aaba3bf0d97c
5
+ SHA512:
6
+ metadata.gz: a6f780c0d782d95b6d9799e12b5d9f5787328b953d02dcd77720961a428bded1004793cf91928d321494feb1eb6c1582d48ede4667514b5a456ad3e91a2e9cc6
7
+ data.tar.gz: 2137a2d0924441c6f462f5bfa682b809f429d93ad1585a71ebdd82a09b2e8df8c217508a08c81b9a65b226ce788f1d1c83819cf5e7e2b0ad330e00db1e6a8f9b
@@ -0,0 +1,4 @@
1
+ sync:
2
+ providers:
3
+ enabled: []
4
+ disabled: []
@@ -0,0 +1,19 @@
1
+ ---
2
+ # Guide Sources Protocol Configuration for ace-handbook gem
3
+ # This enables guide discovery from the installed ace-handbook gem
4
+
5
+ name: ace-handbook
6
+ type: gem
7
+ description: Handbook guides from ace-handbook gem
8
+ priority: 10
9
+
10
+ # Configuration for guide discovery within the gem
11
+ config:
12
+ # Relative path within the gem
13
+ relative_path: handbook/guides
14
+
15
+ # Pattern for finding guide files
16
+ pattern: "*.g.md"
17
+
18
+ # Enable discovery
19
+ enabled: true
@@ -0,0 +1,10 @@
1
+ ---
2
+ # Template Sources Protocol Configuration for ace-handbook gem
3
+ name: ace-handbook
4
+ type: gem
5
+ description: Templates from ace-handbook gem
6
+ priority: 10
7
+ config:
8
+ relative_path: handbook/templates
9
+ pattern: "**/*.template.md"
10
+ enabled: true
@@ -0,0 +1,19 @@
1
+ ---
2
+ # WFI Sources Protocol Configuration for ace-handbook gem
3
+ # This enables workflow discovery from the installed ace-handbook gem
4
+
5
+ name: ace-handbook
6
+ type: gem
7
+ description: Workflow instructions from ace-handbook gem
8
+ priority: 10
9
+
10
+ # Configuration for workflow discovery within the gem
11
+ config:
12
+ # Relative path within the gem (default: handbook/workflow-instructions)
13
+ relative_path: handbook/workflow-instructions
14
+
15
+ # Pattern for finding workflow files (default: *.wf.md)
16
+ pattern: "*.wf.md"
17
+
18
+ # Enable discovery
19
+ enabled: true
data/CHANGELOG.md ADDED
@@ -0,0 +1,362 @@
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+
7
+ ## [Unreleased]
8
+
9
+ ## [0.19.0] - 2026-03-23
10
+
11
+ ### Added
12
+ - New use case in README documenting `ace-handbook sync` and `ace-handbook status` CLI commands.
13
+ - Added `as-release`, `as-release-bump-version`, `as-release-rubygems-publish`, and `as-release-update-changelog` to the handbook skills reference table.
14
+ - Re-recorded getting-started demo GIF showcasing provider status and sync workflows.
15
+
16
+ ### Fixed
17
+ - Fixed broken `[ace-nav](../ace-nav)` cross-link in README — corrected to `[ace-nav](../ace-support-nav)`.
18
+ - Fixed incorrect `ace-integration-*` package reference in README — corrected to `ace-handbook-integration-*`.
19
+
20
+ ### Changed
21
+ - Aligned gemspec description wording with summary for consistency.
22
+ - Removed stale `mise` prerequisite from `docs/getting-started.md`.
23
+ - Rewrote demo tape to focus on `ace-handbook status` and `ace-handbook sync --provider pi`.
24
+
25
+ ## [0.18.3] - 2026-03-23
26
+
27
+ ### Changed
28
+ - Refreshed `README.md` to the current package layout pattern with quick-link navigation, use-case framing, and normalized section order.
29
+
30
+ ## [0.18.2] - 2026-03-22
31
+
32
+ ### Changed
33
+ - Updated `docs/getting-started.md` to remove contradictory `mise exec --` prose and align onboarding guidance with direct `ace-*` command usage.
34
+ - Documented intentional retirement of projected provider `as-idea-capture` and `as-idea-capture-features` skill files after canonical source removal.
35
+
36
+ ## [0.18.1] - 2026-03-22
37
+
38
+ ### Changed
39
+ - Remove `mise exec --` wrapper from test fixture strings and canonical skill docs.
40
+ - Document intentional retirement of projected provider `as-idea-capture` and `as-idea-capture-features` skill files after canonical source removal.
41
+
42
+ ## [0.18.0] - 2026-03-22
43
+
44
+ ### Changed
45
+ - Reworked `ace-handbook` documentation into a landing-page README with package-focused messaging and links to dedicated docs.
46
+ - Added `docs/getting-started.md`, `docs/usage.md`, and `docs/handbook.md` with tutorial and workflow/skill reference coverage.
47
+ - Added demo assets under `docs/demo/` and aligned examples to the current `ace-nav resolve/list` command pattern.
48
+ - Updated gem metadata summary/description to match the new README tagline and documentation positioning.
49
+
50
+ ## [0.17.1] - 2026-03-21
51
+
52
+ ### Added
53
+ - Add RubyGems publish workflow (`wfi://release/rubygems-publish`) for publishing ACE gems in dependency order with credential verification, conflict detection, and dry-run support.
54
+ - Add `as-release-rubygems-publish` skill for invoking the RubyGems publish workflow.
55
+
56
+ ## [0.17.0] - 2026-03-21
57
+
58
+ ### Changed
59
+ - Added initial `TS-HANDBOOK-001` value-gated smoke E2E coverage for `ace-handbook` CLI help and status command contracts.
60
+
61
+ ## [0.16.1] - 2026-03-18
62
+
63
+ ### Changed
64
+ - Migrated CLI namespace from `Ace::Core::CLI::*` to `Ace::Support::Cli::*` (ace-support-cli is now the canonical home for CLI infrastructure).
65
+
66
+
67
+ ## [0.16.0] - 2026-03-18
68
+
69
+ ### Changed
70
+ - Removed legacy backward-compatibility behavior as part of the 0.10 cleanup release.
71
+
72
+
73
+ ## [0.15.9] - 2026-03-18
74
+
75
+ ### Fixed
76
+ - Updated `cli-support-cli.g.md` guide to remove stale `DryCli::` namespace prefix from `VersionCommand` and `HelpCommand` class references.
77
+
78
+ ## [0.15.8] - 2026-03-17
79
+
80
+ ### Changed
81
+ - Updated `cli-support-cli.g.md` examples to the current `ace-support-cli` API (`RegistryDsl`, `Runner`, and `coerce_types`).
82
+ - Updated review workflow docs to reflect 15-minute timeout guidance for long PR review runs.
83
+
84
+ ## [0.15.7] - 2026-03-15
85
+
86
+ ### Changed
87
+ - Migrated CLI framework from dry-cli to ace-support-cli
88
+
89
+ ## [0.15.6] - 2026-03-13
90
+
91
+ ### Changed
92
+ - Updated handbook-owned canonical skills to explicitly run bundled workflows in the current project and execute them end-to-end.
93
+
94
+ ### Technical
95
+ - Refreshed provider sync and status collector regression coverage for the new compact canonical skill execution template.
96
+
97
+ ## [0.15.5] - 2026-03-13
98
+
99
+ ### Changed
100
+ - Removed provider-specific skill body rendering so projected provider skills once again apply frontmatter overrides while preserving the canonical skill body unchanged.
101
+ - Updated the canonical `as-release` skill to use the unified arguments / variables / execution structure with explicit workflow-execution guidance.
102
+ - Limited provider-specific forking for `as-release` to Claude frontmatter only.
103
+
104
+ ### Technical
105
+ - Simplified handbook projection coverage to validate frontmatter override projection and canonical body preservation instead of provider-specific body rendering.
106
+
107
+ ## [0.15.4] - 2026-03-13
108
+
109
+ ### Changed
110
+ - Strengthened projected workflow skill instructions for Codex delegated execution and forked provider contexts so generated provider skills explicitly load and execute workflows in the current project instead of only reading or summarizing them.
111
+
112
+ ### Technical
113
+ - Added projection regression coverage for strong workflow-execution rendering in both Codex `context: ace-llm` mode and provider `context: fork` mode.
114
+
115
+ ## [0.15.3] - 2026-03-13
116
+
117
+ ### Changed
118
+ - Render Codex `ace-llm` skills from canonical frontmatter by deriving uppercase variables from `argument-hint` and generating `## Variables` / `## Instructions` sections for projected Codex skills.
119
+
120
+ ### Technical
121
+ - Added projection regression coverage for `context: ace-llm` rendering and argument-hint-derived Codex variable generation.
122
+
123
+ ## [0.15.2] - 2026-03-12
124
+
125
+ ### Fixed
126
+ - Preserved conditional `--sandbox` workflow routing in provider-synced skill projections so generated Claude and Codex skills keep the canonical E2E execute path.
127
+
128
+ ### Technical
129
+ - Added provider-sync regression coverage for conditional workflow bodies in projected skills.
130
+
131
+ ## [0.15.1] - 2026-03-12
132
+
133
+ ### Changed
134
+ - Updated handbook README, workflow docs, and guidance to document bundle-first workflow usage and the current handbook structure.
135
+
136
+ ## [0.15.0] - 2026-03-12
137
+
138
+ ### Added
139
+ - Added Codex-specific delegated execution metadata to the canonical `as-release-bump-version` and `as-release-update-changelog` skills so the generated Codex skills run in fork context on `gpt-5.3-codex-spark`.
140
+
141
+ ## [0.14.1] - 2026-03-12
142
+
143
+ ### Technical
144
+ - Updated provider sync regression coverage to verify provider-specific `context` and `model` overrides on projected git-commit skills and to keep generated provider output free of canonical `integration` metadata.
145
+
146
+ ## [0.14.0] - 2026-03-12
147
+
148
+ ### Changed
149
+ - Changed canonical handbook skill inventory to load from registered `skill://` sources via `ace-support-nav` instead of scanning monorepo package directories directly.
150
+
151
+ ### Technical
152
+ - Added nav-backed inventory regression coverage and explicit skill-source registration fixtures for handbook sync/status tests.
153
+
154
+ ## [0.13.1] - 2026-03-12
155
+
156
+ ### Technical
157
+ - Added regression coverage for the `.agent/skills` retirement so handbook sync/status changes are exercised against provider-native skill trees only.
158
+
159
+ ## [0.13.0] - 2026-03-12
160
+
161
+ ### Added
162
+ - Added canonical skill inventory counts by `source` to `ace-handbook status` output and JSON responses.
163
+
164
+ ### Changed
165
+ - Expanded provider status reporting to show expected, installed, in-sync, outdated, missing, and extra skill counts, including comparisons through symlinked provider directories.
166
+
167
+ ## [0.12.0] - 2026-03-10
168
+
169
+ ### Added
170
+ - Added a public `ace-handbook` CLI with `sync` and `status` commands for projecting canonical package skills into provider-native folders.
171
+ - Added provider manifest discovery and sync/status coverage for handbook integrations, including replacement of legacy provider skill symlinks with real provider directories.
172
+
173
+ ### Changed
174
+ - Moved handbook integration execution to `ace-handbook` while provider packages now supply thin provider manifests for projection targets.
175
+
176
+ ## [0.11.0] - 2026-03-10
177
+
178
+ ### Added
179
+ - Added canonical handbook-owned skills for handbook management, release workflows, and research/delivery orchestration.
180
+
181
+
182
+ ## [0.10.0] - 2026-03-08
183
+
184
+ ### Added
185
+ - New `release/publish` workflow for coordinated multi-package releases that auto-detect modified packages, update package and root changelogs, and finish with one release commit.
186
+
187
+ ### Changed
188
+ - `/as-release` now loads `wfi://release/publish`, and release documentation now points to the canonical workflow path.
189
+
190
+ ## [0.9.9] - 2026-03-04
191
+
192
+ ### Changed
193
+ - Update `perform-delivery` workflow PR skill references from `/ace-git-create-pr` to `/ace-github-pr-create`
194
+
195
+ ## [0.9.8] - 2026-02-25
196
+
197
+ ### Changed
198
+ - Update `perform-delivery` workflow task lookup guidance to use `ace-task show <ref>` for explicit task selection.
199
+
200
+ ## [0.9.7] - 2026-02-22
201
+
202
+ ### Technical
203
+ - Update `ace-bundle project` → `ace-bundle load project` in update-docs workflow
204
+
205
+ ## [0.9.6] - 2026-02-22
206
+
207
+ ### Changed
208
+ - Migrate skill naming and invocation references to hyphenated `ace-*` format (no underscores).
209
+
210
+ ## [0.9.5] - 2026-02-21
211
+
212
+ ### Added
213
+ - "Redundant computation" root cause category in selfimprove workflow with fix template showing compute-once-pass-explicitly pattern
214
+
215
+ ## [0.9.4] - 2026-02-20
216
+
217
+ ### Technical
218
+ - Update /ace:create-pr to /ace:git-create-pr in perform-delivery workflow
219
+
220
+ ## [0.9.3] - 2026-02-20
221
+
222
+ ### Technical
223
+ - Update stale wfi:// references in workflow definition guide
224
+
225
+ ## [0.9.2] - 2026-02-19
226
+
227
+ ### Technical
228
+ - Namespace workflow instructions into handbook/ subdirectory with updated wfi:// URIs
229
+ - Update skill name references to use namespaced ace:handbook-action format
230
+
231
+ ## [0.9.1] - 2026-02-04
232
+
233
+ ### Added
234
+
235
+ - Preference hierarchy for search targets in selfimprove workflow (workflows/guides preferred over skills)
236
+
237
+ ## [0.9.0] - 2026-02-03
238
+
239
+ ### Added
240
+ - Self-improve workflow (`selfimprove.wf.md`) for transforming agent mistakes into system improvements
241
+
242
+ ## [0.8.0] - 2026-01-31
243
+
244
+ ### Added
245
+ - Multi-agent research synthesis capabilities (Task 254):
246
+ - `multi-agent-research.g.md` guide explaining when/how to use parallel agents
247
+ - `research-comparison.template.md` for structured synthesis comparison
248
+ - `parallel-research.wf.md` workflow for setting up parallel agent research
249
+ - `synthesize-research.wf.md` workflow for combining agent outputs
250
+ - `research.wf.md` with single/multi-agent decision criteria
251
+ - Template protocol source configuration for ace-handbook templates
252
+
253
+ ## [0.7.1] - 2026-01-29
254
+
255
+ ### Fixed
256
+ - Refine exit code handling documentation for dry-cli framework with exception-based pattern
257
+
258
+ ## [0.7.0] - 2026-01-22
259
+
260
+ ### Added
261
+ - New guides extracted from ace-gems.g.md for better discoverability:
262
+ - `prompt-caching.g.md` - PromptCacheManager patterns for LLM prompt generation
263
+ - `cli-dry-cli.g.md` - Complete dry-cli framework reference
264
+ - `mono-repo-patterns.g.md` - Mono-repo development patterns and binstubs
265
+ - Document IO isolation and testing pyramid patterns
266
+
267
+ ### Technical
268
+ - Lower Ruby version requirement to >= 3.2.0
269
+
270
+ ## [0.6.0] - 2026-01-18
271
+
272
+ ### Added
273
+ - Add perform-delivery workflow for multi-step delivery tracking with automatic TodoWrite externalization
274
+
275
+ ### Technical
276
+ - Update guides for bundle terminology
277
+
278
+ ## [0.5.2] - 2026-01-16
279
+
280
+ ### Changed
281
+ - Rename context: to bundle: keys in configuration files
282
+
283
+ ## [0.5.1] - 2026-01-08
284
+
285
+ ### Fixed
286
+ - Fixed `guide://` protocol links in ace-test-runner guides (added `.g` suffix for `.g.md` files)
287
+ - Cross-gem guide:// links now properly resolve to resources with `.g` extension
288
+
289
+ ## [0.5.0] - 2026-01-08
290
+
291
+ ### Added
292
+ - Migrated 10 generic guides from dev-handbook to handbook/guides/
293
+ - ai-agent-integration.g.md, atom-pattern.g.md, changelog.g.md
294
+ - coding-standards.g.md, debug-troubleshooting.g.md, error-handling.g.md
295
+ - performance.g.md, quality-assurance.g.md, strategic-planning.g.md
296
+ - Migrated 5 meta-guides to handbook/guides/meta/
297
+ - agents-definition.g.md, guides-definition.g.md, markdown-definition.g.md
298
+ - tools-definition.g.md, workflow-instructions-definition.g.md
299
+ - Guide subdirectories with language-specific content (ruby, rust, typescript)
300
+ - initialize-project-structure.wf.md workflow for project setup
301
+ - Templates: cookbooks/cookbook.template.md, completed-work-documentation.md
302
+ - Template discovery protocol (.ace-defaults/nav/protocols/tmpl-sources/)
303
+
304
+ ### Changed
305
+ - Consolidates dev-handbook content into ace-handbook gem
306
+ - All development guides now distributed with gem installation
307
+
308
+ ## [0.4.0] - 2026-01-03
309
+
310
+ ### Added
311
+ - Guides support with handbook/guides/ directory
312
+ - workflow-context-embedding.g.md guide for embed_document_source pattern
313
+ - Guide discovery protocol (.ace-defaults/nav/protocols/guide-sources/ace-handbook.yml)
314
+
315
+ ## [0.3.0] - 2026-01-03
316
+
317
+ ### Changed
318
+ - **BREAKING**: Minimum Ruby version raised to 3.3.0 (was 3.1.0)
319
+ - Standardized gemspec file patterns with deterministic Dir.glob
320
+ - Added MIT LICENSE file
321
+
322
+ ## [0.2.0] - 2025-12-30
323
+
324
+ ### Changed
325
+
326
+ * Rename `.ace.example/` to `.ace-defaults/` for gem defaults directory
327
+
328
+ ## [0.1.0] - 2025-11-05
329
+
330
+ ### Added
331
+ - Initial release of ace-handbook gem as pure workflow package
332
+ - 6 handbook management workflows accessible via wfi:// protocol:
333
+ - `wfi://manage-guides` - Create and update development guides
334
+ - `wfi://review-guides` - Review guides for quality and consistency
335
+ - `wfi://manage-workflow-instructions` - Create and validate workflow files
336
+ - `wfi://review-workflows` - Review workflow instructions
337
+ - `wfi://manage-agents` - Create and update agent definitions
338
+ - `wfi://update-handbook-docs` - Update handbook README and structure
339
+ - Path references updated for project-relative usage
340
+ - Complete gem structure following ACE patterns
341
+ - Comprehensive documentation and usage examples
342
+ - Auto-discovery support through ace-nav gem
343
+
344
+ ### Changed
345
+ - Migrated workflows from dev-handbook/.meta/wfi/ to installable gem
346
+ - Updated path references to be project-root relative
347
+ - Removed dev-handbook specific dependencies
348
+
349
+ ### Removed
350
+ - Moved `update-tools-docs.wf.md` to ace-docs package (tools documentation management)
351
+ - Moved `update-integration-claude.wf.md` to ace-integration-claude package (Claude Code integration)
352
+
353
+ ### Fixed
354
+ - Added ace-nav protocol registration (.ace.example/nav/protocols/wfi-sources/ace-handbook.yml)
355
+ - Updated gemspec to include protocol registration files for proper discovery
356
+
357
+ ### Technical Details
358
+ - Pure workflow package with no Ruby runtime dependencies
359
+ - Auto-discovery via ace-nav through handbook/workflow-instructions/ directory
360
+ - Protocol registration enables ace-nav to discover workflows from installed gem
361
+ - Template embedding framework ready for ADR-002 compliance
362
+ - Standard ACE gem structure with lib/, handbook/, gemspec, README, CHANGELOG
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Michal Czyz
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,42 @@
1
+ <div align="center">
2
+ <h1> ACE - Handbook </h1>
3
+
4
+ Standardized workflows for creating and managing guides, workflow instructions, and agent definitions.
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"><img alt="Gem Version" src="https://img.shields.io/gem/v/ace-handbook.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
+ [Getting Started](docs/getting-started.md) | [Usage Guide](docs/usage.md) | [Handbook - Skills, Agents, Templates](docs/handbook.md)
18
+
19
+ ![ace-handbook demo](docs/demo/ace-handbook-getting-started.gif)
20
+
21
+ `ace-handbook` gives ACE teams a shared way to author, review, and maintain handbook assets with consistent quality gates and repeatable delivery workflows. It covers guides (`.g.md`), workflow instructions (`.wf.md`), and agent definitions (`.ag.md`).
22
+
23
+ ## How It Works
24
+
25
+ 1. Author handbook assets using standardized templates and structure conventions for guides, workflows, and agents.
26
+ 2. Review content through quality-gate workflows that check clarity, formatting, and process compliance.
27
+ 3. Coordinate multi-step documentation changes through orchestration and research workflows.
28
+
29
+ ## Use Cases
30
+
31
+ **Author handbook assets with consistent structure** - use `/as-handbook-manage-guides`, `/as-handbook-manage-workflows`, and `/as-handbook-manage-agents` to create and update guides, workflow instructions, and agent definitions with package workflows.
32
+
33
+ **Review handbook content before publishing** - run `/as-handbook-review-guides` and `/as-handbook-review-workflows` to catch clarity, formatting, and process issues before updates propagate to integrations.
34
+
35
+ **Coordinate larger handbook deliveries** - use `/as-handbook-update-docs` to plan, execute, and synthesize multi-step documentation changes across package handbook assets.
36
+
37
+ **Integrate with resource discovery and context loading** - pair with [ace-nav](../ace-support-nav) for workflow and resource discovery, [ace-bundle](../ace-bundle) for loading complete workflow instructions, and provider integrations (`ace-handbook-integration-*`) that project canonical handbook skills into provider-native folders.
38
+
39
+ **Sync and inspect provider integrations** - run `ace-handbook sync` to project canonical skills into provider-native folders and `ace-handbook status` to check integration health across all configured providers.
40
+
41
+ ---
42
+ [Getting Started](docs/getting-started.md) | [Usage Guide](docs/usage.md) | [Handbook - Skills, Agents, Templates](docs/handbook.md) | Part of [ACE](https://github.com/cs3b/ace)
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rake/testtask"
5
+
6
+ Rake::TestTask.new(:test) do |t|
7
+ t.libs << "test" << "lib"
8
+ t.test_files = FileList["test/**/*_test.rb"]
9
+ end
10
+
11
+ task spec: :test
12
+ task default: :test
data/exe/ace-handbook ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "ace/handbook/cli"
5
+
6
+ Ace::Support::Cli::Runner.new(Ace::Handbook::CLI).call