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
@@ -0,0 +1,286 @@
1
+ ---
2
+ doc-type: guide
3
+ title: Workflow Context Embedding Guide
4
+ purpose: Documentation for ace-handbook/handbook/guides/workflow-context-embedding.g.md
5
+ ace-docs:
6
+ last-updated: 2026-03-12
7
+ last-checked: 2026-03-21
8
+ ---
9
+
10
+ # Workflow Context Embedding Guide
11
+
12
+ This guide explains how to use `ace-bundle`'s `embed_document_source: true` feature to embed dynamic context directly into workflow instructions, reducing redundant command execution and improving agent efficiency.
13
+
14
+ ## Goal
15
+
16
+ Define clear patterns for:
17
+
18
+ - When to use `embed_document_source: true` in workflow frontmatter
19
+ - How to write instructions that leverage embedded context
20
+ - Section naming conventions for embedded context
21
+ - Best practices for context embedding vs. manual gathering
22
+
23
+ ## Background
24
+
25
+ **PR #120** introduced `ace-bundle wfi://protocol` which loads workflow instructions AND any embedded context in one operation. When an agent invokes `/ace:command`, they get:
26
+
27
+ 1. The workflow instructions
28
+ 2. Any embedded context (from commands, files, or protocols)
29
+ 3. All in a single context load
30
+
31
+ This transforms workflows from "instructions that tell agents to gather context" into "instructions that come with context already included."
32
+
33
+ ## Core Principles
34
+
35
+ 1. **Context Already Available**: When context is embedded, agents don't need to run commands to gather it
36
+ 2. **Explicit References**: Instructions should explicitly reference embedded sections
37
+ 3. **No Redundancy**: Don't tell agents to run commands when context is already embedded
38
+ 4. **Semantic Naming**: Use descriptive section names that indicate content type
39
+
40
+ ## When to Use `embed_document_source: true`
41
+
42
+ ### Good Use Cases
43
+
44
+ 1. **Dynamic command output needed for workflow execution**
45
+ - Current git state (status, diff)
46
+ - Task or issue lists
47
+ - Configuration validation
48
+
49
+ 2. **Reference data for validation/selection**
50
+ - Available presets, tasks, workflows
51
+ - Configuration options
52
+ - Environment status
53
+
54
+ 3. **Workflow composition via protocols**
55
+ - Including other workflows
56
+ - Cross-referencing related instructions
57
+
58
+ ### When NOT to Use
59
+
60
+ - Self-contained workflow instructions
61
+ - User-provided context (not discoverable)
62
+ - Static content that doesn't change
63
+ - Performance-sensitive paths (commands add overhead)
64
+
65
+ ## Frontmatter Configuration
66
+
67
+ ### Structure
68
+
69
+ ```yaml
70
+ ---
71
+ bundle:
72
+ embed_document_source: true
73
+ sections:
74
+ section_name:
75
+ commands:
76
+ - command arg1
77
+ - command arg2
78
+ files:
79
+ - path/to/file
80
+ protocols:
81
+ - wfi://workflow-name
82
+ ---
83
+ ```
84
+
85
+ ### Example
86
+
87
+ ```yaml
88
+ ---
89
+ bundle:
90
+ embed_document_source: true
91
+ sections:
92
+ current_repository_status:
93
+ commands:
94
+ - git status -sb
95
+ - git diff --stat
96
+ available_presets:
97
+ commands:
98
+ - ace-bundle --list
99
+ ---
100
+ ```
101
+
102
+ ## Instruction Writing Patterns
103
+
104
+ ### Pattern A: "Context Already Available"
105
+
106
+ **Before (manual gathering):**
107
+ ```markdown
108
+ 1. Get the current repository status:
109
+ ```bash
110
+ git status -sb
111
+ git diff --stat
112
+ ```
113
+
114
+ 2. Review the changes
115
+ ```
116
+
117
+ **After (embedded context):**
118
+ ```markdown
119
+ 1. **Repository status is embedded above** in `<current_repository_status>`.
120
+
121
+ The current git state (status + diff summary) is already loaded in this workflow.
122
+ Review it to understand what will be committed:
123
+ - Which files are modified? (from status output)
124
+ - How significant are the changes? (from diff --stat)
125
+
126
+ No need to run git commands - the context is already provided.
127
+ ```
128
+
129
+ ### Pattern B: "Interactive Selection"
130
+
131
+ **Before:**
132
+ ```markdown
133
+ 1. List available presets:
134
+ ```bash
135
+ ace-bundle --list
136
+ ```
137
+
138
+ 2. Ask user which one to load
139
+ ```
140
+
141
+ **After:**
142
+ ```markdown
143
+ 1. **Available presets are listed above** in `<available_presets>`.
144
+
145
+ Based on the user's `$input` variable:
146
+ - **Preset names** (simple names like "project", "base"):
147
+ - Verify preset exists in `<available_presets>` embedded above
148
+ - Run: `ace-bundle $input`
149
+ - **File paths**: Run directly with `ace-bundle $input`
150
+ - **Protocols**: Run directly with `ace-bundle $input`
151
+ ```
152
+
153
+ ### Pattern C: "Validation"
154
+
155
+ **Before:**
156
+ ```markdown
157
+ 1. Check if task exists:
158
+ ```bash
159
+ ace-task $task_ref
160
+ ```
161
+
162
+ 2. If error, report to user
163
+ ```
164
+
165
+ **After:**
166
+ ```markdown
167
+ 1. **Verify task reference** against user input:
168
+ - If `$task_ref` provided: use it directly
169
+ - If not specified: check `<available_tasks>` embedded above
170
+ - Present task options from embedded list if needed
171
+ ```
172
+
173
+ ## Section Naming Conventions
174
+
175
+ Use descriptive, semantic section names:
176
+
177
+ | Section Type | Example Names | When to Use |
178
+ |--------------|---------------|-------------|
179
+ | Current State | `current_repository_status`, `current_branch_state` | Git/status info, live state |
180
+ | Available Options | `available_presets`, `available_tasks`, `available_workflows` | Lists for selection |
181
+ | Reference Data | `recent_commits`, `project_structure` | Historical/structural info |
182
+ | Configuration | `tool_config`, `workflow_config` | Settings/state |
183
+
184
+ ## Embedded Context Reference Pattern
185
+
186
+ When instructions reference embedded XML, use explicit markers:
187
+
188
+ ```markdown
189
+ ## Context Available
190
+
191
+ This workflow includes pre-loaded context:
192
+
193
+ - `<current_repository_status>`: Git status and diff summary
194
+ - `<available_presets>`: List of available context presets
195
+
196
+ Use these embedded sections instead of running commands to gather this information.
197
+ ```
198
+
199
+ ## Examples from Production
200
+
201
+ ### commit.wf.md (ace-git-commit)
202
+
203
+ **Frontmatter:**
204
+ ```yaml
205
+ bundle:
206
+ embed_document_source: true
207
+ sections:
208
+ current_repository_status:
209
+ commands:
210
+ - git status -sb
211
+ - git diff --stat
212
+ ```
213
+
214
+ **Instructions:**
215
+ ```markdown
216
+ 1. **Repository status is embedded above** in `<current_repository_status>`.
217
+
218
+ The current git state (status + diff summary) is already loaded in this workflow.
219
+ Review it to understand what will be committed:
220
+ - Which files are modified? (from status output)
221
+ - How significant are the changes? (from diff --stat)
222
+ - Is this the right scope for a single commit?
223
+
224
+ No need to run git commands - the context is already provided.
225
+ ```
226
+
227
+ ### load-context.wf.md (ace-bundle)
228
+
229
+ **Frontmatter:**
230
+ ```yaml
231
+ bundle:
232
+ embed_document_source: true
233
+ sections:
234
+ available_presets:
235
+ commands:
236
+ - ace-bundle --list
237
+ ```
238
+
239
+ **Instructions:**
240
+ ```markdown
241
+ ### 2. Select and Load Context
242
+
243
+ **Available presets are listed above** in `<available_presets>`.
244
+
245
+ Based on the user's `$input` variable:
246
+
247
+ 1. **Preset names** (simple names like "project", "base"):
248
+ - Verify preset exists in `<available_presets>` embedded above
249
+ - Run: `ace-bundle $input`
250
+
251
+ 2. **File paths** (contains `/`, `./`, extensions):
252
+ - Run directly: `ace-bundle $input`
253
+
254
+ 3. **Protocols** (contains `://`):
255
+ - Run directly: `ace-bundle $input`
256
+ - Note: Workflows with `embed_document_source: true` include their context
257
+ ```
258
+
259
+ ## Migration Checklist
260
+
261
+ When updating a workflow to use embedded context:
262
+
263
+ - [ ] Add `context: embed_document_source: true` to frontmatter
264
+ - [ ] Define `sections:` with appropriate commands/files/protocols
265
+ - [ ] Update instructions to reference embedded sections explicitly
266
+ - [ ] Remove redundant "run this command" steps
267
+ - [ ] Test workflow invocation with `/ace:command`
268
+ - [ ] Verify embedded context appears in output
269
+ - [ ] Confirm agent uses embedded context (no redundant commands)
270
+
271
+ ## Future Considerations
272
+
273
+ - **Additional patterns**: As more workflows adopt this, new patterns may emerge
274
+ - **Tooling**: Potential for automated detection of missing embedded context references
275
+ - **Performance optimizations**: Cache warming for frequently accessed embedded context, lazy loading for large sections
276
+
277
+ ## Related Documents
278
+
279
+ - **PR #120**: Historical migration that replaced `ace-nav wfi://` execution examples with `ace-bundle wfi://`
280
+ - **Task 152**: ace-bundle auto-format output by line count
281
+ - **documents-embedding.g.md**: Template and guide embedding standards
282
+ - **CLAUDE.md**: Agent guidance for workflow usage
283
+
284
+ ---
285
+
286
+ *Last updated: 2026-01-03*
@@ -0,0 +1,34 @@
1
+ ---
2
+ name: as-handbook-init-project
3
+ description: Initialize Project Structure
4
+ # bundle: wfi://handbook/init-project
5
+ # context: no-fork
6
+ # agent: general-purpose
7
+ user-invocable: true
8
+ allowed-tools:
9
+ - Bash(ace-handbook:*)
10
+ - Bash(ace-bundle:*)
11
+ - Bash(ace-git-commit:*)
12
+ - Read
13
+ - Write
14
+ - Edit
15
+ - Grep
16
+ argument-hint: [project-path]
17
+ last_modified: 2026-01-10
18
+ source: ace-handbook
19
+ integration:
20
+ targets:
21
+ - claude
22
+ - codex
23
+ - gemini
24
+ - opencode
25
+ - pi
26
+ providers: {}
27
+ skill:
28
+ kind: workflow
29
+ execution:
30
+ workflow: wfi://handbook/init-project
31
+ ---
32
+
33
+ Load and run `ace-bundle wfi://handbook/init-project` in the current project, then follow the loaded workflow as the source of truth and execute it end-to-end instead of only summarizing it.
34
+
@@ -0,0 +1,35 @@
1
+ ---
2
+ name: as-handbook-manage-agents
3
+ description: Create, update, and maintain agent definitions following standardized guide
4
+ # bundle: wfi://handbook/manage-agents
5
+ # context: no-fork
6
+ # agent: general-purpose
7
+ user-invocable: true
8
+ allowed-tools:
9
+ - Bash(ace-handbook:*)
10
+ - Bash(ace-bundle:*)
11
+ - Read
12
+ - Write
13
+ - Edit
14
+ - MultiEdit
15
+ - Glob
16
+ - LS
17
+ - TodoWrite
18
+ argument-hint: "[agent-name] [action: create|update|review]"
19
+ last_modified: 2026-01-10
20
+ source: ace-handbook
21
+ integration:
22
+ targets:
23
+ - claude
24
+ - codex
25
+ - gemini
26
+ - opencode
27
+ - pi
28
+ providers: {}
29
+ skill:
30
+ kind: workflow
31
+ execution:
32
+ workflow: wfi://handbook/manage-agents
33
+ ---
34
+
35
+ Load and run `ace-bundle wfi://handbook/manage-agents` in the current project, then follow the loaded workflow as the source of truth and execute it end-to-end instead of only summarizing it.
@@ -0,0 +1,35 @@
1
+ ---
2
+ name: as-handbook-manage-guides
3
+ description: Create, update, and maintain development guides
4
+ # bundle: wfi://handbook/manage-guides
5
+ # context: no-fork
6
+ # agent: general-purpose
7
+ user-invocable: true
8
+ allowed-tools:
9
+ - Bash(ace-handbook:*)
10
+ - Bash(ace-bundle:*)
11
+ - Read
12
+ - Write
13
+ - Edit
14
+ - MultiEdit
15
+ - Glob
16
+ - LS
17
+ - TodoWrite
18
+ argument-hint: "[guide-name] [action: create|update|review]"
19
+ last_modified: 2026-01-10
20
+ source: ace-handbook
21
+ integration:
22
+ targets:
23
+ - claude
24
+ - codex
25
+ - gemini
26
+ - opencode
27
+ - pi
28
+ providers: {}
29
+ skill:
30
+ kind: workflow
31
+ execution:
32
+ workflow: wfi://handbook/manage-guides
33
+ ---
34
+
35
+ Load and run `ace-bundle wfi://handbook/manage-guides` in the current project, then follow the loaded workflow as the source of truth and execute it end-to-end instead of only summarizing it.
@@ -0,0 +1,35 @@
1
+ ---
2
+ name: as-handbook-manage-workflows
3
+ description: Create, update, and maintain workflow instruction files
4
+ # bundle: wfi://handbook/manage-workflows
5
+ # context: no-fork
6
+ # agent: general-purpose
7
+ user-invocable: true
8
+ allowed-tools:
9
+ - Bash(ace-handbook:*)
10
+ - Bash(ace-bundle:*)
11
+ - Read
12
+ - Write
13
+ - Edit
14
+ - MultiEdit
15
+ - Glob
16
+ - LS
17
+ - TodoWrite
18
+ argument-hint: "[workflow-name] [action: create|update|review]"
19
+ last_modified: 2026-01-10
20
+ source: ace-handbook
21
+ integration:
22
+ targets:
23
+ - claude
24
+ - codex
25
+ - gemini
26
+ - opencode
27
+ - pi
28
+ providers: {}
29
+ skill:
30
+ kind: workflow
31
+ execution:
32
+ workflow: wfi://handbook/manage-workflows
33
+ ---
34
+
35
+ Load and run `ace-bundle wfi://handbook/manage-workflows` in the current project, then follow the loaded workflow as the source of truth and execute it end-to-end instead of only summarizing it.
@@ -0,0 +1,29 @@
1
+ ---
2
+ name: as-handbook-parallel-research
3
+ description: Set up and run parallel agent research
4
+ # bundle: wfi://handbook/parallel-research
5
+ # agent: general-purpose
6
+ user-invocable: true
7
+ allowed-tools:
8
+ - Bash(ace-bundle:*)
9
+ - Read
10
+ - Write
11
+ - Glob
12
+ argument-hint: "[topic] --agents claude,gemini,codex"
13
+ last_modified: 2026-01-31
14
+ source: ace-handbook
15
+ integration:
16
+ targets:
17
+ - claude
18
+ - codex
19
+ - gemini
20
+ - opencode
21
+ - pi
22
+ providers: {}
23
+ skill:
24
+ kind: workflow
25
+ execution:
26
+ workflow: wfi://handbook/parallel-research
27
+ ---
28
+
29
+ Load and run `ace-bundle wfi://handbook/parallel-research` in the current project, then follow the loaded workflow as the source of truth and execute it end-to-end instead of only summarizing it.
@@ -0,0 +1,35 @@
1
+ ---
2
+ name: as-handbook-perform-delivery
3
+ description: Execute complete delivery workflow with automatic step tracking
4
+ # bundle: wfi://handbook/perform-delivery
5
+ # agent: general-purpose
6
+ user-invocable: true
7
+ allowed-tools:
8
+ - Bash
9
+ - Read
10
+ - Write
11
+ - Edit
12
+ - TodoWrite
13
+ - Task
14
+ - AskUserQuestion
15
+ - Skill
16
+ - EnterPlanMode
17
+ - ExitPlanMode
18
+ argument-hint: "[task-ref like 215.03] or [instructions]"
19
+ last_modified: 2026-01-18
20
+ source: ace-handbook
21
+ integration:
22
+ targets:
23
+ - claude
24
+ - codex
25
+ - gemini
26
+ - opencode
27
+ - pi
28
+ providers: {}
29
+ skill:
30
+ kind: workflow
31
+ execution:
32
+ workflow: wfi://handbook/perform-delivery
33
+ ---
34
+
35
+ Load and run `ace-bundle wfi://handbook/perform-delivery` in the current project, then follow the loaded workflow as the source of truth and execute it end-to-end instead of only summarizing it.
@@ -0,0 +1,32 @@
1
+ ---
2
+ name: as-handbook-review-guides
3
+ description: Review and validate development guides for quality and consistency
4
+ # bundle: wfi://handbook/review-guides
5
+ # context: no-fork
6
+ # agent: general-purpose
7
+ user-invocable: true
8
+ allowed-tools:
9
+ - Bash(ace-handbook:*)
10
+ - Bash(ace-bundle:*)
11
+ - Read
12
+ - Glob
13
+ - LS
14
+ - TodoWrite
15
+ argument-hint: [guide-name]
16
+ last_modified: 2026-01-10
17
+ source: ace-handbook
18
+ integration:
19
+ targets:
20
+ - claude
21
+ - codex
22
+ - gemini
23
+ - opencode
24
+ - pi
25
+ providers: {}
26
+ skill:
27
+ kind: workflow
28
+ execution:
29
+ workflow: wfi://handbook/review-guides
30
+ ---
31
+
32
+ Load and run `ace-bundle wfi://handbook/review-guides` in the current project, then follow the loaded workflow as the source of truth and execute it end-to-end instead of only summarizing it.
@@ -0,0 +1,32 @@
1
+ ---
2
+ name: as-handbook-review-workflows
3
+ description: Review and validate workflow instructions for quality and consistency
4
+ # bundle: wfi://handbook/review-workflows
5
+ # context: no-fork
6
+ # agent: general-purpose
7
+ user-invocable: true
8
+ allowed-tools:
9
+ - Bash(ace-handbook:*)
10
+ - Bash(ace-bundle:*)
11
+ - Read
12
+ - Glob
13
+ - LS
14
+ - TodoWrite
15
+ argument-hint: [workflow-name]
16
+ last_modified: 2026-01-10
17
+ source: ace-handbook
18
+ integration:
19
+ targets:
20
+ - claude
21
+ - codex
22
+ - gemini
23
+ - opencode
24
+ - pi
25
+ providers: {}
26
+ skill:
27
+ kind: workflow
28
+ execution:
29
+ workflow: wfi://handbook/review-workflows
30
+ ---
31
+
32
+ Load and run `ace-bundle wfi://handbook/review-workflows` in the current project, then follow the loaded workflow as the source of truth and execute it end-to-end instead of only summarizing it.
@@ -0,0 +1,29 @@
1
+ ---
2
+ name: as-handbook-synthesize-research
3
+ description: Synthesize parallel agent research outputs into unified result
4
+ # bundle: wfi://handbook/synthesize-research
5
+ # agent: general-purpose
6
+ user-invocable: true
7
+ allowed-tools:
8
+ - Bash(ace-bundle:*)
9
+ - Read
10
+ - Write
11
+ - Glob
12
+ argument-hint: "[research_folder]"
13
+ last_modified: 2026-01-31
14
+ source: ace-handbook
15
+ integration:
16
+ targets:
17
+ - claude
18
+ - codex
19
+ - gemini
20
+ - opencode
21
+ - pi
22
+ providers: {}
23
+ skill:
24
+ kind: workflow
25
+ execution:
26
+ workflow: wfi://handbook/synthesize-research
27
+ ---
28
+
29
+ Load and run `ace-bundle wfi://handbook/synthesize-research` in the current project, then follow the loaded workflow as the source of truth and execute it end-to-end instead of only summarizing it.
@@ -0,0 +1,35 @@
1
+ ---
2
+ name: as-handbook-update-docs
3
+ description: Update and maintain handbook documentation and README files
4
+ # bundle: wfi://handbook/update-docs
5
+ # context: no-fork
6
+ # agent: general-purpose
7
+ user-invocable: true
8
+ allowed-tools:
9
+ - Bash(ace-handbook:*)
10
+ - Bash(ace-bundle:*)
11
+ - Read
12
+ - Write
13
+ - Edit
14
+ - MultiEdit
15
+ - Glob
16
+ - LS
17
+ - TodoWrite
18
+ argument-hint: [section]
19
+ last_modified: 2026-01-10
20
+ source: ace-handbook
21
+ integration:
22
+ targets:
23
+ - claude
24
+ - codex
25
+ - gemini
26
+ - opencode
27
+ - pi
28
+ providers: {}
29
+ skill:
30
+ kind: workflow
31
+ execution:
32
+ workflow: wfi://handbook/update-docs
33
+ ---
34
+
35
+ Load and run `ace-bundle wfi://handbook/update-docs` in the current project, then follow the loaded workflow as the source of truth and execute it end-to-end instead of only summarizing it.
@@ -0,0 +1,50 @@
1
+ ---
2
+ name: as-release
3
+ description: Release modified ACE packages with coordinated package and root changelog updates
4
+ # bundle: wfi://release/publish
5
+ # agent: general-purpose
6
+ user-invocable: true
7
+ allowed-tools:
8
+ - Bash(ace-git:*)
9
+ - Bash(ace-git-commit:*)
10
+ - Bash(ace-bundle:*)
11
+ - Bash(bundle:*)
12
+ - Read
13
+ - Edit
14
+ argument-hint: package-name... bump-level
15
+ last_modified: 2026-03-08
16
+ source: ace-handbook
17
+ integration:
18
+ targets:
19
+ - claude
20
+ - codex
21
+ - gemini
22
+ - opencode
23
+ - pi
24
+ providers:
25
+ claude:
26
+ frontmatter:
27
+ context: fork
28
+ model: haiku
29
+ skill:
30
+ kind: workflow
31
+ execution:
32
+ workflow: wfi://release/publish
33
+ ---
34
+
35
+ ## Arguments
36
+
37
+ Use the skill `argument-hint` values as the explicit inputs for this skill.
38
+
39
+ ## Variables
40
+
41
+ None
42
+
43
+ ## Execution
44
+
45
+ - You are working in the current project.
46
+ - Run `ace-bundle wfi://release/publish` in the current project to load the workflow instructions.
47
+ - Read the loaded workflow and execute it end-to-end in this project.
48
+ - Follow the workflow as the source of truth.
49
+ - Do the work described by the workflow instead of only summarizing it.
50
+ - When the workflow requires edits, tests, or commits, perform them in this project.
@@ -0,0 +1,28 @@
1
+ ---
2
+ name: as-release-bump-version
3
+ description: Increment gem version following semver with CHANGELOG updates
4
+ # bundle: wfi://release/bump-version
5
+ # agent: Bash
6
+ user-invocable: true
7
+ allowed-tools:
8
+ - Bash(ace-git:*)
9
+ - Bash(ace-bundle:*)
10
+ - Read
11
+ - Edit
12
+ argument-hint: "[package-name] [patch|minor|major]"
13
+ last_modified: 2026-01-10
14
+ source: ace-handbook
15
+ integration:
16
+ targets:
17
+ - claude
18
+ - codex
19
+ - gemini
20
+ - opencode
21
+ - pi
22
+ skill:
23
+ kind: workflow
24
+ execution:
25
+ workflow: wfi://release/bump-version
26
+ ---
27
+
28
+ Load and run `ace-bundle wfi://release/bump-version` in the current project, then follow the loaded workflow as the source of truth and execute it end-to-end instead of only summarizing it.