@rse/ase 0.0.44 → 0.0.48
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 +103 -3
- package/dst/ase-getopt.js +5 -1
- package/dst/ase-hook.js +48 -1
- package/dst/ase-service.js +2 -1
- package/dst/ase-skills.js +184 -44
- package/dst/ase-statusline.js +1 -1
- package/package.json +1 -1
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/.github/plugin/plugin.json +1 -1
- package/plugin/meta/ase-constitution.md +7 -7
- package/plugin/meta/ase-control.md +1 -1
- package/plugin/meta/ase-dialog.md +2 -2
- package/plugin/meta/ase-persona.md +6 -5
- package/plugin/meta/ase-plan.md +3 -3
- package/plugin/meta/ase-skill.md +2 -2
- package/plugin/package.json +1 -1
- package/plugin/skills/ase-arch-analyze/SKILL.md +2 -2
- package/plugin/skills/ase-arch-discover/SKILL.md +14 -3
- package/plugin/skills/ase-code-craft/SKILL.md +4 -4
- package/plugin/skills/ase-code-explain/SKILL.md +1 -1
- package/plugin/skills/ase-code-insight/SKILL.md +1 -1
- package/plugin/skills/ase-code-lint/SKILL.md +8 -8
- package/plugin/skills/ase-code-refactor/SKILL.md +4 -4
- package/plugin/skills/ase-code-resolve/SKILL.md +7 -7
- package/plugin/skills/ase-docs-proofread/SKILL.md +293 -0
- package/plugin/skills/ase-meta-changes/SKILL.md +6 -6
- 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-diagram/SKILL.md +5 -5
- package/plugin/skills/ase-meta-evaluate/SKILL.md +4 -4
- package/plugin/skills/ase-meta-persona/SKILL.md +1 -1
- package/plugin/skills/ase-meta-quorum/SKILL.md +1 -1
- package/plugin/skills/ase-meta-why/SKILL.md +2 -2
- package/plugin/skills/ase-task-edit/SKILL.md +1 -1
- package/plugin/skills/ase-task-preflight/SKILL.md +1 -1
- package/plugin/skills/ase-task-view/SKILL.md +1 -1
|
@@ -5,9 +5,9 @@ description: >
|
|
|
5
5
|
*Always use* when you have to *visualize*
|
|
6
6
|
structure/layout/components/dependencies as Flowchart,
|
|
7
7
|
control-flow/branching/concurrency as Flowchart,
|
|
8
|
-
state-machine/states/transitions as
|
|
9
|
-
data-flow/actors/messages/protocols as
|
|
10
|
-
data-structure/classes/methods as
|
|
8
|
+
state-machine/states/transitions as a UML State Diagram,
|
|
9
|
+
data-flow/actors/messages/protocols as a UML Sequence Diagram,
|
|
10
|
+
data-structure/classes/methods as a UML Class Diagram,
|
|
11
11
|
data-model/entities/relationships as an ER Diagram, or
|
|
12
12
|
metrics/distributions/time-series as XY-Charts.
|
|
13
13
|
user-invocable: false
|
|
@@ -71,7 +71,7 @@ Rules
|
|
|
71
71
|
In other words, after the `diagram` tool call completes, the
|
|
72
72
|
skill *MUST* copy the tool's `text` result *verbatim* into a
|
|
73
73
|
Markdown-fenced code block (triple backticks), directly placed
|
|
74
|
-
in the response text immediately after the MCP tool call
|
|
74
|
+
in the response text immediately after the MCP tool call — the
|
|
75
75
|
user reads the Markdown fenced block in the response, not the
|
|
76
76
|
(truncated) tool call display. Emitting only the tool call without
|
|
77
77
|
the reproduction of the `text` output is a defect: the diagram is
|
|
@@ -95,7 +95,7 @@ Rules
|
|
|
95
95
|
For *comparison diagrams* (e.g., *current vs. proposed*, *before
|
|
96
96
|
vs. after*), render each side as a *separate* Mermaid diagram
|
|
97
97
|
specification via the `diagram` tool from the `ase` MCP service, and
|
|
98
|
-
then stack the two rendered blocks *vertically*
|
|
98
|
+
then stack the two rendered blocks *vertically* — each preceded by
|
|
99
99
|
a bold label (`**BEFORE:**` / `**AFTER:**`, or similar). Do *not*
|
|
100
100
|
attempt side-by-side layout.
|
|
101
101
|
|
|
@@ -116,12 +116,12 @@ multi-*criteria* decision matrix.
|
|
|
116
116
|
- From the <request>$ARGUMENTS</request>, try to derive the criteria
|
|
117
117
|
<criteria-L/> (L=1-M) for the evaluation. Do not output anything.
|
|
118
118
|
|
|
119
|
-
- For each
|
|
119
|
+
- For each criterion <criteria-L/> (L=1-M), decide on its <weight-L/>
|
|
120
120
|
from the value set { 4.00, 2.00, 1.00, 0.50, 0.25 } (from most
|
|
121
121
|
important, over normal, to less important). Do not output anything.
|
|
122
122
|
|
|
123
123
|
- Ensure the final number of criteria is always within the range of
|
|
124
|
-
minimum 8 and maximum 12: if
|
|
124
|
+
minimum 8 and maximum 12: if fewer than 8 criteria were requested,
|
|
125
125
|
use the set of alternatives to decide on additional criteria
|
|
126
126
|
which potentially allow best to triage the alternatives, take the
|
|
127
127
|
<reason/> into account, and use the `ase-meta-search` skill (drawing from
|
|
@@ -146,9 +146,9 @@ multi-*criteria* decision matrix.
|
|
|
146
146
|
</step>
|
|
147
147
|
|
|
148
148
|
4. <step id="STEP 4: Evaluate Alternatives against Criteria">
|
|
149
|
-
- For each alternative <alternative-K/> (K=1-N) and each
|
|
149
|
+
- For each alternative <alternative-K/> (K=1-N) and each criterion
|
|
150
150
|
<criteria-L/> (L=1-M), decide on the evaluation <eval-K-L/>, which
|
|
151
|
-
means how
|
|
151
|
+
means how well the alternative meets the criterion on a Likert-scale
|
|
152
152
|
from { -2, -1, 0, +1, +2 } (from worst, over neutral, to best). Do
|
|
153
153
|
not output anything.
|
|
154
154
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: ase-meta-persona
|
|
3
3
|
argument-hint: "[<persona>]"
|
|
4
4
|
description: >
|
|
5
|
-
Adjust communication style in four
|
|
5
|
+
Adjust communication style in four intensity levels of token usage.
|
|
6
6
|
The <persona> can be either the decorative, eloquent, and explaining "writer",
|
|
7
7
|
the concise, factual, and accurate "engineer" (default),
|
|
8
8
|
the brief, factual, and abbreviating "telegrapher",
|
|
@@ -83,7 +83,7 @@ by querying *multiple* AIs for an *optimal consensus*.
|
|
|
83
83
|
|
|
84
84
|
If not all AIs agree, determine a <disagreement/> information,
|
|
85
85
|
formatted as `(disagreement: <ai/>, <ai/>, [...])` where <ai/> is a
|
|
86
|
-
name of an AI which disagreed
|
|
86
|
+
name of an AI which disagreed with the consensus. Else, if all AIs
|
|
87
87
|
agree, set <disagreement></disagreement>.
|
|
88
88
|
</step>
|
|
89
89
|
|
|
@@ -22,7 +22,7 @@ Your role is an *expert-level assistant*.
|
|
|
22
22
|
|
|
23
23
|
<objective>
|
|
24
24
|
Apply the *Five-Whys* *root-cause analysis* technique to investigate
|
|
25
|
-
|
|
25
|
+
the following problem:
|
|
26
26
|
|
|
27
27
|
<problem>Why $ARGUMENTS?</problem>
|
|
28
28
|
|
|
@@ -48,7 +48,7 @@ addressing surface-level symptoms.
|
|
|
48
48
|
Ask <question/> and document the answer in <answer/> with the following template:
|
|
49
49
|
Don't stop at symptoms, keep digging for systemic issues.
|
|
50
50
|
Multiple root-causes may exist -- explore different branches.
|
|
51
|
-
Consider
|
|
51
|
+
Consider technical, domain-specific, process-related, or organizational causes.
|
|
52
52
|
|
|
53
53
|
<template>
|
|
54
54
|
⚪ **WHY <item/>**: <answer/>
|
|
@@ -277,7 +277,7 @@ explicitly requested by this procedure via outputs based on a <template/>!
|
|
|
277
277
|
|
|
278
278
|
1. *Update timestamp*:
|
|
279
279
|
<if condition="<content/> contains '✎ modified:' AND <content-dirty/> is 'true'">
|
|
280
|
-
|
|
280
|
+
Update <timestamp-modified/> with the current time in
|
|
281
281
|
ISO-style format, which has to be determined by calling the
|
|
282
282
|
`timestamp(format: "yyyy-LL-dd HH:mm")` tool of the `ase`
|
|
283
283
|
MCP service and use the `text` field of its response. Update
|
|
@@ -126,7 +126,7 @@ explicitly requested by this procedure via outputs based on a <template/>!
|
|
|
126
126
|
</template>
|
|
127
127
|
|
|
128
128
|
3. <if condition="<content/> contains '✎ modified:'">
|
|
129
|
-
|
|
129
|
+
Update <timestamp-modified/> with the current time in
|
|
130
130
|
ISO-style format, which has to be determined by calling the
|
|
131
131
|
`timestamp(format: "yyyy-LL-dd HH:mm")` tool of the `ase`
|
|
132
132
|
MCP service and use the `text` field of its response. Update
|
|
@@ -71,7 +71,7 @@ explicitly requested by this procedure via outputs based on a <template/>!
|
|
|
71
71
|
*Render plan*: Only output the following <template/>, so the user
|
|
72
72
|
can read the plan and react to it. Do *not* truncate, summarize,
|
|
73
73
|
or partially show the plan -- always show the complete plan
|
|
74
|
-
<content/> here
|
|
74
|
+
<content/> here.
|
|
75
75
|
|
|
76
76
|
<template>
|
|
77
77
|
⧉ **ASE**: ┈┈┈┈┈┈┈┈────────━━━━━━━━**(** `TASK-PLAN-BEGIN` **)**━━━━━━━━────────┈┈┈┈┈┈┈┈
|