@rse/ase 0.0.48 → 0.0.50
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 +1 -4
- package/dst/ase-diagram.js +3 -3
- package/dst/ase-getopt.js +3 -3
- package/dst/ase-hook.js +86 -33
- package/dst/ase-mcp.js +26 -20
- package/dst/ase-service.js +8 -2
- package/dst/ase-statusline.js +19 -23
- package/dst/ase-task.js +60 -1
- package/package.json +1 -1
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/.github/plugin/plugin.json +1 -1
- package/plugin/agents/ase-code-lint.md +370 -0
- package/plugin/agents/ase-docs-proofread.md +100 -0
- package/plugin/agents/ase-meta-chat.md +38 -5
- package/plugin/agents/ase-meta-diagram.md +60 -0
- package/plugin/agents/ase-meta-search.md +3 -5
- package/plugin/meta/ase-persona.md +1 -1
- package/plugin/meta/ase-skill.md +7 -5
- package/plugin/package.json +1 -1
- package/plugin/skills/ase-arch-analyze/SKILL.md +8 -7
- package/plugin/skills/ase-code-analyze/SKILL.md +2 -2
- package/plugin/skills/ase-code-craft/SKILL.md +12 -8
- package/plugin/skills/ase-code-explain/SKILL.md +7 -5
- package/plugin/skills/ase-code-insight/SKILL.md +7 -4
- package/plugin/skills/ase-code-lint/SKILL.md +179 -298
- package/plugin/skills/ase-code-refactor/SKILL.md +11 -7
- package/plugin/skills/ase-code-resolve/SKILL.md +18 -11
- package/plugin/skills/ase-docs-proofread/SKILL.md +29 -103
- package/plugin/skills/ase-meta-chat/SKILL.md +22 -38
- package/plugin/skills/ase-meta-evaluate/SKILL.md +1 -1
- package/plugin/skills/ase-meta-persona/SKILL.md +1 -1
- package/plugin/skills/ase-meta-quorum/SKILL.md +58 -27
- package/plugin/skills/ase-meta-search/SKILL.md +39 -13
- package/plugin/skills/ase-task-rename/SKILL.md +92 -0
- package/plugin/skills/ase-meta-diagram/SKILL.md +0 -101
|
@@ -46,11 +46,11 @@ code, for problems in its *logic* and *semantics* and its related
|
|
|
46
46
|
|
|
47
47
|
- **Practical Relevance Only**:
|
|
48
48
|
Focus on *practically relevant* cases and especially do *not*
|
|
49
|
-
investigate
|
|
49
|
+
investigate theoretical or fictive cases.
|
|
50
50
|
|
|
51
51
|
- **Problem Focus Only**:
|
|
52
52
|
Still focus on the *problem only* and do *not* already
|
|
53
|
-
investigate
|
|
53
|
+
investigate any possible *solution*.
|
|
54
54
|
</step>
|
|
55
55
|
|
|
56
56
|
2. <step id="STEP 2: Show Results">
|
|
@@ -9,6 +9,7 @@ disable-model-invocation: false
|
|
|
9
9
|
effort: high
|
|
10
10
|
allowed-tools:
|
|
11
11
|
- "Skill"
|
|
12
|
+
- "Agent"
|
|
12
13
|
---
|
|
13
14
|
|
|
14
15
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
|
|
@@ -222,14 +223,17 @@ permitted way to persist artifacts is via `task_save(...)`.
|
|
|
222
223
|
it with an optional diagram <optional-diagram/> by building
|
|
223
224
|
a Mermaid specification <mermaid-spec/> (e.g. `flowchart
|
|
224
225
|
TB`, `stateDiagram-v2`, `sequenceDiagram`, `classDiagram`,
|
|
225
|
-
or `erDiagram`, depending on intent) and
|
|
226
|
-
`ase-meta-diagram`
|
|
227
|
-
"ase:ase-meta-diagram",
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
226
|
+
or `erDiagram`, depending on intent) and dispatching the
|
|
227
|
+
rendering to the `ase-meta-diagram` sub-agent by calling
|
|
228
|
+
the tool `Agent(name: "ase:ase-meta-diagram", description:
|
|
229
|
+
"Diagram Rendering", subagent_type: "ase:ase-meta-diagram",
|
|
230
|
+
prompt: <mermaid-spec/>)`, reproducing its returned fenced
|
|
231
|
+
code block verbatim. For *current vs. proposed* comparisons,
|
|
232
|
+
render each side as a *separate* `ase-meta-diagram`
|
|
233
|
+
invocation and stack the rendered blocks *vertically*
|
|
234
|
+
(labels `**Before:**` / `**After:**`); never side-by-side.
|
|
235
|
+
Omit <optional-diagram/> entirely for simple or purely local
|
|
236
|
+
situations.
|
|
233
237
|
|
|
234
238
|
6. Indicate end of reporting by showing the following <template/>:
|
|
235
239
|
|
|
@@ -33,7 +33,7 @@ code and *explain* it in a *brief*, *standardized*, and *concise* way.
|
|
|
33
33
|
<flow>
|
|
34
34
|
|
|
35
35
|
1. <step id="STEP 1: Investigate Code Base">
|
|
36
|
-
Investigate
|
|
36
|
+
Investigate the code. If the code base is large, you *MUST* use
|
|
37
37
|
the `Agent` tool (not inline work) to create multiple sub-agents to
|
|
38
38
|
split the investigation task into appropriate chunks.
|
|
39
39
|
</step>
|
|
@@ -75,10 +75,12 @@ code and *explain* it in a *brief*, *standardized*, and *concise* way.
|
|
|
75
75
|
Build a Mermaid specification <mermaid-spec/>, choosing the Mermaid
|
|
76
76
|
diagram type per intent: `classDiagram` for class/method structure,
|
|
77
77
|
`sequenceDiagram` for actor/message flow, or `flowchart TB` for
|
|
78
|
-
boxes-and-lines component layouts. Then
|
|
79
|
-
`ase-meta-diagram`
|
|
80
|
-
"ase:ase-meta-diagram",
|
|
81
|
-
diagram
|
|
78
|
+
boxes-and-lines component layouts. Then dispatch the rendering to
|
|
79
|
+
the `ase-meta-diagram` sub-agent by calling the tool `Agent(name:
|
|
80
|
+
"ase:ase-meta-diagram", description: "Diagram Rendering", subagent_type:
|
|
81
|
+
"ase:ase-meta-diagram", prompt: <mermaid-spec/>)` and reproduce its
|
|
82
|
+
returned fenced code block verbatim in the response text. Do *not*
|
|
83
|
+
hand-draw.
|
|
82
84
|
|
|
83
85
|
Keep your explanation *brief* and *concise*.
|
|
84
86
|
Output the result with the following <template/>:
|
|
@@ -12,6 +12,7 @@ allowed-tools:
|
|
|
12
12
|
- "Bash(uniq)"
|
|
13
13
|
- "Bash(head)"
|
|
14
14
|
- "Skill"
|
|
15
|
+
- "Agent"
|
|
15
16
|
---
|
|
16
17
|
|
|
17
18
|
@${CLAUDE_SKILL_DIR}/../../meta/ase-control.md
|
|
@@ -93,10 +94,12 @@ Give *insights* into the project through the source code of $ARGUMENTS.
|
|
|
93
94
|
Find all modules (or OOP classes) and build a Mermaid specification
|
|
94
95
|
<mermaid-spec/> for a `flowchart TB` diagram with all modules as
|
|
95
96
|
boxes and the imports between modules as the directed edges. Then
|
|
96
|
-
|
|
97
|
-
`
|
|
98
|
-
|
|
99
|
-
|
|
97
|
+
dispatch the rendering to the `ase-meta-diagram` sub-agent by
|
|
98
|
+
calling the tool `Agent(name: "ase:ase-meta-diagram", description:
|
|
99
|
+
"Diagram Rendering", subagent_type: "ase:ase-meta-diagram", prompt:
|
|
100
|
+
<mermaid-spec/>)` and reproduce its returned fenced code block
|
|
101
|
+
verbatim in the response text. Do not display any further
|
|
102
|
+
explanation except for this diagram.
|
|
100
103
|
</step>
|
|
101
104
|
</flow>
|
|
102
105
|
|