@rse/ase 0.0.52 → 0.0.54

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 (55) hide show
  1. package/dst/ase-config.js +3 -3
  2. package/dst/ase-diagram.js +1 -1
  3. package/dst/ase-getopt.js +1 -1
  4. package/dst/ase-hello.js +27 -0
  5. package/dst/ase-kv.js +5 -5
  6. package/dst/ase-persona.js +1 -1
  7. package/dst/ase-service.js +5 -5
  8. package/dst/ase-setup.js +1 -1
  9. package/dst/ase-skills.js +2 -2
  10. package/dst/ase-statusline.js +1 -1
  11. package/dst/ase-task.js +10 -9
  12. package/dst/ase-timestamp.js +1 -1
  13. package/package.json +1 -1
  14. package/plugin/.claude/settings.local.json +1 -1
  15. package/plugin/.claude-plugin/plugin.json +1 -1
  16. package/plugin/.github/plugin/plugin.json +1 -1
  17. package/plugin/agents/ase-meta-chat.md +1 -1
  18. package/plugin/agents/ase-meta-diagram.md +5 -5
  19. package/plugin/agents/ase-meta-search.md +2 -6
  20. package/plugin/meta/ase-getopt.md +2 -2
  21. package/plugin/meta/ase-plan.md +2 -2
  22. package/plugin/meta/ase-skill.md +3 -3
  23. package/plugin/package.json +1 -1
  24. package/plugin/skills/ase-arch-analyze/SKILL.md +4 -4
  25. package/plugin/skills/ase-arch-discover/SKILL.md +4 -2
  26. package/plugin/skills/ase-code-analyze/SKILL.md +2 -2
  27. package/plugin/skills/ase-code-craft/SKILL.md +10 -10
  28. package/plugin/skills/ase-code-explain/SKILL.md +2 -0
  29. package/plugin/skills/ase-code-insight/SKILL.md +3 -1
  30. package/plugin/skills/ase-code-lint/SKILL.md +3 -3
  31. package/plugin/skills/ase-code-refactor/SKILL.md +10 -10
  32. package/plugin/skills/ase-code-resolve/SKILL.md +17 -17
  33. package/plugin/skills/ase-docs-proofread/SKILL.md +3 -3
  34. package/plugin/skills/ase-meta-changes/SKILL.md +133 -62
  35. package/plugin/skills/ase-meta-commit/SKILL.md +19 -10
  36. package/plugin/skills/ase-meta-evaluate/SKILL.md +2 -2
  37. package/plugin/skills/ase-meta-persona/SKILL.md +5 -4
  38. package/plugin/skills/ase-meta-quorum/SKILL.md +1 -1
  39. package/plugin/skills/ase-meta-search/SKILL.md +1 -1
  40. package/plugin/skills/ase-meta-why/SKILL.md +2 -0
  41. package/plugin/skills/ase-task-delete/SKILL.md +7 -5
  42. package/plugin/skills/ase-task-edit/SKILL.md +19 -17
  43. package/plugin/skills/ase-task-id/SKILL.md +4 -4
  44. package/plugin/skills/ase-task-implement/SKILL.md +9 -7
  45. package/plugin/skills/ase-task-list/SKILL.md +2 -2
  46. package/plugin/skills/ase-task-preflight/SKILL.md +13 -11
  47. package/plugin/skills/ase-task-reboot/SKILL.md +12 -10
  48. package/plugin/skills/ase-task-rename/SKILL.md +8 -5
  49. package/plugin/skills/ase-task-view/SKILL.md +5 -3
  50. package/plugin/commands/ase-code-lint/complete.md +0 -9
  51. package/plugin/commands/ase-code-lint/explain.md +0 -9
  52. package/plugin/commands/ase-code-lint/nope.md +0 -11
  53. package/plugin/commands/ase-code-lint/reassess.md +0 -15
  54. package/plugin/commands/ase-code-lint/recheck.md +0 -9
  55. package/plugin/commands/ase-code-lint/refine.md +0 -9
@@ -52,7 +52,7 @@ explicitly requested by this procedure via outputs based on a <template/>!
52
52
 
53
53
  You *MUST* *NOT* call `Edit`, `Write`, `NotebookEdit`, or any
54
54
  filesystem-modifying tool during this entire skill. The *only*
55
- permitted way to persist artifacts is via `task_save(...)`.
55
+ permitted way to persist artifacts is via `ase_task_save(...)`.
56
56
 
57
57
  1. **Reason About Refactoring**:
58
58
 
@@ -61,8 +61,8 @@ permitted way to persist artifacts is via `task_save(...)`.
61
61
  ">
62
62
  Set <ase-task-id><request/></ase-task-id> (set task id to request)
63
63
  and <request></request> (set request empty), call the
64
- `task_id(id: <ase-task-id/>, session: <ase-session-id/>)` tool
65
- from the `ase` MCP service to switch the task, and then only
64
+ `ase_task_id(id: <ase-task-id/>, session: <ase-session-id/>)` tool
65
+ from the `ase` MCP server to switch the task, and then only
66
66
  output the following <template/>:
67
67
 
68
68
  <template>
@@ -73,8 +73,8 @@ permitted way to persist artifacts is via `task_save(...)`.
73
73
  2. If <request/> has the format `<id/>: <text/>` where <id/> matches
74
74
  the regexp `^[a-zA-Z][a-zA-Z0-9_-]*$`, then set
75
75
  <request><text/></request> and <ase-task-id><id/></ase-task-id>
76
- and call the `task_id(id: <ase-task-id/>, session:
77
- <ase-session-id/>)` tool from the `ase` MCP service to
76
+ and call the `ase_task_id(id: <ase-task-id/>, session:
77
+ <ase-session-id/>)` tool from the `ase` MCP server to
78
78
  implicitly switch the task. Do not output anything.
79
79
 
80
80
  3. If <request/> is empty,
@@ -91,8 +91,8 @@ permitted way to persist artifacts is via `task_save(...)`.
91
91
  ">
92
92
  Set <ase-task-id/> to a unique task id, derived from <request/>,
93
93
  which consists of two lower-case words concatenated with a
94
- `-` character. Then call the `task_id(id: <ase-task-id/>,
95
- session: <ase-session-id/>)` tool from the `ase` MCP service to
94
+ `-` character. Then call the `ase_task_id(id: <ase-task-id/>,
95
+ session: <ase-session-id/>)` tool from the `ase` MCP server to
96
96
  implicitly switch the task. Do not output anything.
97
97
  </if>
98
98
 
@@ -262,15 +262,15 @@ permitted way to persist artifacts is via `task_save(...)`.
262
262
  You *MUST* *NOT* call `Edit`, `Write`, `NotebookEdit`, or any
263
263
  filesystem-modifying tool during this step.
264
264
 
265
- 2. Call the `timestamp(format: "yyyy-LL-dd HH:mm")` tool of the
266
- `ase` MCP service and use the `text` field of its response for
265
+ 2. Call the `ase_timestamp(format: "yyyy-LL-dd HH:mm")` tool of the
266
+ `ase` MCP server and use the `text` field of its response for
267
267
  <timestamp-created/> and <timestamp-modified/> information. Then
268
268
  insert the current <ase-task-id/>, <timestamp-created/>, and
269
269
  <timestamp-modified/> information and calculate the number of
270
270
  words <words/> of <content/>.
271
271
 
272
272
  3. You then *MUST* *save* the resulting plan content with the
273
- `task_save(id: <ase-task-id/>, text: <content/>)`.
273
+ `ase_task_save(id: <ase-task-id/>, text: <content/>)`.
274
274
 
275
275
  4. Output a hint with the following <template/>:
276
276
 
@@ -52,18 +52,18 @@ explicitly requested by this procedure via outputs based on a <template/>!
52
52
 
53
53
  You *MUST* *NOT* call `Edit`, `Write`, `NotebookEdit`, or any
54
54
  filesystem-modifying tool during this entire skill. The *only*
55
- permitted way to persist artifacts is via `task_save(...)`.
55
+ permitted way to persist artifacts is via `ase_task_save(...)`.
56
56
 
57
57
  1. **Reason About Problem**:
58
58
 
59
59
  1. If <problem/> matches the regexp `^[PT]\d+$` (i.e. a bare issue
60
60
  identifier like `P1`, `P2`, `T1`, `T2`, ...),
61
61
  set <problem-id><problem/></problem-id> and
62
- <ase-task-id><problem/></ase-task-id>, call the `task_id(id:
62
+ <ase-task-id><problem/></ase-task-id>, call the `ase_task_id(id:
63
63
  <ase-task-id/>, session: <ase-session-id/>)` tool from the
64
- `ase` MCP service to implicitly switch the task, and then
65
- call the `kv_get(key: "ase-issue-<problem-id/>")` tool of
66
- the `ase` MCP service to retrieve the previously persisted
64
+ `ase` MCP server to implicitly switch the task, and then
65
+ call the `ase_kv_get(key: "ase-issue-<problem-id/>")` tool of
66
+ the `ase` MCP server to retrieve the previously persisted
67
67
  problem description. If the returned `text` is non-empty, set
68
68
  <problem><text/></problem>, otherwise complain to the user that
69
69
  no analyzer result exists for <problem-id/> and stop processing.
@@ -73,8 +73,8 @@ permitted way to persist artifacts is via `task_save(...)`.
73
73
  ">
74
74
  Set <ase-task-id><problem/></ase-task-id> (set task id to problem)
75
75
  and <problem></problem> (set problem empty), call the
76
- `task_id(id: <ase-task-id/>, session: <ase-session-id/>)` tool
77
- from the `ase` MCP service to switch the task, and then only
76
+ `ase_task_id(id: <ase-task-id/>, session: <ase-session-id/>)` tool
77
+ from the `ase` MCP server to switch the task, and then only
78
78
  output the following <template/>:
79
79
 
80
80
  <template>
@@ -85,8 +85,8 @@ permitted way to persist artifacts is via `task_save(...)`.
85
85
  3. If <problem/> has the format `<id/>: <text/>` where <id/> matches
86
86
  the regexp `^[a-zA-Z][a-zA-Z0-9_-]+$`, then set
87
87
  <problem><text/></problem> and <ase-task-id><id/></ase-task-id>
88
- and call the `task_id(id: <ase-task-id/>, session:
89
- <ase-session-id/>)` tool from the `ase` MCP service to
88
+ and call the `ase_task_id(id: <ase-task-id/>, session:
89
+ <ase-session-id/>)` tool from the `ase` MCP server to
90
90
  implicitly switch the task. Do not output anything.
91
91
 
92
92
  4. If <problem/> is empty,
@@ -103,8 +103,8 @@ permitted way to persist artifacts is via `task_save(...)`.
103
103
  ">
104
104
  Set <ase-task-id/> to a unique task id, derived from <problem/>,
105
105
  which consists of two lower-case words concatenated with a
106
- `-` character. Then call the `task_id(id: <ase-task-id/>,
107
- session: <ase-session-id/>)` tool from the `ase` MCP service to
106
+ `-` character. Then call the `ase_task_id(id: <ase-task-id/>,
107
+ session: <ase-session-id/>)` tool from the `ase` MCP server to
108
108
  implicitly switch the task. Do not output anything.
109
109
  </if>
110
110
 
@@ -310,21 +310,21 @@ permitted way to persist artifacts is via `task_save(...)`.
310
310
  You *MUST* *NOT* call `Edit`, `Write`, `NotebookEdit`, or any
311
311
  filesystem-modifying tool during this step.
312
312
 
313
- 2. Call the `timestamp(format: "yyyy-LL-dd HH:mm")` tool of the
314
- `ase` MCP service and use the `text` field of its response for
313
+ 2. Call the `ase_timestamp(format: "yyyy-LL-dd HH:mm")` tool of the
314
+ `ase` MCP server and use the `text` field of its response for
315
315
  <timestamp-created/> and <timestamp-modified/> information. Then
316
316
  insert the current <ase-task-id/>, <timestamp-created/>, and
317
317
  <timestamp-modified/> information and calculate the number of
318
318
  words <words/> of <content/>.
319
319
 
320
320
  3. You then *MUST* *save* the resulting plan content with the
321
- `task_save(id: <ase-task-id/>, text: <content/>)`.
321
+ `ase_task_save(id: <ase-task-id/>, text: <content/>)`.
322
322
 
323
323
  4. If <problem-id/> is set (i.e. the <problem/> was retrieved from
324
- `kv_get` in STEP 1.3 via key `ase-issue-<problem-id/>`),
325
- you *MUST* additionally call the `kv_delete(key:
324
+ `ase_kv_get` in STEP 1.3 via key `ase-issue-<problem-id/>`),
325
+ you *MUST* additionally call the `ase_kv_delete(key:
326
326
  "ase-issue-<problem-id/>")` tool of the `ase` MCP
327
- service to remove the now-resolved analyzer result from the
327
+ server to remove the now-resolved analyzer result from the
328
328
  in-memory key/value store.
329
329
 
330
330
  5. Output a hint with the following <template/>:
@@ -6,7 +6,7 @@ description: >
6
6
  Use when the user wants to "proofread" or "spellcheck" a document.
7
7
  user-invocable: true
8
8
  disable-model-invocation: false
9
- effort: medium
9
+ effort: high
10
10
  ---
11
11
 
12
12
  @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
@@ -98,7 +98,7 @@ documents.
98
98
 
99
99
  3. <step id="STEP 3: Correction">
100
100
 
101
- 1. You *MUST* call the MCP tool `config_set(key: "agent.skill", val:
101
+ 1. You *MUST* call the MCP tool `ase_config_set(key: "agent.skill", val:
102
102
  "ase-docs-proofread", scope: "session:<ase-session-id/>")` of the
103
103
  `ase` MCP server.
104
104
 
@@ -202,7 +202,7 @@ documents.
202
202
 
203
203
  </for>
204
204
 
205
- 3. You *MUST* call the MCP tool `config_delete(key: "agent.skill",
205
+ 3. You *MUST* call the MCP tool `ase_config_delete(key: "agent.skill",
206
206
  scope: "session:<ase-session-id/>")` of the `ase` MCP server.
207
207
 
208
208
  4. You *MUST* *NOT* output any further additional explanations or
@@ -8,7 +8,7 @@ disable-model-invocation: false
8
8
  effort: medium
9
9
  allowed-tools:
10
10
  - "Bash(git log *)"
11
- - "Bash(git status *)"
11
+ - "Bash(git diff *)"
12
12
  - "Bash(git show *)"
13
13
  - "Write"
14
14
  - "Edit"
@@ -24,78 +24,149 @@ Update ChangeLog Entries
24
24
  Update ChangeLog Entries
25
25
  </skill>
26
26
 
27
+ <role>
27
28
  Your role is an experienced, *expert-level software developer*,
28
29
  specialized in *Git version control*.
30
+ </role>
29
31
 
30
32
  <objective>
31
- Help to complete, consolidate and sort *ChangeLog* entries,
32
- based on underlying *Git* commit messages.
33
+ Help to complete, consolidate and sort *ChangeLog* entries of the most
34
+ recent *ChangeLog* section, based on underlying *Git* commits and staged
35
+ changes.
33
36
  </objective>
34
37
 
35
- For this, understand that ChangeLog entries are
36
- always formatted `<prefix/>: <summary/>` where
37
- the <prefix/> is one of the following tags
38
- and their usual related changes...
38
+ Format
39
+ ------
39
40
 
40
- - `FEATURE`: new functionality or configuration
41
- - `IMPROVEMENT`: improved functionality or configuration
42
- - `BUGFIX`: corrected functionality or configuration
43
- - `UPDATE`: updated functionality or configuration
44
- - `CLEANUP`: cleaned up functionality or configuration
45
- - `REFACTOR`: refactored functionality or configuration
41
+ The *ChangeLog* file is a Markdown formatted file named `CHANGELOG.md`,
42
+ and contains sections with headers in the style `N.M.K (YYYY-MM-DD)`.
46
43
 
47
- ...and <summary/> is not longer than about 60-80 characters.
48
- The ChangeLog entries for a single product release version
49
- are also grouped and sorted according to the above <prefix/>es.
44
+ Each *ChangeLog* entry is always formatted as `<prefix/>: <summary/>`
45
+ where the <prefix/> is one of the following tags and their usual related
46
+ changes:
47
+
48
+ - `FEATURE`: new functionality or configuration
49
+ - `IMPROVEMENT`: improved functionality or configuration
50
+ - `BUGFIX`: corrected functionality or configuration
51
+ - `UPDATE`: updated functionality or configuration
52
+ - `CLEANUP`: cleaned up functionality or configuration
53
+ - `REFACTOR`: refactored functionality or configuration
54
+
55
+ The <summary/> is not longer than about 60-80 characters. The
56
+ *ChangeLog* entries for a single product release version are also always
57
+ grouped and sorted according to the above <prefix/> list.
58
+
59
+ Processing
60
+ ----------
50
61
 
51
62
  <flow>
52
63
 
53
- 1. <step id="STEP 1: Locate and read existing ChangeLog entries">
54
- The *ChangeLog* file `CHANGELOG.md` contains sections
55
- with headers in the style `N.M.K (YYYY-MM-DD)`.
56
- The `CHANGELOG.md` file is located in the *current* directory
57
- or one of the *parent* directories.
58
- </step>
59
-
60
- 2. <step id="STEP 2: Read corresponding Git commit log messages">
61
- *Ignore* the current Git *index* and Git *stash* and use the Git *commits* only.
62
- For finding the corresponding Git commits, use the `N.M.K`
63
- from the *second* header in the *ChangeLog* file as
64
- the corresponding Git tag and then check all Git commits
65
- between `HEAD` and this tag.
66
- </step>
67
-
68
- 3. <step id="STEP 3: Complete ChangeLog entries">
69
- Without immediately modifying the `CHANGELOG.md` file,
70
- *complete* the entries in the first (most recent) section only,
71
- by adding the corresponding (most recent) Git commits only.
72
- For each Git commit, reduce the Git commit messages to a single
73
- short sentence.
74
- </step>
75
-
76
- 4. <step id="STEP 4: Consolidate ChangeLog entries">
77
- Without immediately modifying the `CHANGELOG.md` file,
78
- *consolidate* the entries in the first (most recent) section only,
79
- by summarizing and merging closely related entries.
80
- Perform the entry consolidation per prefix group only.
81
- If a changelog <summary/> is too short or is not comprehensible enough
82
- because of too little context, add some context, especially references
83
- to the class/module/package, etc.
84
- </step>
85
-
86
- 5. <step id="STEP 5: Sort ChangeLog entries">
87
- Without immediately modifying the `CHANGELOG.md` file,
88
- *sort* the entries in the first (most recent) section only.
89
- Instead of the chronological commit order, group the entries
90
- by the prefixes.
91
- </step>
92
-
93
- 6. <step id="STEP 6: Write modified ChangeLog entries">
94
- Finally, *update* the `CHANGELOG.md` file with the
95
- completed, consolidated and sorted *ChangeLog* entries.
96
- Also, update the date `YYYY-MM-DD` in the `N.M.K (YYYY-MM-DD)`
97
- headline of the *first* (most recent) section.
98
- </step>
64
+ 1. <step id="STEP 1: Locate and read ChangeLog entries">
65
+
66
+ The *ChangeLog* file `CHANGELOG.md` is located in the *current*
67
+ directory or one of the *parent* directories of the current project.
68
+ Locate and read this file. Store its relative path in <filename/>.
69
+
70
+ You *MUST* *NOT* output anything, except the result with the
71
+ following <template/>:
72
+
73
+ <template>
74
+ &#x1F535; **CHANGELOG FILE:** `<filename/>`
75
+ </template>
76
+
77
+ </step>
78
+
79
+ 2. <step id="STEP 2: Determine artifact changes">
80
+
81
+ You *MUST* *NOT* output anything, except introduce the current
82
+ operation with an output based on the following <template/>:
83
+
84
+ <template>
85
+ &#x1F535; **DETERMINE ARTIFACT CHANGES:**
86
+ </template>
87
+
88
+ To update to entries of the most recent *ChangeLog* section, consult
89
+ the Git *commits* plus the currenly already staged changes in the Git
90
+ *index*, but *ignore* the Git *stash* and and still unstaged changes.
91
+
92
+ For finding the corresponding Git *commits*, use the `N.M.K` from the
93
+ *second* level-2 header in the *ChangeLog* file as the corresponding
94
+ Git tag and then check all Git commits between `HEAD` and this tag
95
+ with the command `git log N.M.K..HEAD --numstat --pretty=format:'%h:
96
+ %s'`.
97
+
98
+ For finding the corresponding staged Git *changes* in the Git
99
+ *index*, use the command `git diff --cached --numstat`, but silently
100
+ skip already existing changes to the `CHANGELOG.md` file itself. If
101
+ still no corresponding *ChangeLog* entry exists for these staged
102
+ Git *changes*, derive a meaningful one from a `git diff --cached`
103
+ command.
104
+
105
+ </step>
106
+
107
+ 3. <step id="STEP 3: Complete ChangeLog entries">
108
+
109
+ You *MUST* *NOT* output anything, except introduce the current
110
+ operation with an output based on the following <template/>:
111
+
112
+ <template>
113
+ &#x1F535; **COMPLETE ENTRIES:**
114
+ </template>
115
+
116
+ Without immediately modifying the `CHANGELOG.md` file, *complete*
117
+ the entries in the first (most recent) section only, by adding the
118
+ corresponding (most recent) Git *commits* and *staged* changes only.
119
+
120
+ For each Git commit, reduce the Git commit messages to a single
121
+ short <summary/> sentence, not longer than 60-80 characters.
122
+
123
+ If a <summary/> is too short or especially is not comprehensible
124
+ enough because of too little context information, add some essential
125
+ context, especially references to the class/module/package, etc.
126
+ For this, if necessary, read the related source files with a
127
+ corresponding `git show` command to get a better understanding of
128
+ this context.
129
+
130
+ </step>
131
+
132
+ 4. <step id="STEP 4: Consolidate and sort ChangeLog entries">
133
+
134
+ You *MUST* *NOT* output anything, except introduce the current
135
+ operation with an output based on the following <template/>:
136
+
137
+ <template>
138
+ &#x1F535; **CONSOLIDATE ENTRIES:**
139
+ </template>
140
+
141
+ Without immediately modifying the `CHANGELOG.md` file, *consolidate*
142
+ the entries in the first (most recent) section only, by summarizing
143
+ and merging closely related entries. Perform the entry consolidation
144
+ per <prefix/> group only.
145
+
146
+ Without immediately modifying the `CHANGELOG.md` file, *sort* the
147
+ entries in the first (most recent) section only. Instead of the
148
+ chronological commit order, group the entries by the <prefix/>es.
149
+
150
+ </step>
151
+
152
+ 5. <step id="STEP 5: Write modified ChangeLog entries">
153
+
154
+ You *MUST* *NOT* output anything, except introduce the current
155
+ operation with an output based on the following <template/>:
156
+
157
+ <template>
158
+ &#x1F7E0; **UPDATING CHANGELOG:**
159
+ </template>
160
+
161
+ Finally, *update* the `CHANGELOG.md` file with the completed,
162
+ consolidated and sorted *ChangeLog* entries. Also, update the date
163
+ `YYYY-MM-DD` in the `N.M.K (YYYY-MM-DD)` header of the *first* (most
164
+ recent) section.
165
+
166
+ You *MUST* *NOT* output any further summary or give any further
167
+ explanations.
168
+
169
+ </step>
99
170
 
100
171
  </flow>
101
172
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  name: ase-meta-commit
3
- argument-hint: ""
4
3
  description: >
5
4
  Determine commit message for staged Git changes.
6
5
  user-invocable: true
@@ -20,8 +19,10 @@ Git Commit
20
19
  Git Commit
21
20
  </skill>
22
21
 
22
+ <role>
23
23
  Your role is an experienced, *expert-level software developer*,
24
24
  specialized in *Git commit messages*.
25
+ </role>
25
26
 
26
27
  <objective>
27
28
  Help to *craft* a *concise commit message* for the
@@ -29,28 +30,34 @@ currently staged Git changes.
29
30
  </objective>
30
31
 
31
32
  <flow>
33
+
32
34
  1. <step id="STEP 1: Find out staged changes">
33
- Run the following command to find out details
34
- of what changes are currently staged for commit:
35
35
 
36
- `git diff --staged`
36
+ Run the following command to find out details of what changes are
37
+ currently staged in the Git *index* for commit:
38
+
39
+ `git diff --cached`
40
+
37
41
  </step>
38
42
 
39
43
  2. <step id="STEP 2: Craft a consolidated commit message">
44
+
40
45
  Craft a commit <message/> in the following format:
41
46
 
42
47
  `<type/>: <summary/>`
43
48
 
44
49
  The known <type/>s and their usual corresponding kind of change are:
45
- - `FEATURE`: new functionality or configuration
50
+
51
+ - `FEATURE`: new functionality or configuration
46
52
  - `IMPROVEMENT`: improved functionality or configuration
47
- - `BUGFIX`: corrected functionality or configuration
48
- - `UPDATE`: updated functionality or configuration
49
- - `CLEANUP`: cleaned up functionality or configuration
50
- - `REFACTOR`: refactored functionality or configuration
53
+ - `BUGFIX`: corrected functionality or configuration
54
+ - `UPDATE`: updated functionality or configuration
55
+ - `CLEANUP`: cleaned up functionality or configuration
56
+ - `REFACTOR`: refactored functionality or configuration
51
57
 
52
58
  The rules for generating <summary/> are:
53
- - Use a maximum of 70 characters
59
+
60
+ - Use a maximum of 60-80 characters
54
61
  - Use imperative mood ("add" not "added")
55
62
  - Use *no* period at the end
56
63
  - Use *no* Markdown formatting
@@ -63,6 +70,8 @@ currently staged Git changes.
63
70
  </template>
64
71
 
65
72
  Do *not* output any further explanation.
73
+
66
74
  </step>
75
+
67
76
  </flow>
68
77
 
@@ -153,9 +153,9 @@ multi-*criteria* decision matrix.
153
153
  not output anything.
154
154
 
155
155
  - Then, calculate the ratings <rating-K/> (K=1-N) for all
156
- alternatives in a single call by invoking the `decision_matrix(matrix:
156
+ alternatives in a single call by invoking the `ase_decision_matrix(matrix:
157
157
  [ [ <weight-1/>, <eval-1-1/>, ..., <eval-1-N/> ], ..., [ <weight-M/>,
158
- <eval-M-1/>, ..., <eval-M-N/> ] ])` tool of the `ase` MCP service.
158
+ <eval-M-1/>, ..., <eval-M-N/> ] ])` tool of the `ase` MCP server.
159
159
  The tool returns an array of N numerical values, where the K-th
160
160
  entry is the product-sum of all weights <weight-L/> (L=1-M) and
161
161
  the evaluation <eval-K-L/> (L=1-M) for alternative <alternative-K/>.
@@ -10,6 +10,7 @@ description: >
10
10
  Use when user says "persona <persona>" or "be <persona>".
11
11
  user-invocable: true
12
12
  disable-model-invocation: false
13
+ effort: medium
13
14
  ---
14
15
 
15
16
  @${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
@@ -23,8 +24,8 @@ Persona Configuration
23
24
  Do not output anything.
24
25
 
25
26
  2. <if condition="<request/> is empty">
26
- 1. Call the `persona(session: <ase-session-id/>)`
27
- tool from the `ase` MCP service and set
27
+ 1. Call the `ase_persona(session: <ase-session-id/>)`
28
+ tool from the `ase` MCP server and set
28
29
  <ase-persona-style/> to its `text` output.
29
30
  Do not output anything.
30
31
 
@@ -45,8 +46,8 @@ Persona Configuration
45
46
  </template>
46
47
 
47
48
  2. Set <ase-persona-style><request/></ase-persona-style> and
48
- call the `persona(style: <ase-persona-style/>, session:
49
- <ase-session-id/>)` tool from the `ase` MCP service. Do not
49
+ call the `ase_persona(style: <ase-persona-style/>, session:
50
+ <ase-session-id/>)` tool from the `ase` MCP server. Do not
50
51
  output anything.
51
52
 
52
53
  3. Output the following <template/>:
@@ -88,7 +88,7 @@ by querying *multiple* AIs for an *optimal consensus*.
88
88
  3. <step id="STEP 3: Summarize Responses">
89
89
 
90
90
  Agents which returned a response with an `ERROR:` prefix are
91
- silently skipped and are treatd as not available.
91
+ silently skipped and are treated as not available.
92
92
 
93
93
  Summarize all responses, of both yourself and all available agents
94
94
  with just 1 to 7 corresponding bullet points and with short
@@ -79,7 +79,7 @@ Your objective is to *search* the *Internet*/*Web* for the following query:
79
79
  calls above into a single response and output it without giving any
80
80
  further explanations.
81
81
 
82
- For the consolidation, do *NOT* remove any orginal information,
82
+ For the consolidation, do *NOT* remove any original information,
83
83
  just *MERGE* all overlapping information.
84
84
 
85
85
  </step>
@@ -18,7 +18,9 @@ Five-Whys Root-Cause Analysis
18
18
  Five-Whys Root-Cause Analysis
19
19
  </skill>
20
20
 
21
+ <role>
21
22
  Your role is an *expert-level assistant*.
23
+ </role>
22
24
 
23
25
  <objective>
24
26
  Apply the *Five-Whys* *root-cause analysis* technique to investigate
@@ -20,7 +20,9 @@ Delete a Task Plan
20
20
  Delete a Task Plan
21
21
  </skill>
22
22
 
23
+ <role>
23
24
  Your role is an experienced, *expert-level assistant*.
25
+ </role>
24
26
  *Delete* the task plan.
25
27
 
26
28
  Procedure
@@ -45,9 +47,9 @@ explicitly requested by this procedure via outputs based on a <template/>!
45
47
 
46
48
  2. **Perform Operation**:
47
49
 
48
- 1. Call the `task_delete(id: <id/>)` tool of the `ase` MCP
49
- service to delete the task plan content and set <text/> to the
50
- `text` output field of this `task_delete` tool call. Do not
50
+ 1. Call the `ase_task_delete(id: <id/>)` tool of the `ase` MCP
51
+ server to delete the task plan content and set <text/> to the
52
+ `text` output field of this `ase_task_delete` tool call. Do not
51
53
  output anything related to this MCP tool call.
52
54
 
53
55
  - If <text/> starts with `ERROR:` or `WARNING:`:
@@ -65,9 +67,9 @@ explicitly requested by this procedure via outputs based on a <template/>!
65
67
  </template>
66
68
 
67
69
  2. <if condition="<id/> is equal <ase-task-id/> AND <ase-task-id/> is not equal 'default'">
68
- Set <ase-task-id>default</ase-task-id>. Call the `task_id(id:
70
+ Set <ase-task-id>default</ase-task-id>. Call the `ase_task_id(id:
69
71
  <ase-task-id/>, session: <ase-session-id/>)` tool from the `ase`
70
- MCP service to switch the task to the default task. Only output
72
+ MCP server to switch the task to the default task. Only output
71
73
  the following <template/>:
72
74
 
73
75
  <template>