@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.
- package/dst/ase-config.js +3 -3
- package/dst/ase-diagram.js +1 -1
- package/dst/ase-getopt.js +1 -1
- package/dst/ase-hello.js +27 -0
- package/dst/ase-kv.js +5 -5
- package/dst/ase-persona.js +1 -1
- package/dst/ase-service.js +5 -5
- package/dst/ase-setup.js +1 -1
- package/dst/ase-skills.js +2 -2
- package/dst/ase-statusline.js +1 -1
- package/dst/ase-task.js +10 -9
- package/dst/ase-timestamp.js +1 -1
- package/package.json +1 -1
- package/plugin/.claude/settings.local.json +1 -1
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/.github/plugin/plugin.json +1 -1
- package/plugin/agents/ase-meta-chat.md +1 -1
- package/plugin/agents/ase-meta-diagram.md +5 -5
- package/plugin/agents/ase-meta-search.md +2 -6
- package/plugin/meta/ase-getopt.md +2 -2
- package/plugin/meta/ase-plan.md +2 -2
- package/plugin/meta/ase-skill.md +3 -3
- package/plugin/package.json +1 -1
- package/plugin/skills/ase-arch-analyze/SKILL.md +4 -4
- package/plugin/skills/ase-arch-discover/SKILL.md +4 -2
- package/plugin/skills/ase-code-analyze/SKILL.md +2 -2
- package/plugin/skills/ase-code-craft/SKILL.md +10 -10
- package/plugin/skills/ase-code-explain/SKILL.md +2 -0
- package/plugin/skills/ase-code-insight/SKILL.md +3 -1
- package/plugin/skills/ase-code-lint/SKILL.md +3 -3
- package/plugin/skills/ase-code-refactor/SKILL.md +10 -10
- package/plugin/skills/ase-code-resolve/SKILL.md +17 -17
- package/plugin/skills/ase-docs-proofread/SKILL.md +3 -3
- package/plugin/skills/ase-meta-changes/SKILL.md +133 -62
- package/plugin/skills/ase-meta-commit/SKILL.md +19 -10
- package/plugin/skills/ase-meta-evaluate/SKILL.md +2 -2
- package/plugin/skills/ase-meta-persona/SKILL.md +5 -4
- 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 +2 -0
- package/plugin/skills/ase-task-delete/SKILL.md +7 -5
- package/plugin/skills/ase-task-edit/SKILL.md +19 -17
- package/plugin/skills/ase-task-id/SKILL.md +4 -4
- package/plugin/skills/ase-task-implement/SKILL.md +9 -7
- package/plugin/skills/ase-task-list/SKILL.md +2 -2
- package/plugin/skills/ase-task-preflight/SKILL.md +13 -11
- package/plugin/skills/ase-task-reboot/SKILL.md +12 -10
- package/plugin/skills/ase-task-rename/SKILL.md +8 -5
- package/plugin/skills/ase-task-view/SKILL.md +5 -3
- package/plugin/commands/ase-code-lint/complete.md +0 -9
- package/plugin/commands/ase-code-lint/explain.md +0 -9
- package/plugin/commands/ase-code-lint/nope.md +0 -11
- package/plugin/commands/ase-code-lint/reassess.md +0 -15
- package/plugin/commands/ase-code-lint/recheck.md +0 -9
- 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 `
|
|
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
|
-
`
|
|
65
|
-
from the `ase` MCP
|
|
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 `
|
|
77
|
-
<ase-session-id/>)` tool from the `ase` MCP
|
|
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 `
|
|
95
|
-
session: <ase-session-id/>)` tool from the `ase` MCP
|
|
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 `
|
|
266
|
-
`ase` MCP
|
|
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
|
-
`
|
|
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 `
|
|
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 `
|
|
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
|
|
65
|
-
call the `
|
|
66
|
-
the `ase` MCP
|
|
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
|
-
`
|
|
77
|
-
from the `ase` MCP
|
|
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 `
|
|
89
|
-
<ase-session-id/>)` tool from the `ase` MCP
|
|
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 `
|
|
107
|
-
session: <ase-session-id/>)` tool from the `ase` MCP
|
|
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 `
|
|
314
|
-
`ase` MCP
|
|
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
|
-
`
|
|
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
|
-
`
|
|
325
|
-
you *MUST* additionally call the `
|
|
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
|
-
|
|
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:
|
|
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 `
|
|
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 `
|
|
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
|
|
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*
|
|
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
|
-
|
|
36
|
-
|
|
37
|
-
the <prefix/> is one of the following tags
|
|
38
|
-
and their usual related changes...
|
|
38
|
+
Format
|
|
39
|
+
------
|
|
39
40
|
|
|
40
|
-
|
|
41
|
-
|
|
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
|
-
|
|
48
|
-
|
|
49
|
-
|
|
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.
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
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
|
+
🔵 **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
|
+
🔵 **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
|
+
🔵 **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
|
+
🔵 **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
|
+
🟠 **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
|
-
|
|
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
|
-
|
|
50
|
+
|
|
51
|
+
- `FEATURE`: new functionality or configuration
|
|
46
52
|
- `IMPROVEMENT`: improved functionality or configuration
|
|
47
|
-
- `BUGFIX`:
|
|
48
|
-
- `UPDATE`:
|
|
49
|
-
- `CLEANUP`:
|
|
50
|
-
- `REFACTOR`:
|
|
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
|
-
|
|
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 `
|
|
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
|
|
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 `
|
|
27
|
-
tool from the `ase` MCP
|
|
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 `
|
|
49
|
-
<ase-session-id/>)` tool from the `ase` MCP
|
|
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
|
|
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
|
|
82
|
+
For the consolidation, do *NOT* remove any original information,
|
|
83
83
|
just *MERGE* all overlapping information.
|
|
84
84
|
|
|
85
85
|
</step>
|
|
@@ -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 `
|
|
49
|
-
|
|
50
|
-
`text` output field of this `
|
|
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 `
|
|
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
|
|
72
|
+
MCP server to switch the task to the default task. Only output
|
|
71
73
|
the following <template/>:
|
|
72
74
|
|
|
73
75
|
<template>
|