@rse/ase 0.0.39 → 0.0.41
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.
- package/dst/ase-config.js +2 -0
- package/dst/ase-decision.js +67 -0
- package/dst/ase-service.js +25 -26
- package/dst/ase-skills.js +224 -0
- package/package.json +6 -4
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/.github/plugin/plugin.json +1 -1
- package/plugin/meta/ase-constitution.md +2 -1
- package/plugin/meta/ase-control.md +63 -0
- package/plugin/meta/ase-persona.md +1 -0
- package/plugin/meta/ase-skill.md +1 -62
- package/plugin/package.json +1 -1
- package/plugin/skills/ase-arch-analyze/SKILL.md +8 -6
- package/plugin/skills/ase-arch-discover/SKILL.md +45 -32
- package/plugin/skills/ase-code-analyze/SKILL.md +1 -1
- package/plugin/skills/ase-code-craft/SKILL.md +13 -9
- package/plugin/skills/ase-code-explain/SKILL.md +7 -5
- package/plugin/skills/ase-code-insight/SKILL.md +8 -6
- package/plugin/skills/ase-code-lint/SKILL.md +1 -1
- package/plugin/skills/ase-code-refactor/SKILL.md +13 -9
- package/plugin/skills/ase-code-resolve/SKILL.md +18 -10
- package/plugin/skills/ase-meta-changes/SKILL.md +1 -1
- package/plugin/skills/ase-meta-chat/SKILL.md +1 -1
- package/plugin/skills/ase-meta-commit/SKILL.md +1 -1
- package/plugin/skills/ase-meta-evaluate/SKILL.md +11 -8
- package/plugin/skills/ase-meta-persona/SKILL.md +1 -0
- package/plugin/skills/ase-meta-quorum/SKILL.md +1 -1
- package/plugin/skills/ase-meta-search/SKILL.md +1 -1
- package/plugin/skills/ase-meta-why/SKILL.md +1 -1
- package/plugin/skills/ase-task-delete/SKILL.md +1 -1
- package/plugin/skills/ase-task-edit/SKILL.md +6 -5
- package/plugin/skills/ase-task-id/SKILL.md +1 -1
- package/plugin/skills/ase-task-implement/SKILL.md +6 -5
- package/plugin/skills/ase-task-list/SKILL.md +1 -1
- package/plugin/skills/ase-task-preflight/SKILL.md +11 -9
- package/plugin/skills/ase-task-reboot/SKILL.md +6 -5
- package/plugin/skills/ase-task-view/SKILL.md +1 -1
|
@@ -99,7 +99,7 @@ allowed-tools:
|
|
|
99
99
|
- "Skill"
|
|
100
100
|
---
|
|
101
101
|
|
|
102
|
-
@${CLAUDE_SKILL_DIR}/../../meta/ase-
|
|
102
|
+
@${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
|
|
103
103
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
|
|
104
104
|
|
|
105
105
|
Review Software Architecture
|
|
@@ -302,11 +302,13 @@ interface quality, quality attributes, and architecture governance.
|
|
|
302
302
|
- For <style/>, name the detected architecture style or
|
|
303
303
|
"*undeclared*" if none is documented.
|
|
304
304
|
|
|
305
|
-
- For <rendered-diagram-as-fenced-code-block/>,
|
|
306
|
-
|
|
307
|
-
layer structure and invoke the
|
|
308
|
-
`
|
|
309
|
-
|
|
305
|
+
- For <rendered-diagram-as-fenced-code-block/>, build a Mermaid
|
|
306
|
+
specification <mermaid-spec/> for a `flowchart TB` of the
|
|
307
|
+
high-level component or layer structure and invoke the
|
|
308
|
+
`ase-meta-diagram` skill by calling the tool `Skill(skill:
|
|
309
|
+
"ase:ase-meta-diagram", args: <mermaid-spec/>)` to render it.
|
|
310
|
+
Show layers / slices / major components and their dependency
|
|
311
|
+
direction.
|
|
310
312
|
|
|
311
313
|
- Mark detected *anomalies* directly in the Mermaid source.
|
|
312
314
|
Because `!` and `?` are Mermaid special characters, *always
|
|
@@ -9,13 +9,11 @@ disable-model-invocation: false
|
|
|
9
9
|
effort: medium
|
|
10
10
|
allowed-tools:
|
|
11
11
|
- "Bash(npm search --json *)"
|
|
12
|
-
- "Bash(npm view --json *)"
|
|
13
12
|
- "Skill"
|
|
14
13
|
- "Agent"
|
|
15
|
-
- "WebFetch"
|
|
16
14
|
---
|
|
17
15
|
|
|
18
|
-
@${CLAUDE_SKILL_DIR}/../../meta/ase-
|
|
16
|
+
@${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
|
|
19
17
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
|
|
20
18
|
|
|
21
19
|
Discover Components
|
|
@@ -112,26 +110,6 @@ for the technology stack to *provide* the *needed functionality*
|
|
|
112
110
|
(L=1-M). Merge the results into the already existing result
|
|
113
111
|
set, but deduplicate entries.
|
|
114
112
|
|
|
115
|
-
- For each discovered *NPM package* <component-K/> (K=1-N),
|
|
116
|
-
use the shell command `npm view --json "<package-K/>"
|
|
117
|
-
version time repository.url` to discover
|
|
118
|
-
its version <version-K/>, the publish time of that
|
|
119
|
-
version <updated-K/> (read from `time[<version-K/>]`),
|
|
120
|
-
its time created <created-K/> (read from `time.created`),
|
|
121
|
-
and its repository URL <repository-K/>.
|
|
122
|
-
|
|
123
|
-
- If the <repository-K/> regexp-matches
|
|
124
|
-
`.+?//github\.com/([^/]+/[^/.]+).*` use the `WebFetch` tool
|
|
125
|
-
to fetch the URL `https://api.github.com/repos/$1` (`$1`
|
|
126
|
-
is the value matched by the first capturing parenthesis
|
|
127
|
-
in the regexp) and extract <stars-K/> from its JSON
|
|
128
|
-
`stargazers_count` field, else set <stars-K/> to `N.A.`.
|
|
129
|
-
|
|
130
|
-
- For each discovered *NPM package* <component-K/>
|
|
131
|
-
(K=1-N), use the `WebFetch` tool on the URL
|
|
132
|
-
`https://api.npmjs.org/downloads/point/last-month/<package-K/>`
|
|
133
|
-
to extract the <downloads-K/> from the `downloads` field.
|
|
134
|
-
|
|
135
113
|
- If <stack/> is "Java" or "Kotlin":
|
|
136
114
|
|
|
137
115
|
- Based on the essential keywords <keyword-L/> (L=1-M),
|
|
@@ -139,25 +117,60 @@ for the technology stack to *provide* the *needed functionality*
|
|
|
139
117
|
discover an initial set of a maximum of 12 *Java packages*
|
|
140
118
|
<component-K/> and at least their real name <name-K/> and
|
|
141
119
|
their unique package names <package-K/>.
|
|
120
|
+
|
|
121
|
+
- Call the `component_info(stack: <stack/>, components:
|
|
122
|
+
[ <package-1/>, ..., <package-N/> ])` tool of the `ase` MCP
|
|
123
|
+
service *once* for the entire set of discovered packages.
|
|
124
|
+
The tool dispatches internally on <stack/> and fetches all
|
|
125
|
+
metadata in maximum parallel and returns an array of objects `{
|
|
126
|
+
name, version, time, repository, stars, downloads }`. For each
|
|
127
|
+
component <component-K/> (K=1-N) read from its corresponding
|
|
128
|
+
entry: <version-K/> from `version`, <updated-K/> from `updated`,
|
|
129
|
+
<created-K/> from `created`, <repository-K/> from `repository`,
|
|
130
|
+
<stars-K/> from `stars` (numeric or `N.A.`), <downloads-K/>
|
|
131
|
+
from `downloads` (numeric or `N.A.`) and <rank-K/> from `rank`
|
|
132
|
+
(numeric).
|
|
133
|
+
|
|
134
|
+
- Sort, in descending order, the discovered components
|
|
135
|
+
<component-K/> (K=1-N) by their `rank` field and trim the result
|
|
136
|
+
list to just a maximum of 12 total components.
|
|
137
|
+
|
|
138
|
+
- For each component <component-K/> (K=1-N), research and then
|
|
139
|
+
decide which *one* of *USP* (Unique Selling Point -- what makes
|
|
140
|
+
it unique), *Crux* (what you should notice), or *Gotcha* (what
|
|
141
|
+
you should not stumble over) is its single most distinguishing
|
|
142
|
+
perspective, and remember this as an <info-K/> (K=1-N) formatted
|
|
143
|
+
like `<type/>: <hint/>` where <type/> is one of `USP`, `Crux`,
|
|
144
|
+
or `Gotcha` and <hint/> is a 1-6 word hint. Do not output
|
|
145
|
+
anything.
|
|
142
146
|
</step>
|
|
143
147
|
|
|
144
148
|
4. <step id="STEP 4: Report Components">
|
|
145
|
-
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
+
- Display the determined, individual components as a Markdown
|
|
150
|
+
*table* with just the following <template/> and do not output
|
|
151
|
+
anything else:
|
|
152
|
+
|
|
153
|
+
<template>
|
|
154
|
+
🔵 **COMPONENT HINTS**:
|
|
155
|
+
|
|
156
|
+
| ⚑ *Component* | ▣ *Package* | ⚖ *Hint* |
|
|
157
|
+
| :----------------- | :------------- | :-------- |
|
|
158
|
+
| **<component-1/>** | `<package-1/>` | <info-1/> |
|
|
159
|
+
[...]
|
|
160
|
+
| **<component-N/>** | `<package-N/>` | <info-N/> |
|
|
161
|
+
</template>
|
|
149
162
|
|
|
150
163
|
- Display the discovered components as a Markdown *table*
|
|
151
164
|
with just the following <template/>:
|
|
152
165
|
|
|
153
166
|
<template>
|
|
154
|
-
🔵 **
|
|
167
|
+
🔵 **COMPONENT RANKING**:
|
|
155
168
|
|
|
156
|
-
| *Component*
|
|
157
|
-
|
|
|
158
|
-
| **<
|
|
169
|
+
| ⚑ *Component* | ▣ *Package* | ❖ *Version* | ↓ *Downloads* | ⎈ *Stars* | ⏲ *Updated* | ☆ *Created* |
|
|
170
|
+
| :----------------- | :------------- | -----------: | -----------------: | -------------: | :--------------- | :----------- |
|
|
171
|
+
| **<component-1/>** | `<package-1/>` | <version-1/> | **<downloads-1/>** | **<stars-1/>** | **<updated-1/>** | <created-1/> |
|
|
159
172
|
[...]
|
|
160
|
-
| **<
|
|
173
|
+
| **<component-N/>** | `<package-N/>` | <version-N/> | **<downloads-N/>** | **<stars-N/>** | **<updated-N/>** | <created-N/> |
|
|
161
174
|
</template>
|
|
162
175
|
</step>
|
|
163
176
|
</flow>
|
|
@@ -11,7 +11,7 @@ allowed-tools:
|
|
|
11
11
|
- "Skill"
|
|
12
12
|
---
|
|
13
13
|
|
|
14
|
-
@${CLAUDE_SKILL_DIR}/../../meta/ase-
|
|
14
|
+
@${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
|
|
15
15
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
|
|
16
16
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-dialog.md
|
|
17
17
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-getopt.md
|
|
@@ -186,14 +186,18 @@ permitted way to persist artifacts is via `task_save(...)`.
|
|
|
186
186
|
*precise* and *brief* feature information. Try to keep the
|
|
187
187
|
number of bullet points (●) in the range of 1-4.
|
|
188
188
|
|
|
189
|
-
- In case of a *complex feature situation* only, visualize
|
|
190
|
-
an optional diagram <optional-diagram/> by
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
`
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
189
|
+
- In case of a *complex feature situation* only, visualize
|
|
190
|
+
it with an optional diagram <optional-diagram/> by building
|
|
191
|
+
a Mermaid specification <mermaid-spec/> (e.g. `flowchart
|
|
192
|
+
TB`, `stateDiagram-v2`, `sequenceDiagram`, `classDiagram`,
|
|
193
|
+
or `erDiagram`, depending on intent) and invoking the
|
|
194
|
+
`ase-meta-diagram` skill by calling the tool `Skill(skill:
|
|
195
|
+
"ase:ase-meta-diagram", args: <mermaid-spec/>)`. For
|
|
196
|
+
*current vs. proposed* comparisons, render each side as
|
|
197
|
+
a *separate* `ase-meta-diagram` invocation and stack the
|
|
198
|
+
rendered blocks *vertically* (labels `**Before:**` /
|
|
199
|
+
`**After:**`); never side-by-side. Omit <optional-diagram/>
|
|
200
|
+
entirely for simple or purely local situation.
|
|
197
201
|
|
|
198
202
|
5. **Choose Feature Crafting Approach**:
|
|
199
203
|
|
|
@@ -12,7 +12,7 @@ allowed-tools:
|
|
|
12
12
|
- "Agent"
|
|
13
13
|
---
|
|
14
14
|
|
|
15
|
-
@${CLAUDE_SKILL_DIR}/../../meta/ase-
|
|
15
|
+
@${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
|
|
16
16
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
|
|
17
17
|
|
|
18
18
|
Explain Source Code
|
|
@@ -72,10 +72,12 @@ code and *explain* it in *brief*, *standardized*, and *concise* way.
|
|
|
72
72
|
Second, draw a diagram to show the control or data flow, code or
|
|
73
73
|
data structure, or code or data relationships. What gives the best
|
|
74
74
|
overall overview of the code?
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
or `flowchart TB` for
|
|
78
|
-
|
|
75
|
+
Build a Mermaid specification <mermaid-spec/>, choosing the Mermaid
|
|
76
|
+
diagram type per intent: `classDiagram` for class/method structure,
|
|
77
|
+
`sequenceDiagram` for actor/message flow, or `flowchart TB` for
|
|
78
|
+
boxes-and-lines component layouts. Then invoke the
|
|
79
|
+
`ase-meta-diagram` skill by calling the tool `Skill(skill:
|
|
80
|
+
"ase:ase-meta-diagram", args: <mermaid-spec/>)` to render the
|
|
79
81
|
diagram. Do *not* hand-draw.
|
|
80
82
|
|
|
81
83
|
Keep your explanation *brief* and *concise*.
|
|
@@ -14,7 +14,7 @@ allowed-tools:
|
|
|
14
14
|
- "Skill"
|
|
15
15
|
---
|
|
16
16
|
|
|
17
|
-
@${CLAUDE_SKILL_DIR}/../../meta/ase-
|
|
17
|
+
@${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
|
|
18
18
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
|
|
19
19
|
|
|
20
20
|
Project Insight
|
|
@@ -90,11 +90,13 @@ Give *insights* into the project through the source code of $ARGUMENTS.
|
|
|
90
90
|
🔵 **MODULE STRUCTURE**:
|
|
91
91
|
</template>
|
|
92
92
|
|
|
93
|
-
Find all modules (or OOP classes) and
|
|
94
|
-
diagram with all modules as
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
93
|
+
Find all modules (or OOP classes) and build a Mermaid specification
|
|
94
|
+
<mermaid-spec/> for a `flowchart TB` diagram with all modules as
|
|
95
|
+
boxes and the imports between modules as the directed edges. Then
|
|
96
|
+
invoke the `ase-meta-diagram` skill by calling the tool
|
|
97
|
+
`Skill(skill: "ase:ase-meta-diagram", args: <mermaid-spec/>)`
|
|
98
|
+
to render the diagram. Do not display any further explanation except
|
|
99
|
+
for this diagram.
|
|
98
100
|
</step>
|
|
99
101
|
</flow>
|
|
100
102
|
|
|
@@ -11,7 +11,7 @@ allowed-tools:
|
|
|
11
11
|
- "Skill"
|
|
12
12
|
---
|
|
13
13
|
|
|
14
|
-
@${CLAUDE_SKILL_DIR}/../../meta/ase-
|
|
14
|
+
@${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
|
|
15
15
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
|
|
16
16
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-dialog.md
|
|
17
17
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-getopt.md
|
|
@@ -190,14 +190,18 @@ permitted way to persist artifacts is via `task_save(...)`.
|
|
|
190
190
|
*precise* and *brief* refactoring information. Try to keep the
|
|
191
191
|
number of bullet points (●) in the range of 1-4.
|
|
192
192
|
|
|
193
|
-
- In case of a *complex refactoring situation* only,
|
|
194
|
-
an optional diagram <optional-diagram/>
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
`
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
193
|
+
- In case of a *complex refactoring situation* only,
|
|
194
|
+
visualize it with an optional diagram <optional-diagram/>
|
|
195
|
+
by building a Mermaid specification <mermaid-spec/>
|
|
196
|
+
(e.g. `flowchart TB`, `stateDiagram-v2`, `sequenceDiagram`,
|
|
197
|
+
`classDiagram`, or `erDiagram`, depending on intent) and
|
|
198
|
+
invoking the `ase-meta-diagram` skill by calling the tool
|
|
199
|
+
`Skill(skill: "ase:ase-meta-diagram", args: <mermaid-spec/>)`.
|
|
200
|
+
For *current vs. proposed* comparisons, render each side as
|
|
201
|
+
a *separate* `ase-meta-diagram` invocation and stack the
|
|
202
|
+
rendered blocks *vertically* (labels `**Before:**` /
|
|
203
|
+
`**After:**`); never side-by-side. Omit <optional-diagram/>
|
|
204
|
+
entirely for simple or purely local situation.
|
|
201
205
|
|
|
202
206
|
5. **Choose Refactoring Approach**:
|
|
203
207
|
|
|
@@ -11,7 +11,7 @@ allowed-tools:
|
|
|
11
11
|
- "Skill"
|
|
12
12
|
---
|
|
13
13
|
|
|
14
|
-
@${CLAUDE_SKILL_DIR}/../../meta/ase-
|
|
14
|
+
@${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
|
|
15
15
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
|
|
16
16
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-dialog.md
|
|
17
17
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-getopt.md
|
|
@@ -150,7 +150,11 @@ permitted way to persist artifacts is via `task_save(...)`.
|
|
|
150
150
|
transitions, etc), complex *data flow* (actors, messages, etc), or
|
|
151
151
|
complex *data structure* (classes, entities, relationships, etc),
|
|
152
152
|
visualize it with an optional diagram <optional-diagram/> by
|
|
153
|
-
|
|
153
|
+
building a Mermaid specification <mermaid-spec/> (e.g. `flowchart
|
|
154
|
+
TB`, `stateDiagram-v2`, `sequenceDiagram`, `classDiagram`, or
|
|
155
|
+
`erDiagram`, depending on intent) and invoking the
|
|
156
|
+
`ase-meta-diagram` skill by calling the tool `Skill(skill:
|
|
157
|
+
"ase:ase-meta-diagram", args: <mermaid-spec/>)`. Omit
|
|
154
158
|
<optional-diagram/> entirely for simple or purely local situation.
|
|
155
159
|
|
|
156
160
|
2. **Investigate Code Base**:
|
|
@@ -243,14 +247,18 @@ permitted way to persist artifacts is via `task_save(...)`.
|
|
|
243
247
|
or unexpected* errors, they *should* be handled in parent scopes to
|
|
244
248
|
avoid cluttering the source code with too much error handling at all.
|
|
245
249
|
|
|
246
|
-
- In case of a *complex resolution situation* only,
|
|
247
|
-
an optional diagram <optional-diagram/>
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
`
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
250
|
+
- In case of a *complex resolution situation* only,
|
|
251
|
+
visualize it with an optional diagram <optional-diagram/>
|
|
252
|
+
by building a Mermaid specification <mermaid-spec/>
|
|
253
|
+
(e.g. `flowchart TB`, `stateDiagram-v2`, `sequenceDiagram`,
|
|
254
|
+
`classDiagram`, or `erDiagram`, depending on intent) and
|
|
255
|
+
invoking the `ase-meta-diagram` skill by calling the tool
|
|
256
|
+
`Skill(skill: "ase:ase-meta-diagram", args: <mermaid-spec/>)`.
|
|
257
|
+
For *current vs. proposed* comparisons, render each side as
|
|
258
|
+
a *separate* `ase-meta-diagram` invocation and stack the
|
|
259
|
+
rendered blocks *vertically* (labels `**Before:**` /
|
|
260
|
+
`**After:**`); never side-by-side. Omit <optional-diagram/>
|
|
261
|
+
entirely for simple or purely local situation.
|
|
254
262
|
|
|
255
263
|
5. **Choose Problem Resolution Approach**:
|
|
256
264
|
|
|
@@ -11,7 +11,7 @@ disable-model-invocation: false
|
|
|
11
11
|
effort: high
|
|
12
12
|
---
|
|
13
13
|
|
|
14
|
-
@${CLAUDE_SKILL_DIR}/../../meta/ase-
|
|
14
|
+
@${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
|
|
15
15
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
|
|
16
16
|
|
|
17
17
|
Evaluate Alternatives
|
|
@@ -152,13 +152,16 @@ multi-*criteria* decision matrix.
|
|
|
152
152
|
from { -2, -1, 0, +1, +2 } (from worst, over neutral, to best). Do
|
|
153
153
|
not output anything.
|
|
154
154
|
|
|
155
|
-
- Then,
|
|
156
|
-
|
|
157
|
-
<weight-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
155
|
+
- Then, calculate the ratings <rating-K/> (K=1-N) for all
|
|
156
|
+
alternatives in a single call by invoking the `decision_matrix(matrix:
|
|
157
|
+
[ [ <weight-1/>, <eval-1-1/>, ..., <eval-1-N/> ], ..., [ <weight-M/>,
|
|
158
|
+
<eval-M-1/>, ..., <eval-M-N/> ] ])` tool of the `ase` MCP service.
|
|
159
|
+
The tool returns an array of N numerical values, where the K-th
|
|
160
|
+
entry is the product-sum of all weights <weight-L/> (L=1-M) and
|
|
161
|
+
the evaluation <eval-K-L/> (L=1-M) for alternative <alternative-K/>.
|
|
162
|
+
Retain the *raw, unrounded* <rating-K/> for use in STEP 5, but
|
|
163
|
+
round <rating-K/> to 2 decimal places *for display only* when
|
|
164
|
+
emitting it in the table below. Do not output anything.
|
|
162
165
|
|
|
163
166
|
- Output the resulting *Weighted Decision Matrix* as a Markdown
|
|
164
167
|
*table* with just the following <template/> and do not output
|
|
@@ -12,7 +12,7 @@ disable-model-invocation: false
|
|
|
12
12
|
effort: high
|
|
13
13
|
---
|
|
14
14
|
|
|
15
|
-
@${CLAUDE_SKILL_DIR}/../../meta/ase-
|
|
15
|
+
@${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
|
|
16
16
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
|
|
17
17
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-dialog.md
|
|
18
18
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-getopt.md
|
|
@@ -344,8 +344,8 @@ explicitly requested by this procedure via outputs based on a <template/>!
|
|
|
344
344
|
- If <result/> is `IMPLEMENT`:
|
|
345
345
|
|
|
346
346
|
*Break* out of the *loop*, only output the following
|
|
347
|
-
<template/> and then
|
|
348
|
-
|
|
347
|
+
<template/> and then call the `Skill(skill:
|
|
348
|
+
"ase:ase-task-implement")` tool to *apply* the finalized
|
|
349
349
|
plan.
|
|
350
350
|
|
|
351
351
|
<template>
|
|
@@ -355,8 +355,8 @@ explicitly requested by this procedure via outputs based on a <template/>!
|
|
|
355
355
|
- If <result/> is `PREFLIGHT`:
|
|
356
356
|
|
|
357
357
|
*Break* out of the *loop*, only output the following
|
|
358
|
-
<template/> and then
|
|
359
|
-
|
|
358
|
+
<template/> and then call the `Skill(skill:
|
|
359
|
+
"ase:ase-task-preflight")` tool to *apply* the finalized
|
|
360
360
|
plan.
|
|
361
361
|
|
|
362
362
|
<template>
|
|
@@ -412,3 +412,4 @@ explicitly requested by this procedure via outputs based on a <template/>!
|
|
|
412
412
|
<template>
|
|
413
413
|
⧉ **ASE**: ◉ task: **<ase-task-id/>**, ✪ plan: **<words/>** words, ▶ status: **plan refinement cancelled**
|
|
414
414
|
</template>
|
|
415
|
+
|
|
@@ -10,7 +10,7 @@ disable-model-invocation: false
|
|
|
10
10
|
effort: xhigh
|
|
11
11
|
---
|
|
12
12
|
|
|
13
|
-
@${CLAUDE_SKILL_DIR}/../../meta/ase-
|
|
13
|
+
@${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
|
|
14
14
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
|
|
15
15
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-dialog.md
|
|
16
16
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-getopt.md
|
|
@@ -149,10 +149,11 @@ explicitly requested by this procedure via outputs based on a <template/>!
|
|
|
149
149
|
</template>
|
|
150
150
|
|
|
151
151
|
- If <result/> is `DELETE`:
|
|
152
|
-
Only output the following <template/> and then
|
|
153
|
-
`Skill
|
|
154
|
-
order to *delete* the updated
|
|
155
|
-
processing the current skill once the
|
|
152
|
+
Only output the following <template/> and then call the
|
|
153
|
+
tool `Skill(skill: "ase:ase-task-delete")` to invoke the
|
|
154
|
+
`ase:ase-task-delete` skill in order to *delete* the updated
|
|
155
|
+
plan. Immediately stop processing the current skill once the
|
|
156
|
+
`Skill` tool was used.
|
|
156
157
|
|
|
157
158
|
<template>
|
|
158
159
|
⧉ **ASE**: ◉ task: **<ase-task-id/>**, ✪ plan: **<words/>** words, ▶ status: **plan implemented -- hand-off to delete task**
|
|
@@ -10,7 +10,7 @@ disable-model-invocation: false
|
|
|
10
10
|
effort: xhigh
|
|
11
11
|
---
|
|
12
12
|
|
|
13
|
-
@${CLAUDE_SKILL_DIR}/../../meta/ase-
|
|
13
|
+
@${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
|
|
14
14
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
|
|
15
15
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-dialog.md
|
|
16
16
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-getopt.md
|
|
@@ -172,20 +172,22 @@ explicitly requested by this procedure via outputs based on a <template/>!
|
|
|
172
172
|
</template>
|
|
173
173
|
|
|
174
174
|
- If <result/> is `EDIT`:
|
|
175
|
-
Only output the following <template/> and then
|
|
176
|
-
`Skill
|
|
177
|
-
in order to *edit* the updated
|
|
178
|
-
processing the current skill once the
|
|
175
|
+
Only output the following <template/> and then call the
|
|
176
|
+
tool `Skill(skill: "ase:ase-task-edit")` to invoke the
|
|
177
|
+
`ase:ase-task-edit` skill in order to *edit* the updated
|
|
178
|
+
plan. Immediately stop processing the current skill once the
|
|
179
|
+
`Skill` tool was used.
|
|
179
180
|
|
|
180
181
|
<template>
|
|
181
182
|
⧉ **ASE**: ◉ task: **<ase-task-id/>**, ✪ plan: **<words/>** words, ▶ status: **plan updated -- hand-off to edit**
|
|
182
183
|
</template>
|
|
183
184
|
|
|
184
185
|
- If <result/> is `IMPLEMENT`:
|
|
185
|
-
Only output the following <template/> and then
|
|
186
|
-
`Skill
|
|
187
|
-
in order to *implement* the
|
|
188
|
-
|
|
186
|
+
Only output the following <template/> and then call the
|
|
187
|
+
tool `Skill(skill: "ase:ase-task-implement")` to invoke the
|
|
188
|
+
`ase:ase-task-implement` skill in order to *implement* the
|
|
189
|
+
updated plan. Immediately stop processing the current skill
|
|
190
|
+
once the `Skill` tool was used.
|
|
189
191
|
|
|
190
192
|
<template>
|
|
191
193
|
⧉ **ASE**: ◉ task: **<ase-task-id/>**, ✪ plan: **<words/>** words, ▶ status: **plan updated -- hand-off to implement**
|
|
@@ -10,7 +10,7 @@ disable-model-invocation: false
|
|
|
10
10
|
effort: xhigh
|
|
11
11
|
---
|
|
12
12
|
|
|
13
|
-
@${CLAUDE_SKILL_DIR}/../../meta/ase-
|
|
13
|
+
@${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
|
|
14
14
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
|
|
15
15
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-dialog.md
|
|
16
16
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-getopt.md
|
|
@@ -164,10 +164,11 @@ explicitly requested by this procedure via outputs based on a <template/>!
|
|
|
164
164
|
</template>
|
|
165
165
|
|
|
166
166
|
- If <result/> is `EDIT`:
|
|
167
|
-
Only output the following <template/> and then
|
|
168
|
-
`Skill
|
|
169
|
-
in order to *edit* the updated
|
|
170
|
-
processing the current skill once the
|
|
167
|
+
Only output the following <template/> and then call the
|
|
168
|
+
tool `Skill(skill: "ase:ase-task-edit")` to invoke the
|
|
169
|
+
`ase:ase-task-edit` skill in order to *edit* the updated
|
|
170
|
+
plan. Immediately stop processing the current skill once the
|
|
171
|
+
`Skill` tool was used.
|
|
171
172
|
|
|
172
173
|
<template>
|
|
173
174
|
⧉ **ASE**: ◉ task: **<ase-task-id/>**, ✪ plan: **<words/>** words, ▶ status: **plan updated -- hand-off to edit**
|