@rse/ase 0.0.55 → 0.0.57

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 (65) 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/agents/ase-meta-search.md +2 -2
  5. package/plugin/etc/markdownlint.yaml +1 -0
  6. package/plugin/meta/ase-constitution.md +2 -1
  7. package/plugin/meta/ase-control.md +6 -6
  8. package/plugin/meta/ase-dialog.md +2 -2
  9. package/plugin/meta/ase-getopt.md +18 -15
  10. package/plugin/meta/ase-skill.md +24 -7
  11. package/plugin/package.json +1 -1
  12. package/plugin/skills/ase-arch-analyze/SKILL.md +3 -10
  13. package/plugin/skills/ase-arch-analyze/help.md +50 -0
  14. package/plugin/skills/ase-arch-discover/SKILL.md +5 -12
  15. package/plugin/skills/ase-arch-discover/help.md +48 -0
  16. package/plugin/skills/ase-code-analyze/SKILL.md +1 -9
  17. package/plugin/skills/ase-code-analyze/help.md +47 -0
  18. package/plugin/skills/ase-code-craft/SKILL.md +29 -19
  19. package/plugin/skills/ase-code-craft/help.md +66 -0
  20. package/plugin/skills/ase-code-explain/SKILL.md +1 -9
  21. package/plugin/skills/ase-code-explain/help.md +43 -0
  22. package/plugin/skills/ase-code-insight/SKILL.md +1 -9
  23. package/plugin/skills/ase-code-insight/help.md +43 -0
  24. package/plugin/skills/ase-code-lint/SKILL.md +1 -9
  25. package/plugin/skills/ase-code-lint/help.md +54 -0
  26. package/plugin/skills/ase-code-refactor/SKILL.md +29 -19
  27. package/plugin/skills/ase-code-refactor/help.md +66 -0
  28. package/plugin/skills/ase-code-resolve/SKILL.md +30 -20
  29. package/plugin/skills/ase-code-resolve/help.md +73 -0
  30. package/plugin/skills/ase-docs-proofread/SKILL.md +3 -12
  31. package/plugin/skills/ase-docs-proofread/help.md +54 -0
  32. package/plugin/skills/ase-meta-changes/SKILL.md +1 -9
  33. package/plugin/skills/ase-meta-changes/help.md +33 -0
  34. package/plugin/skills/ase-meta-chat/SKILL.md +1 -8
  35. package/plugin/skills/ase-meta-chat/help.md +45 -0
  36. package/plugin/skills/ase-meta-commit/SKILL.md +1 -8
  37. package/plugin/skills/ase-meta-commit/help.md +31 -0
  38. package/plugin/skills/ase-meta-evaluate/SKILL.md +5 -13
  39. package/plugin/skills/ase-meta-evaluate/help.md +52 -0
  40. package/plugin/skills/ase-meta-persona/SKILL.md +11 -5
  41. package/plugin/skills/ase-meta-persona/help.md +50 -0
  42. package/plugin/skills/ase-meta-quorum/SKILL.md +1 -8
  43. package/plugin/skills/ase-meta-quorum/help.md +41 -0
  44. package/plugin/skills/ase-meta-search/SKILL.md +1 -8
  45. package/plugin/skills/ase-meta-search/help.md +39 -0
  46. package/plugin/skills/ase-meta-why/SKILL.md +1 -8
  47. package/plugin/skills/ase-meta-why/help.md +39 -0
  48. package/plugin/skills/ase-task-delete/SKILL.md +16 -10
  49. package/plugin/skills/ase-task-delete/help.md +47 -0
  50. package/plugin/skills/ase-task-edit/SKILL.md +59 -33
  51. package/plugin/skills/ase-task-edit/help.md +75 -0
  52. package/plugin/skills/ase-task-id/SKILL.md +7 -6
  53. package/plugin/skills/ase-task-id/help.md +42 -0
  54. package/plugin/skills/ase-task-implement/SKILL.md +27 -16
  55. package/plugin/skills/ase-task-implement/help.md +56 -0
  56. package/plugin/skills/ase-task-list/SKILL.md +6 -5
  57. package/plugin/skills/ase-task-list/help.md +43 -0
  58. package/plugin/skills/ase-task-preflight/SKILL.md +29 -18
  59. package/plugin/skills/ase-task-preflight/help.md +58 -0
  60. package/plugin/skills/ase-task-reboot/SKILL.md +47 -32
  61. package/plugin/skills/ase-task-reboot/help.md +55 -0
  62. package/plugin/skills/ase-task-rename/SKILL.md +5 -10
  63. package/plugin/skills/ase-task-rename/help.md +44 -0
  64. package/plugin/skills/ase-task-view/SKILL.md +15 -9
  65. package/plugin/skills/ase-task-view/help.md +43 -0
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: ase-meta-changes
3
- argument-hint: ""
3
+ argument-hint: "[--help|-h]"
4
4
  description: >
5
5
  Update changes entries in CHANGELOG.md files
6
6
  user-invocable: true
@@ -17,18 +17,10 @@ allowed-tools:
17
17
  @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
18
18
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
19
19
 
20
- Update ChangeLog Entries
21
- ========================
22
-
23
20
  <skill name="ase-meta-changes">
24
21
  Update ChangeLog Entries
25
22
  </skill>
26
23
 
27
- <role>
28
- Your role is an experienced, *expert-level software developer*,
29
- specialized in *Git version control*.
30
- </role>
31
-
32
24
  <objective>
33
25
  Help to complete, consolidate and sort *ChangeLog* entries of the most
34
26
  recent *ChangeLog* section, based on underlying *Git* commits and staged
@@ -0,0 +1,33 @@
1
+
2
+ ## NAME
3
+
4
+ `ase-meta-changes` - Update ChangeLog Entries
5
+
6
+ ## SYNOPSIS
7
+
8
+ `ase-meta-changes`
9
+ [`--help`|`-h`]
10
+
11
+ ## DESCRIPTION
12
+
13
+ The `ase-meta-changes` skill helps to *complete*, *consolidate*, and
14
+ *sort* the entries of the most recent section of a `CHANGELOG.md`
15
+ file, based on the underlying *Git* commits and the currently staged
16
+ changes in the Git *index*.
17
+
18
+ Each entry is formatted as `<prefix>: <summary>` where *prefix* is
19
+ one of `FEATURE`, `IMPROVEMENT`, `BUGFIX`, `UPDATE`, `CLEANUP`, or
20
+ `REFACTOR`. Entries are grouped and sorted by this prefix. The
21
+ date in the section header is also updated to the current date.
22
+
23
+ ## EXAMPLES
24
+
25
+ Update the most recent ChangeLog section:
26
+
27
+ ```text
28
+ ❯ /ase-meta-changes
29
+ ```
30
+
31
+ ## SEE ALSO
32
+
33
+ `ase-meta-commit`, `ase-docs-proofread`.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: ase-meta-chat
3
- argument-hint: "<llm> <query>"
3
+ argument-hint: "[--help|-h] <llm> <query>"
4
4
  description: >
5
5
  Query foreign LLM for chat.
6
6
  Use this skill if a foreign LLM like OpenAI ChatGPT, Google Gemini,
@@ -15,17 +15,10 @@ allowed-tools:
15
15
  @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
16
16
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
17
17
 
18
- Query Foreign LLM for Chat
19
- ==========================
20
-
21
18
  <skill name="ase-meta-chat">
22
19
  Query Foreign LLM for Chat
23
20
  </skill>
24
21
 
25
- <role>
26
- Your role is to act as a proxy to query a foreign LLM for a single chat message.
27
- </role>
28
-
29
22
  <objective>
30
23
  Query foreign LLM for: <query>$ARGUMENTS</query>
31
24
  </objective>
@@ -0,0 +1,45 @@
1
+
2
+ ## NAME
3
+
4
+ `ase-meta-chat` - Query Foreign LLM for Chat
5
+
6
+ ## SYNOPSIS
7
+
8
+ `ase-meta-chat`
9
+ [`--help`|`-h`]
10
+ *llm* *query*
11
+
12
+ ## DESCRIPTION
13
+
14
+ The `ase-meta-chat` skill queries a *foreign LLM* (such as OpenAI
15
+ ChatGPT, Google Gemini, DeepSeek, xAI Grok, Z.AI GLM, or Alibaba
16
+ Qwen) with a single chat message. The underlying `ase:ase-meta-chat`
17
+ sub-agent is invoked and its plain response is shown back verbatim
18
+ without any further interpretation.
19
+
20
+ ## ARGUMENTS
21
+
22
+ *llm*:
23
+ Identifier of the foreign LLM to query, e.g. `chatgpt`,
24
+ `gemini`, `deepseek`, `grok`, `glm`, or `qwen`.
25
+
26
+ *query*:
27
+ The chat message to send to the foreign LLM.
28
+
29
+ ## EXAMPLES
30
+
31
+ Ask ChatGPT a quick question:
32
+
33
+ ```text
34
+ ❯ /ase-meta-chat chatgpt What is the best way to handle UTF-8 BOMs in JSON?
35
+ ```
36
+
37
+ Ask Gemini for a brief comparison:
38
+
39
+ ```text
40
+ ❯ /ase-meta-chat gemini Compare gRPC and REST in one paragraph.
41
+ ```
42
+
43
+ ## SEE ALSO
44
+
45
+ `ase-meta-quorum`, `ase-meta-search`.
@@ -1,5 +1,6 @@
1
1
  ---
2
2
  name: ase-meta-commit
3
+ argument-hint: "[--help|-h]"
3
4
  description: >
4
5
  Determine commit message for staged Git changes.
5
6
  user-invocable: true
@@ -12,18 +13,10 @@ allowed-tools:
12
13
  @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
13
14
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
14
15
 
15
- Git Commit
16
- ==========
17
-
18
16
  <skill name="ase-meta-commit">
19
17
  Git Commit
20
18
  </skill>
21
19
 
22
- <role>
23
- Your role is an experienced, *expert-level software developer*,
24
- specialized in *Git commit messages*.
25
- </role>
26
-
27
20
  <objective>
28
21
  Help to *craft* a *concise commit message* for the
29
22
  currently staged Git changes.
@@ -0,0 +1,31 @@
1
+
2
+ ## NAME
3
+
4
+ `ase-meta-commit` - Git Commit Message
5
+
6
+ ## SYNOPSIS
7
+
8
+ `ase-meta-commit`
9
+ [`--help`|`-h`]
10
+
11
+ ## DESCRIPTION
12
+
13
+ The `ase-meta-commit` skill helps to *craft* a *concise commit
14
+ message* for the currently staged Git changes. It inspects the
15
+ output of `git diff --cached` and produces a single-line message of
16
+ the form `<type>: <summary>` where *type* is one of `FEATURE`,
17
+ `IMPROVEMENT`, `BUGFIX`, `UPDATE`, `CLEANUP`, or `REFACTOR`, and
18
+ *summary* is a 60-80 character imperative-mood summary without
19
+ trailing period or Markdown formatting.
20
+
21
+ ## EXAMPLES
22
+
23
+ Craft a commit message for the currently staged changes:
24
+
25
+ ```text
26
+ ❯ /ase-meta-commit
27
+ ```
28
+
29
+ ## SEE ALSO
30
+
31
+ `ase-meta-changes`.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: ase-meta-evaluate
3
- argument-hint: "<request>"
3
+ argument-hint: "[--help|-h] <request>"
4
4
  description: >
5
5
  Evaluate alternatives through a weighted multi-criteria decision
6
6
  matrix. Use when the user calls for the *evaluation* of
@@ -14,18 +14,10 @@ effort: high
14
14
  @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
15
15
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
16
16
 
17
- Evaluate Alternatives
18
- =====================
19
-
20
17
  <skill name="ase-meta-evaluate">
21
18
  Evaluate Alternatives
22
19
  </skill>
23
20
 
24
- <role>
25
- Your role is an experienced, *expert-level assistant*,
26
- specialized in *evaluating alternatives*.
27
- </role>
28
-
29
21
  <objective>
30
22
  *Evaluate* *alternatives* through a weighted
31
23
  multi-*criteria* decision matrix.
@@ -154,8 +146,8 @@ multi-*criteria* decision matrix.
154
146
 
155
147
  - Then, calculate the ratings <rating-K/> (K=1-N) for all
156
148
  alternatives in a single call by invoking the `ase_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 server.
149
+ [ [ <weight-1/>, <eval-1-1/>, ..., <eval-N-1/> ], ..., [ <weight-M/>,
150
+ <eval-1-M/>, ..., <eval-N-M/> ] ])` tool of the `ase` MCP server.
159
151
  The tool returns an array of N numerical values, where the K-th
160
152
  entry is the product-sum of all weights <weight-L/> (L=1-M) and
161
153
  the evaluation <eval-K-L/> (L=1-M) for alternative <alternative-K/>.
@@ -173,9 +165,9 @@ multi-*criteria* decision matrix.
173
165
 
174
166
  | ⦿ *Criteria* | ⚖ *Weight* | ⚑ **<alternative-1/>** | [...alternatives 2-(N-1)...] | ⚑ **<alternative-N/>** |
175
167
  | :------------ | ----------: | ---------------------: | ---------------------------: | ---------------------: |
176
- | <criteria-1/> | <weight-1/> | <eval-1-1/> | [...evals 1-2..1-(N-1)...] | <eval-1-N/> |
168
+ | <criteria-1/> | <weight-1/> | <eval-1-1/> | [...evals 2-1..(N-1)-1...] | <eval-N-1/> |
177
169
  [...criteria L=2-(M-1) for M>2...]
178
- | <criteria-M/> | <weight-M/> | <eval-M-1/> | [...evals M-2..M-(N-1)...] | <eval-M-N/> |
170
+ | <criteria-M/> | <weight-M/> | <eval-1-M/> | [...evals 2-M..(N-1)-M...] | <eval-N-M/> |
179
171
  | **RATING** | | **<rating-1/>** | [...ratings 2-(N-1)...] | **<rating-N/>** |
180
172
  </template>
181
173
  </step>
@@ -0,0 +1,52 @@
1
+
2
+ ## NAME
3
+
4
+ `ase-meta-evaluate` - Evaluate Alternatives
5
+
6
+ ## SYNOPSIS
7
+
8
+ `ase-meta-evaluate`
9
+ [`--help`|`-h`]
10
+ *request*
11
+
12
+ ## DESCRIPTION
13
+
14
+ The `ase-meta-evaluate` skill evaluates two or more *alternatives*
15
+ through a *weighted multi-criteria decision matrix*. From the
16
+ *request*, the skill derives the reason for the evaluation, the
17
+ alternatives, and the criteria, fills in additional criteria up to a
18
+ range of 8-12 (using `ase-meta-search` where helpful), assigns weights
19
+ from `{ 4.00, 2.00, 1.00, 0.50, 0.25 }`, evaluates each alternative
20
+ against each criterion on a `{ -2, -1, 0, +1, +2 }` Likert scale, and
21
+ computes the final ratings via the `ase_decision_matrix` MCP tool.
22
+
23
+ The result is reported as a Markdown decision matrix along with the
24
+ single *BEST ALTERNATIVE*, including a warning if multiple
25
+ alternatives tie, if the distance to the second best is small, or if
26
+ all alternatives rate negatively.
27
+
28
+ ## ARGUMENTS
29
+
30
+ *request*:
31
+ A description of what should be evaluated, including the
32
+ alternatives and, optionally, the criteria to consider.
33
+
34
+ ## EXAMPLES
35
+
36
+ Compare logging libraries for a TypeScript project:
37
+
38
+ ```text
39
+ ❯ /ase-meta-evaluate Compare pino, winston, and bunyan as logging libraries.
40
+ ```
41
+
42
+ Evaluate database options with hinted criteria:
43
+
44
+ ```text
45
+ ❯ /ase-meta-evaluate Compare PostgreSQL, MySQL, and SQLite for an
46
+ embedded use case; criteria include footprint and write throughput.
47
+ ```
48
+
49
+ ## SEE ALSO
50
+
51
+ `ase-meta-quorum`, `ase-meta-search`, `ase-arch-discover`,
52
+ `ase-meta-why`.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: ase-meta-persona
3
- argument-hint: "[<persona>]"
3
+ argument-hint: "[--help|-h] [<persona>]"
4
4
  description: >
5
5
  Adjust communication style in four intensity levels of token usage.
6
6
  The <persona> can be either the decorative, eloquent, and explaining "writer",
@@ -16,15 +16,21 @@ effort: medium
16
16
  @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
17
17
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
18
18
 
19
+ <skill name="ase-meta-persona">
19
20
  Persona Configuration
20
- =====================
21
+ </skill>
22
+
23
+ <objective>
24
+ *Configure* the *persona style* of the agent to adjust the communication
25
+ style and token usage intensity.
26
+ </objective>
21
27
 
22
28
  1. Determine request:
23
29
  <request>$ARGUMENTS</request>
24
30
  Do not output anything.
25
31
 
26
32
  2. <if condition="<request/> is empty">
27
- 1. Call the `ase_persona(session: <ase-session-id/>)`
33
+ 1. Call the `ase_persona(session: "<ase-session-id/>")`
28
34
  tool from the `ase` MCP server and set
29
35
  <ase-persona-style/> to its `text` output.
30
36
  Do not output anything.
@@ -46,8 +52,8 @@ Persona Configuration
46
52
  </template>
47
53
 
48
54
  2. Set <ase-persona-style><request/></ase-persona-style> and
49
- call the `ase_persona(style: <ase-persona-style/>, session:
50
- <ase-session-id/>)` tool from the `ase` MCP server. Do not
55
+ call the `ase_persona(style: "<ase-persona-style/>", session:
56
+ "<ase-session-id/>")` tool from the `ase` MCP server. Do not
51
57
  output anything.
52
58
 
53
59
  3. Output the following <template/>:
@@ -0,0 +1,50 @@
1
+
2
+ ## NAME
3
+
4
+ `ase-meta-persona` - Persona Configuration
5
+
6
+ ## SYNOPSIS
7
+
8
+ `ase-meta-persona`
9
+ [`--help`|`-h`]
10
+ [*persona*]
11
+
12
+ ## DESCRIPTION
13
+
14
+ The `ase-meta-persona` skill gets or sets the active *communication
15
+ style* (persona) of the assistant. Four intensity levels of token
16
+ usage are supported, from most verbose to most terse:
17
+
18
+ - `writer`: decorative, eloquent, and explaining
19
+ - `engineer`: concise, factual, and accurate (default)
20
+ - `telegrapher`: brief, factual, and abbreviating
21
+ - `caveman`: terse, rough, and stuttering
22
+
23
+ Without arguments, the skill reports the currently active persona.
24
+ With a *persona* argument, it switches to that persona via the
25
+ `ase_persona` MCP tool.
26
+
27
+ ## ARGUMENTS
28
+
29
+ *persona*:
30
+ The persona to activate; one of `writer`, `engineer`,
31
+ `telegrapher`, or `caveman`. If omitted, the currently active
32
+ persona is reported.
33
+
34
+ ## EXAMPLES
35
+
36
+ Show the currently active persona:
37
+
38
+ ```text
39
+ ❯ /ase-meta-persona
40
+ ```
41
+
42
+ Switch to the telegrapher persona:
43
+
44
+ ```text
45
+ ❯ /ase-meta-persona telegrapher
46
+ ```
47
+
48
+ ## SEE ALSO
49
+
50
+ `ase-task-id`.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: ase-meta-quorum
3
- argument-hint: "<question>"
3
+ argument-hint: "[--help|-h] <question>"
4
4
  description: >
5
5
  Query Multiple AIs for Quorum Answer.
6
6
  user-invocable: true
@@ -14,17 +14,10 @@ allowed-tools:
14
14
  @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
15
15
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
16
16
 
17
- Query Multiple AIs for Quorum Answer
18
- ====================================
19
-
20
17
  <skill name="ase-meta-quorum">
21
18
  Query Multiple AIs for Quorum Answer
22
19
  </skill>
23
20
 
24
- <role>
25
- Your role is an *expert-level assistant*.
26
- </role>
27
-
28
21
  <objective>
29
22
  Find a *quorum answer* on an arbitrary question,
30
23
  by querying *multiple* AIs for an *optimal consensus*.
@@ -0,0 +1,41 @@
1
+
2
+ ## NAME
3
+
4
+ `ase-meta-quorum` - Query Multiple AIs for Quorum Answer
5
+
6
+ ## SYNOPSIS
7
+
8
+ `ase-meta-quorum`
9
+ [`--help`|`-h`]
10
+ *question*
11
+
12
+ ## DESCRIPTION
13
+
14
+ The `ase-meta-quorum` skill finds a *quorum answer* on an arbitrary
15
+ question by querying *multiple* AIs (Anthropic Claude itself plus
16
+ OpenAI ChatGPT, Google Gemini, DeepSeek, xAI Grok, Z.AI GLM, and
17
+ Alibaba Qwen) for an *optimal consensus*.
18
+
19
+ The skill first previews its own answer, then dispatches the same
20
+ query to each available foreign LLM via the `ase:ase-meta-chat`
21
+ sub-agent, summarizes all responses, derives a *consensus rate* on
22
+ a Likert scale of `0..N` (where `N` is the number of available
23
+ responders), and reports the consensus answer alongside the
24
+ complete, unmodified individual responses.
25
+
26
+ ## ARGUMENTS
27
+
28
+ *question*:
29
+ The question to ask all available AIs.
30
+
31
+ ## EXAMPLES
32
+
33
+ Ask the quorum a factual question:
34
+
35
+ ```text
36
+ ❯ /ase-meta-quorum What are the most common causes of memory leaks in Node.js?
37
+ ```
38
+
39
+ ## SEE ALSO
40
+
41
+ `ase-meta-chat`, `ase-meta-search`, `ase-meta-evaluate`.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: ase-meta-search
3
- argument-hint: "<query>"
3
+ argument-hint: "[--help|-h] <query>"
4
4
  description: >
5
5
  Search the Internet/Web with a query.
6
6
  Prefer this skill before using Perplexity, Brave and WebSearch.
@@ -18,17 +18,10 @@ allowed-tools:
18
18
  @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
19
19
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
20
20
 
21
- Search the Internet/Web
22
- =======================
23
-
24
21
  <skill name="ase-meta-search">
25
22
  Search the Internet/Web
26
23
  </skill>
27
24
 
28
- <role>
29
- Your role is an expert-level *web specialist*.
30
- </role>
31
-
32
25
  <objective>
33
26
  Your objective is to *search* the *Internet*/*Web* for the following query:
34
27
  <query>$ARGUMENTS</query>
@@ -0,0 +1,39 @@
1
+
2
+ ## NAME
3
+
4
+ `ase-meta-search` - Search the Internet/Web
5
+
6
+ ## SYNOPSIS
7
+
8
+ `ase-meta-search`
9
+ [`--help`|`-h`]
10
+ *query*
11
+
12
+ ## DESCRIPTION
13
+
14
+ The `ase-meta-search` skill searches the *Internet*/*Web* for the
15
+ given *query*. It dispatches the query in parallel to all available
16
+ search services (Perplexity, Brave, Exa, and Claude's built-in
17
+ `WebSearch`) via the `ase:ase-meta-search` sub-agent and consolidates
18
+ all responses into a single answer without removing original
19
+ information.
20
+
21
+ This skill should be preferred over directly invoking Perplexity,
22
+ Brave, or `WebSearch` individually.
23
+
24
+ ## ARGUMENTS
25
+
26
+ *query*:
27
+ The search query to dispatch to the search services.
28
+
29
+ ## EXAMPLES
30
+
31
+ Search the Web for a topic:
32
+
33
+ ```text
34
+ ❯ /ase-meta-search latest stable release of TypeScript and release notes
35
+ ```
36
+
37
+ ## SEE ALSO
38
+
39
+ `ase-meta-chat`, `ase-meta-quorum`, `ase-arch-discover`.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: ase-meta-why
3
- argument-hint: "<fact>"
3
+ argument-hint: "[--help|-h] <fact>"
4
4
  description: >
5
5
  Five-Whys Root-Cause Analysis.
6
6
  user-invocable: true
@@ -11,17 +11,10 @@ effort: medium
11
11
  @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
12
12
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
13
13
 
14
- Five-Whys Root-Cause Analysis
15
- =============================
16
-
17
14
  <skill name="ase-meta-why">
18
15
  Five-Whys Root-Cause Analysis
19
16
  </skill>
20
17
 
21
- <role>
22
- Your role is an *expert-level assistant*.
23
- </role>
24
-
25
18
  <objective>
26
19
  Apply the *Five-Whys* *root-cause analysis* technique to investigate
27
20
  the following problem:
@@ -0,0 +1,39 @@
1
+
2
+ ## NAME
3
+
4
+ `ase-meta-why` - Five-Whys Root-Cause Analysis
5
+
6
+ ## SYNOPSIS
7
+
8
+ `ase-meta-why`
9
+ [`--help`|`-h`]
10
+ *fact*
11
+
12
+ ## DESCRIPTION
13
+
14
+ The `ase-meta-why` skill applies the *Five-Whys* *root-cause
15
+ analysis* technique to the supplied *fact*. The skill iteratively
16
+ asks "why" — up to five times — to drill down from surface symptoms
17
+ to the underlying root cause, considering technical, domain-specific,
18
+ process-related, and organizational causes. After identifying the
19
+ root cause it proposes a *SOLUTION* that addresses it, optionally
20
+ including concrete source code changes.
21
+
22
+ ## ARGUMENTS
23
+
24
+ *fact*:
25
+ The observed *fact* (symptom, problem, or surprising outcome)
26
+ whose root cause should be investigated. The skill implicitly
27
+ prepends "Why" to form the initial question.
28
+
29
+ ## EXAMPLES
30
+
31
+ Investigate the root cause of a build failure:
32
+
33
+ ```text
34
+ ❯ /ase-meta-why the CI build is intermittently failing on macOS runners
35
+ ```
36
+
37
+ ## SEE ALSO
38
+
39
+ `ase-code-analyze`, `ase-code-resolve`, `ase-arch-analyze`.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: ase-task-delete
3
- argument-hint: "[<id>]"
3
+ argument-hint: "[--help|-h] [<id>]"
4
4
  description: >
5
5
  Delete the current or given task plan.
6
6
  Use when the user calls to "delete", "remove" or "clear" the
@@ -13,17 +13,13 @@ effort: low
13
13
  @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
14
14
  @${CLAUDE_SKILL_DIR}/../../meta/ase-skill.md
15
15
 
16
- Delete a Task Plan
17
- ==================
18
-
19
16
  <skill name="ase-task-delete">
20
17
  Delete a Task Plan
21
18
  </skill>
22
19
 
23
- <role>
24
- Your role is an experienced, *expert-level assistant*.
25
- </role>
20
+ <objective>
26
21
  *Delete* the task plan.
22
+ </objective>
27
23
 
28
24
  Procedure
29
25
  ---------
@@ -36,7 +32,8 @@ explicitly requested by this procedure via outputs based on a <template/>!
36
32
 
37
33
  1. **Determine Task:**
38
34
 
39
- 1. Set <id>$ARGUMENTS</id> initially.
35
+ 1. Set <id>$ARGUMENTS</id> initially, with any leading and trailing
36
+ whitespace stripped.
40
37
  Inherit the always existing <ase-task-id/> from the current context.
41
38
  Do not output anything.
42
39
 
@@ -45,9 +42,18 @@ explicitly requested by this procedure via outputs based on a <template/>!
45
42
  Do not output anything.
46
43
  </if>
47
44
 
45
+ 3. <if condition="<id/> does NOT match the regexp `^[a-zA-Z][a-zA-Z0-9_-]*$`">
46
+ Only output the following <template/> and then immediately
47
+ *STOP* processing the entire current skill:
48
+
49
+ <template>
50
+ ⧉ **ASE**: ☻ skill: **ase-task-delete**, ▶ ERROR: expected single `[<id>]` argument
51
+ </template>
52
+ </if>
53
+
48
54
  2. **Perform Operation**:
49
55
 
50
- 1. Call the `ase_task_delete(id: <id/>)` tool of the `ase` MCP
56
+ 1. Call the `ase_task_delete(id: "<id/>")` tool of the `ase` MCP
51
57
  server to delete the task plan content and set <text/> to the
52
58
  `text` output field of this `ase_task_delete` tool call. Do not
53
59
  output anything related to this MCP tool call.
@@ -68,7 +74,7 @@ explicitly requested by this procedure via outputs based on a <template/>!
68
74
 
69
75
  2. <if condition="<id/> is equal <ase-task-id/> AND <ase-task-id/> is not equal 'default'">
70
76
  Set <ase-task-id>default</ase-task-id>. Call the `ase_task_id(id:
71
- <ase-task-id/>, session: <ase-session-id/>)` tool from the `ase`
77
+ "<ase-task-id/>", session: "<ase-session-id/>")` tool from the `ase`
72
78
  MCP server to switch the task to the default task. Only output
73
79
  the following <template/>:
74
80