@rse/ase 0.0.39 → 0.0.40

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 (33) hide show
  1. package/package.json +1 -1
  2. package/plugin/.claude-plugin/plugin.json +1 -1
  3. package/plugin/.github/plugin/plugin.json +1 -1
  4. package/plugin/meta/ase-constitution.md +2 -1
  5. package/plugin/meta/ase-control.md +63 -0
  6. package/plugin/meta/ase-persona.md +1 -0
  7. package/plugin/meta/ase-skill.md +1 -62
  8. package/plugin/package.json +1 -1
  9. package/plugin/skills/ase-arch-analyze/SKILL.md +8 -5
  10. package/plugin/skills/ase-arch-discover/SKILL.md +1 -0
  11. package/plugin/skills/ase-code-analyze/SKILL.md +1 -0
  12. package/plugin/skills/ase-code-craft/SKILL.md +13 -8
  13. package/plugin/skills/ase-code-explain/SKILL.md +7 -4
  14. package/plugin/skills/ase-code-insight/SKILL.md +8 -5
  15. package/plugin/skills/ase-code-lint/SKILL.md +1 -0
  16. package/plugin/skills/ase-code-refactor/SKILL.md +13 -8
  17. package/plugin/skills/ase-code-resolve/SKILL.md +18 -9
  18. package/plugin/skills/ase-meta-changes/SKILL.md +1 -0
  19. package/plugin/skills/ase-meta-chat/SKILL.md +1 -0
  20. package/plugin/skills/ase-meta-commit/SKILL.md +1 -0
  21. package/plugin/skills/ase-meta-evaluate/SKILL.md +1 -0
  22. package/plugin/skills/ase-meta-persona/SKILL.md +1 -0
  23. package/plugin/skills/ase-meta-quorum/SKILL.md +1 -0
  24. package/plugin/skills/ase-meta-search/SKILL.md +1 -0
  25. package/plugin/skills/ase-meta-why/SKILL.md +1 -0
  26. package/plugin/skills/ase-task-delete/SKILL.md +1 -0
  27. package/plugin/skills/ase-task-edit/SKILL.md +6 -4
  28. package/plugin/skills/ase-task-id/SKILL.md +1 -0
  29. package/plugin/skills/ase-task-implement/SKILL.md +6 -4
  30. package/plugin/skills/ase-task-list/SKILL.md +1 -0
  31. package/plugin/skills/ase-task-preflight/SKILL.md +11 -8
  32. package/plugin/skills/ase-task-reboot/SKILL.md +6 -4
  33. package/plugin/skills/ase-task-view/SKILL.md +1 -0
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "homepage": "http://github.com/rse/ase",
7
7
  "repository": { "url": "git+https://github.com/rse/ase.git", "type": "git" },
8
8
  "bugs": { "url": "http://github.com/rse/ase/issues" },
9
- "version": "0.0.39",
9
+ "version": "0.0.40",
10
10
  "license": "GPL-3.0-only",
11
11
  "author": {
12
12
  "name": "Dr. Ralf S. Engelschall",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ase",
3
- "version": "0.0.39",
3
+ "version": "0.0.40",
4
4
  "description": "Agentic Software Engineering (ASE)",
5
5
  "keywords": [ "agentic", "software", "engineering" ],
6
6
  "homepage": "https://ase.tools",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ase",
3
- "version": "0.0.39",
3
+ "version": "0.0.40",
4
4
  "description": "Agentic Software Engineering (ASE)",
5
5
  "keywords": [ "agentic", "software", "engineering" ],
6
6
  "homepage": "https://ase.tools",
@@ -110,5 +110,6 @@ Tenets
110
110
  Persona
111
111
  -------
112
112
 
113
- @./ase-skill.md
113
+ @./ase-control.md
114
114
  @./ase-persona.md
115
+
@@ -0,0 +1,63 @@
1
+
2
+ Control Flow Constructs
3
+ -----------------------
4
+
5
+ - *IMPORTANT*: You *MUST* honor the following control flow construct:
6
+ <define name="<define-name/>"><define-body/></define>:
7
+
8
+ This specifies a *reusable definition* named <define-name/> and
9
+ an <define-body/> which can contain arbitrary information with
10
+ optional `<args/>` (or alternatively, individual `<arg1/>`,
11
+ `<arg2/>`, etc) and optional `<content/>` references from
12
+ subsequent <expand/> calls.
13
+ This construct is expanded into nothing.
14
+ Do not output anything.
15
+
16
+ - *IMPORTANT*: You *MUST* honor the following control flow construct:
17
+ <expand name="<define-name/>" [arg1="<expand-arg1/>" [arg2="<expand-arg2/>]" [...]]]><expand-content/></expand>:
18
+
19
+ This specifies the *expansion* of previous <define/>.
20
+ This construct is expanded into the <define-body/> of <define/>
21
+ with `<args/>` substituted with `<expand-arg1/> <expand-arg2/>
22
+ [...]`, `<arg1/>` substituted with <expand-arg1/>, and `<content/>`
23
+ substituted with <expand-content/>.
24
+ Do not output anything else.
25
+
26
+ - *IMPORTANT*: You *MUST* honor the following control flow construct:
27
+ <flow><flow-body/></flow>:
28
+
29
+ This specifies a *sequential flow* of <step/>s, which have
30
+ to be followed/executed in exactly the given order.
31
+ This construct is expanded to its <flow-body/>.
32
+ Do not output anything else.
33
+
34
+ - *IMPORTANT*: You *MUST* honor the following control flow construct:
35
+ <step id="<id/>"><step-body/></step>:
36
+
37
+ This specifies a distinct *single step* in a <flow/>.
38
+ This construct is expanded to its <step-body/>.
39
+ Do not output anything else.
40
+
41
+ - *IMPORTANT*: You *MUST* honor the following control flow construct:
42
+ <if condition="<if-condition/>"><if-body/></if>:
43
+
44
+ This specifies a simple condition which is expanded to <if-body/>
45
+ if <if-condition/> is met, or to empty string if <if-condition/> is
46
+ *not* met. Do not output anything else.
47
+
48
+ - *IMPORTANT*: You *MUST* honor the following control flow construct:
49
+ <while condition="<while-condition/>"><while-body/></while>:
50
+
51
+ This specifies a <while-body/> which is *repeated* as long as
52
+ <while-condition/> is met. This construct is expanded to the
53
+ repetition of <while-body/>. Do not output anything else.
54
+
55
+ - *IMPORTANT*: You *MUST* honor the following control flow construct:
56
+ <for items="<for-item/> [...]"><for-body/></for>:
57
+
58
+ This specifies a <for-body/> which is *repeated* for all
59
+ <for-item/>s and where `<item/>` is expanded with the current
60
+ <for-item/> in <for-body/>. This construct is expanded to the
61
+ repetition of <for-body/>. A <break/> in <for-body/> can stop the
62
+ repetition early. Do not output anything else.
63
+
@@ -61,3 +61,4 @@ Apply Persona
61
61
  - Apply ruleset "level2": <expand name="level2"/>
62
62
  - Apply ruleset "level3": <expand name="level3"/>
63
63
  </if>
64
+
@@ -90,68 +90,6 @@ Skill Output
90
90
  Skills that report severity MUST support `ACCEPTED`
91
91
  in addition to `LOW`, `MEDIUM`, and `HIGH`.
92
92
 
93
- Skill Control Flow
94
- ------------------
95
-
96
- - *IMPORTANT*: You *MUST* honor the following control flow construct:
97
- <define name="<define-name/>"><define-body/></define>:
98
-
99
- This specifies a *reusable definition* named <define-name/> and
100
- an <define-body/> which can contain arbitrary information with
101
- optional `<args/>` (or alternatively, individual `<arg1/>`,
102
- `<arg2/>`, etc) and optional `<content/>` references from
103
- subsequent <expand/> calls.
104
- This construct is expanded into nothing.
105
- Do not output anything.
106
-
107
- - *IMPORTANT*: You *MUST* honor the following control flow construct:
108
- <expand name="<define-name/>" [arg1="<expand-arg1/>" [arg2="<expand-arg2/>]" [...]]]><expand-content/></expand>:
109
-
110
- This specifies the *expansion* of previous <define/>.
111
- This construct is expanded into the <define-body/> of <define/>
112
- with `<args/>` substituted with `<expand-arg1/> <expand-arg2/>
113
- [...]`, `<arg1/>` substituted with <expand-arg1/>, and `<content/>`
114
- substituted with <expand-content/>.
115
- Do not output anything else.
116
-
117
- - *IMPORTANT*: You *MUST* honor the following control flow construct:
118
- <flow><flow-body/></flow>:
119
-
120
- This specifies a *sequential flow* of <step/>s, which have
121
- to be followed/executed in exactly the given order.
122
- This construct is expanded to its <flow-body/>.
123
- Do not output anything else.
124
-
125
- - *IMPORTANT*: You *MUST* honor the following control flow construct:
126
- <step id="<id/>"><step-body/></step>:
127
-
128
- This specifies a distinct *single step* in a <flow/>.
129
- This construct is expanded to its <step-body/>.
130
- Do not output anything else.
131
-
132
- - *IMPORTANT*: You *MUST* honor the following control flow construct:
133
- <if condition="<if-condition/>"><if-body/></if>:
134
-
135
- This specifies a simple condition which is expanded to <if-body/>
136
- if <if-condition/> is met, or to empty string if <if-condition/> is
137
- *not* met. Do not output anything else.
138
-
139
- - *IMPORTANT*: You *MUST* honor the following control flow construct:
140
- <while condition="<while-condition/>"><while-body/></while>:
141
-
142
- This specifies a <while-body/> which is *repeated* as long as
143
- <while-condition/> is met. This construct is expanded to the
144
- repetition of <while-body/>. Do not output anything else.
145
-
146
- - *IMPORTANT*: You *MUST* honor the following control flow construct:
147
- <for items="<for-item/> [...]"><for-body/></for>:
148
-
149
- This specifies a <for-body/> which is *repeated* for all
150
- <for-item/>s and where `<item/>` is expanded with the current
151
- <for-item/> in <for-body/>. This construct is expanded to the
152
- repetition of <for-body/>. A <break/> in <for-body/> can stop the
153
- repetition early. Do not output anything else.
154
-
155
93
  Skill Sequential Processing
156
94
  ---------------------------
157
95
 
@@ -237,3 +175,4 @@ Skill Identification
237
175
  <template>
238
176
  ⧉ **ASE**: ◎ objective: **<objective/>**
239
177
  </template>
178
+
@@ -6,7 +6,7 @@
6
6
  "homepage": "http://github.com/rse/ase",
7
7
  "repository": { "url": "git+https://github.com/rse/ase.git", "type": "git" },
8
8
  "bugs": { "url": "http://github.com/rse/ase/issues" },
9
- "version": "0.0.39",
9
+ "version": "0.0.40",
10
10
  "license": "GPL-3.0-only",
11
11
  "author": {
12
12
  "name": "Dr. Ralf S. Engelschall",
@@ -99,6 +99,7 @@ allowed-tools:
99
99
  - "Skill"
100
100
  ---
101
101
 
102
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
102
103
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
103
104
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
104
105
 
@@ -302,11 +303,13 @@ interface quality, quality attributes, and architecture governance.
302
303
  - For <style/>, name the detected architecture style or
303
304
  "*undeclared*" if none is documented.
304
305
 
305
- - For <rendered-diagram-as-fenced-code-block/>, emit *Mermaid*
306
- source for a `flowchart TB` of the high-level component or
307
- layer structure and invoke the `ase-meta-diagram` skill via the
308
- `Skill` tool to render it. Show layers / slices / major
309
- components and their dependency direction.
306
+ - For <rendered-diagram-as-fenced-code-block/>, build a Mermaid
307
+ specification <mermaid-spec/> for a `flowchart TB` of the
308
+ high-level component or layer structure and invoke the
309
+ `ase-meta-diagram` skill by calling the tool `Skill(skill:
310
+ "ase:ase-meta-diagram", args: <mermaid-spec/>)` to render it.
311
+ Show layers / slices / major components and their dependency
312
+ direction.
310
313
 
311
314
  - Mark detected *anomalies* directly in the Mermaid source.
312
315
  Because `!` and `?` are Mermaid special characters, *always
@@ -15,6 +15,7 @@ allowed-tools:
15
15
  - "WebFetch"
16
16
  ---
17
17
 
18
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
18
19
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
19
20
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
20
21
 
@@ -10,6 +10,7 @@ allowed-tools:
10
10
  - "Agent"
11
11
  ---
12
12
 
13
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
13
14
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
14
15
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
15
16
 
@@ -11,6 +11,7 @@ allowed-tools:
11
11
  - "Skill"
12
12
  ---
13
13
 
14
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
14
15
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
15
16
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
16
17
  @${CLAUDE_SKILL_DIR}/../../meta/ase-dialog.md
@@ -186,14 +187,18 @@ permitted way to persist artifacts is via `task_save(...)`.
186
187
  *precise* and *brief* feature information. Try to keep the
187
188
  number of bullet points (●) in the range of 1-4.
188
189
 
189
- - In case of a *complex feature situation* only, visualize it with
190
- an optional diagram <optional-diagram/> by invoking the
191
- `ase-meta-diagram` skill via the `Skill` tool. For *current vs.
192
- proposed* comparisons, render each side as a *separate*
193
- `ase-meta-diagram` invocation and stack the rendered blocks
194
- *vertically* (labels `**Before:**` / `**After:**`); never
195
- side-by-side. Omit <optional-diagram/> entirely for simple or
196
- purely local situation.
190
+ - In case of a *complex feature situation* only, visualize
191
+ it with an optional diagram <optional-diagram/> by building
192
+ a Mermaid specification <mermaid-spec/> (e.g. `flowchart
193
+ TB`, `stateDiagram-v2`, `sequenceDiagram`, `classDiagram`,
194
+ or `erDiagram`, depending on intent) and invoking the
195
+ `ase-meta-diagram` skill by calling the tool `Skill(skill:
196
+ "ase:ase-meta-diagram", args: <mermaid-spec/>)`. For
197
+ *current vs. proposed* comparisons, render each side as
198
+ a *separate* `ase-meta-diagram` invocation and stack the
199
+ rendered blocks *vertically* (labels `**Before:**` /
200
+ `**After:**`); never side-by-side. Omit <optional-diagram/>
201
+ entirely for simple or purely local situation.
197
202
 
198
203
  5. **Choose Feature Crafting Approach**:
199
204
 
@@ -12,6 +12,7 @@ allowed-tools:
12
12
  - "Agent"
13
13
  ---
14
14
 
15
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
15
16
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
16
17
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
17
18
 
@@ -72,10 +73,12 @@ code and *explain* it in *brief*, *standardized*, and *concise* way.
72
73
  Second, draw a diagram to show the control or data flow, code or
73
74
  data structure, or code or data relationships. What gives the best
74
75
  overall overview of the code?
75
- Choose the Mermaid diagram type per intent: `classDiagram` for
76
- class/method structure, `sequenceDiagram` for actor/message flow,
77
- or `flowchart TB` for boxes-and-lines component layouts.
78
- Invoke the `ase-meta-diagram` skill via the `Skill` tool to render the
76
+ Build a Mermaid specification <mermaid-spec/>, choosing the Mermaid
77
+ diagram type per intent: `classDiagram` for class/method structure,
78
+ `sequenceDiagram` for actor/message flow, or `flowchart TB` for
79
+ boxes-and-lines component layouts. Then invoke the
80
+ `ase-meta-diagram` skill by calling the tool `Skill(skill:
81
+ "ase:ase-meta-diagram", args: <mermaid-spec/>)` to render the
79
82
  diagram. Do *not* hand-draw.
80
83
 
81
84
  Keep your explanation *brief* and *concise*.
@@ -14,6 +14,7 @@ allowed-tools:
14
14
  - "Skill"
15
15
  ---
16
16
 
17
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
17
18
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
18
19
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
19
20
 
@@ -90,11 +91,13 @@ Give *insights* into the project through the source code of $ARGUMENTS.
90
91
  &#x1F535; **MODULE STRUCTURE**:
91
92
  </template>
92
93
 
93
- Find all modules (or OOP classes) and draw a `flowchart TB`
94
- diagram with all modules as boxes and the imports between modules
95
- as the directed edges. Invoke the `ase-meta-diagram` skill via the
96
- `Skill` tool to render the diagram. Do not display any further
97
- explanation except for this diagram.
94
+ Find all modules (or OOP classes) and build a Mermaid specification
95
+ <mermaid-spec/> for a `flowchart TB` diagram with all modules as
96
+ boxes and the imports between modules as the directed edges. Then
97
+ invoke the `ase-meta-diagram` skill by calling the tool
98
+ `Skill(skill: "ase:ase-meta-diagram", args: <mermaid-spec/>)`
99
+ to render the diagram. Do not display any further explanation except
100
+ for this diagram.
98
101
  </step>
99
102
  </flow>
100
103
 
@@ -8,6 +8,7 @@ disable-model-invocation: false
8
8
  effort: medium
9
9
  ---
10
10
 
11
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
11
12
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
12
13
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
13
14
 
@@ -11,6 +11,7 @@ allowed-tools:
11
11
  - "Skill"
12
12
  ---
13
13
 
14
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
14
15
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
15
16
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
16
17
  @${CLAUDE_SKILL_DIR}/../../meta/ase-dialog.md
@@ -190,14 +191,18 @@ permitted way to persist artifacts is via `task_save(...)`.
190
191
  *precise* and *brief* refactoring information. Try to keep the
191
192
  number of bullet points (●) in the range of 1-4.
192
193
 
193
- - In case of a *complex refactoring situation* only, visualize it with
194
- an optional diagram <optional-diagram/> by invoking the
195
- `ase-meta-diagram` skill via the `Skill` tool. For *current vs.
196
- proposed* comparisons, render each side as a *separate*
197
- `ase-meta-diagram` invocation and stack the rendered blocks
198
- *vertically* (labels `**Before:**` / `**After:**`); never
199
- side-by-side. Omit <optional-diagram/> entirely for simple or
200
- purely local situation.
194
+ - In case of a *complex refactoring situation* only,
195
+ visualize it with an optional diagram <optional-diagram/>
196
+ by building a Mermaid specification <mermaid-spec/>
197
+ (e.g. `flowchart TB`, `stateDiagram-v2`, `sequenceDiagram`,
198
+ `classDiagram`, or `erDiagram`, depending on intent) and
199
+ invoking the `ase-meta-diagram` skill by calling the tool
200
+ `Skill(skill: "ase:ase-meta-diagram", args: <mermaid-spec/>)`.
201
+ For *current vs. proposed* comparisons, render each side as
202
+ a *separate* `ase-meta-diagram` invocation and stack the
203
+ rendered blocks *vertically* (labels `**Before:**` /
204
+ `**After:**`); never side-by-side. Omit <optional-diagram/>
205
+ entirely for simple or purely local situation.
201
206
 
202
207
  5. **Choose Refactoring Approach**:
203
208
 
@@ -11,6 +11,7 @@ allowed-tools:
11
11
  - "Skill"
12
12
  ---
13
13
 
14
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
14
15
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
15
16
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
16
17
  @${CLAUDE_SKILL_DIR}/../../meta/ase-dialog.md
@@ -150,7 +151,11 @@ permitted way to persist artifacts is via `task_save(...)`.
150
151
  transitions, etc), complex *data flow* (actors, messages, etc), or
151
152
  complex *data structure* (classes, entities, relationships, etc),
152
153
  visualize it with an optional diagram <optional-diagram/> by
153
- invoking the `ase-meta-diagram` skill via the `Skill` tool. Omit
154
+ building a Mermaid specification <mermaid-spec/> (e.g. `flowchart
155
+ TB`, `stateDiagram-v2`, `sequenceDiagram`, `classDiagram`, or
156
+ `erDiagram`, depending on intent) and invoking the
157
+ `ase-meta-diagram` skill by calling the tool `Skill(skill:
158
+ "ase:ase-meta-diagram", args: <mermaid-spec/>)`. Omit
154
159
  <optional-diagram/> entirely for simple or purely local situation.
155
160
 
156
161
  2. **Investigate Code Base**:
@@ -243,14 +248,18 @@ permitted way to persist artifacts is via `task_save(...)`.
243
248
  or unexpected* errors, they *should* be handled in parent scopes to
244
249
  avoid cluttering the source code with too much error handling at all.
245
250
 
246
- - In case of a *complex resolution situation* only, visualize it with
247
- an optional diagram <optional-diagram/> by invoking the
248
- `ase-meta-diagram` skill via the `Skill` tool. For *current vs.
249
- proposed* comparisons, render each side as a *separate*
250
- `ase-meta-diagram` invocation and stack the rendered blocks
251
- *vertically* (labels `**Before:**` / `**After:**`); never
252
- side-by-side. Omit <optional-diagram/> entirely for simple or
253
- purely local situation.
251
+ - In case of a *complex resolution situation* only,
252
+ visualize it with an optional diagram <optional-diagram/>
253
+ by building a Mermaid specification <mermaid-spec/>
254
+ (e.g. `flowchart TB`, `stateDiagram-v2`, `sequenceDiagram`,
255
+ `classDiagram`, or `erDiagram`, depending on intent) and
256
+ invoking the `ase-meta-diagram` skill by calling the tool
257
+ `Skill(skill: "ase:ase-meta-diagram", args: <mermaid-spec/>)`.
258
+ For *current vs. proposed* comparisons, render each side as
259
+ a *separate* `ase-meta-diagram` invocation and stack the
260
+ rendered blocks *vertically* (labels `**Before:**` /
261
+ `**After:**`); never side-by-side. Omit <optional-diagram/>
262
+ entirely for simple or purely local situation.
254
263
 
255
264
  5. **Choose Problem Resolution Approach**:
256
265
 
@@ -14,6 +14,7 @@ allowed-tools:
14
14
  - "Edit"
15
15
  ---
16
16
 
17
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
17
18
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
18
19
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
19
20
 
@@ -18,6 +18,7 @@ allowed-tools:
18
18
  - "Agent"
19
19
  ---
20
20
 
21
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
21
22
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
22
23
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
23
24
 
@@ -10,6 +10,7 @@ allowed-tools:
10
10
  - "Bash(git diff *)"
11
11
  ---
12
12
 
13
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
13
14
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
14
15
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
15
16
 
@@ -11,6 +11,7 @@ disable-model-invocation: false
11
11
  effort: high
12
12
  ---
13
13
 
14
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
14
15
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
15
16
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
16
17
 
@@ -49,4 +49,5 @@ Persona Configuration
49
49
  Apply Persona
50
50
  -------------
51
51
 
52
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
52
53
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
@@ -11,6 +11,7 @@ allowed-tools:
11
11
  - "TaskCreate"
12
12
  ---
13
13
 
14
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
14
15
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
15
16
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
16
17
 
@@ -15,6 +15,7 @@ allowed-tools:
15
15
  - "Task"
16
16
  ---
17
17
 
18
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
18
19
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
19
20
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
20
21
 
@@ -8,6 +8,7 @@ disable-model-invocation: false
8
8
  effort: medium
9
9
  ---
10
10
 
11
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
11
12
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
12
13
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
13
14
 
@@ -10,6 +10,7 @@ disable-model-invocation: false
10
10
  effort: low
11
11
  ---
12
12
 
13
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
13
14
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
14
15
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
15
16
 
@@ -12,6 +12,7 @@ disable-model-invocation: false
12
12
  effort: high
13
13
  ---
14
14
 
15
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
15
16
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
16
17
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
17
18
  @${CLAUDE_SKILL_DIR}/../../meta/ase-dialog.md
@@ -344,8 +345,8 @@ explicitly requested by this procedure via outputs based on a <template/>!
344
345
  - If <result/> is `IMPLEMENT`:
345
346
 
346
347
  *Break* out of the *loop*, only output the following
347
- <template/> and then use the `Skill` tool to invoke the
348
- `ase:ase-task-implement` skill in order to *apply* the finalized
348
+ <template/> and then call the `Skill(skill:
349
+ "ase:ase-task-implement")` tool to *apply* the finalized
349
350
  plan.
350
351
 
351
352
  <template>
@@ -355,8 +356,8 @@ explicitly requested by this procedure via outputs based on a <template/>!
355
356
  - If <result/> is `PREFLIGHT`:
356
357
 
357
358
  *Break* out of the *loop*, only output the following
358
- <template/> and then use the `Skill` tool to invoke the
359
- `ase:ase-task-preflight` skill in order to *apply* the finalized
359
+ <template/> and then call the `Skill(skill:
360
+ "ase:ase-task-preflight")` tool to *apply* the finalized
360
361
  plan.
361
362
 
362
363
  <template>
@@ -412,3 +413,4 @@ explicitly requested by this procedure via outputs based on a <template/>!
412
413
  <template>
413
414
  ⧉ **ASE**: ◉ task: **<ase-task-id/>**, ✪ plan: **<words/>** words, ▶ status: **plan refinement cancelled**
414
415
  </template>
416
+
@@ -10,6 +10,7 @@ disable-model-invocation: false
10
10
  effort: low
11
11
  ---
12
12
 
13
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
13
14
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
14
15
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
15
16
 
@@ -10,6 +10,7 @@ disable-model-invocation: false
10
10
  effort: xhigh
11
11
  ---
12
12
 
13
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
13
14
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
14
15
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
15
16
  @${CLAUDE_SKILL_DIR}/../../meta/ase-dialog.md
@@ -149,10 +150,11 @@ explicitly requested by this procedure via outputs based on a <template/>!
149
150
  </template>
150
151
 
151
152
  - If <result/> is `DELETE`:
152
- Only output the following <template/> and then use the
153
- `Skill` tool to invoke the `ase:ase-task-delete` skill in
154
- order to *delete* the updated plan. Immediately stop
155
- processing the current skill once the `Skill` tool was used.
153
+ Only output the following <template/> and then call the
154
+ tool `Skill(skill: "ase:ase-task-delete")` to invoke the
155
+ `ase:ase-task-delete` skill in order to *delete* the updated
156
+ plan. Immediately stop processing the current skill once the
157
+ `Skill` tool was used.
156
158
 
157
159
  <template>
158
160
  ⧉ **ASE**: ◉ task: **<ase-task-id/>**, ✪ plan: **<words/>** words, ▶ status: **plan implemented -- hand-off to delete task**
@@ -9,6 +9,7 @@ disable-model-invocation: false
9
9
  effort: low
10
10
  ---
11
11
 
12
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
12
13
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
13
14
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
14
15
  @${CLAUDE_SKILL_DIR}/../../meta/ase-getopt.md
@@ -10,6 +10,7 @@ disable-model-invocation: false
10
10
  effort: xhigh
11
11
  ---
12
12
 
13
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
13
14
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
14
15
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
15
16
  @${CLAUDE_SKILL_DIR}/../../meta/ase-dialog.md
@@ -172,20 +173,22 @@ explicitly requested by this procedure via outputs based on a <template/>!
172
173
  </template>
173
174
 
174
175
  - If <result/> is `EDIT`:
175
- Only output the following <template/> and then use the
176
- `Skill` tool to invoke the `ase:ase-task-edit` skill
177
- in order to *edit* the updated plan. Immediately stop
178
- processing the current skill once the `Skill` tool was used.
176
+ Only output the following <template/> and then call the
177
+ tool `Skill(skill: "ase:ase-task-edit")` to invoke the
178
+ `ase:ase-task-edit` skill in order to *edit* the updated
179
+ plan. Immediately stop processing the current skill once the
180
+ `Skill` tool was used.
179
181
 
180
182
  <template>
181
183
  ⧉ **ASE**: ◉ task: **<ase-task-id/>**, ✪ plan: **<words/>** words, ▶ status: **plan updated -- hand-off to edit**
182
184
  </template>
183
185
 
184
186
  - If <result/> is `IMPLEMENT`:
185
- Only output the following <template/> and then use the
186
- `Skill` tool to invoke the `ase:ase-task-implement` skill
187
- in order to *implement* the updated plan. Immediately stop
188
- processing the current skill once the `Skill` tool was used.
187
+ Only output the following <template/> and then call the
188
+ tool `Skill(skill: "ase:ase-task-implement")` to invoke the
189
+ `ase:ase-task-implement` skill in order to *implement* the
190
+ updated plan. Immediately stop processing the current skill
191
+ once the `Skill` tool was used.
189
192
 
190
193
  <template>
191
194
  ⧉ **ASE**: ◉ task: **<ase-task-id/>**, ✪ plan: **<words/>** words, ▶ status: **plan updated -- hand-off to implement**
@@ -10,6 +10,7 @@ disable-model-invocation: false
10
10
  effort: xhigh
11
11
  ---
12
12
 
13
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
13
14
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
14
15
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
15
16
  @${CLAUDE_SKILL_DIR}/../../meta/ase-dialog.md
@@ -164,10 +165,11 @@ explicitly requested by this procedure via outputs based on a <template/>!
164
165
  </template>
165
166
 
166
167
  - If <result/> is `EDIT`:
167
- Only output the following <template/> and then use the
168
- `Skill` tool to invoke the `ase:ase-task-edit` skill
169
- in order to *edit* the updated plan. Immediately stop
170
- processing the current skill once the `Skill` tool was used.
168
+ Only output the following <template/> and then call the
169
+ tool `Skill(skill: "ase:ase-task-edit")` to invoke the
170
+ `ase:ase-task-edit` skill in order to *edit* the updated
171
+ plan. Immediately stop processing the current skill once the
172
+ `Skill` tool was used.
171
173
 
172
174
  <template>
173
175
  ⧉ **ASE**: ◉ task: **<ase-task-id/>**, ✪ plan: **<words/>** words, ▶ status: **plan updated -- hand-off to edit**
@@ -10,6 +10,7 @@ disable-model-invocation: false
10
10
  effort: low
11
11
  ---
12
12
 
13
+ @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
13
14
  @${CLAUDE_SKILL_DIR}/../../meta/ase-persona.md
14
15
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
15
16