@rse/ase 0.0.59 → 0.0.60
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/package.json +1 -1
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/.github/plugin/plugin.json +1 -1
- package/plugin/package.json +1 -1
- package/plugin/skills/ase-code-craft/SKILL.md +8 -2
- package/plugin/skills/ase-code-craft/help.md +8 -0
- package/plugin/skills/ase-code-refactor/SKILL.md +8 -2
- package/plugin/skills/ase-code-refactor/help.md +8 -0
- package/plugin/skills/ase-code-resolve/SKILL.md +8 -2
- package/plugin/skills/ase-code-resolve/help.md +8 -0
- package/plugin/skills/ase-task-delete/SKILL.md +1 -1
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"homepage": "http://github.com/rse/ase",
|
|
7
7
|
"repository": { "url": "git+https://github.com/rse/ase.git", "type": "git" },
|
|
8
8
|
"bugs": { "url": "http://github.com/rse/ase/issues" },
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.60",
|
|
10
10
|
"license": "GPL-3.0-only",
|
|
11
11
|
"author": {
|
|
12
12
|
"name": "Dr. Ralf S. Engelschall",
|
package/plugin/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"homepage": "http://github.com/rse/ase",
|
|
7
7
|
"repository": { "url": "git+https://github.com/rse/ase.git", "type": "git" },
|
|
8
8
|
"bugs": { "url": "http://github.com/rse/ase/issues" },
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.60",
|
|
10
10
|
"license": "GPL-3.0-only",
|
|
11
11
|
"author": {
|
|
12
12
|
"name": "Dr. Ralf S. Engelschall",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: ase-code-craft
|
|
3
|
-
argument-hint: "[--help|-h] [--auto|-a] [--dry|-d] [--next|-n <option>[,...]] [<task-id>:] <feature>"
|
|
3
|
+
argument-hint: "[--help|-h] [--auto|-a] [--dry|-d] [--quick|-Q] [--next|-n <option>[,...]] [<task-id>:] <feature>"
|
|
4
4
|
description: >
|
|
5
5
|
Craft Source Code:
|
|
6
6
|
Use when user wants to create or craft a new feature from scratch.
|
|
@@ -23,10 +23,16 @@ Craft Source Code
|
|
|
23
23
|
|
|
24
24
|
<expand name="getopt"
|
|
25
25
|
arg1="ase-code-craft"
|
|
26
|
-
arg2="--auto|-a --dry|-d --next|-n=(none|DONE|EDIT|PREFLIGHT|IMPLEMENT)...">
|
|
26
|
+
arg2="--auto|-a --dry|-d --quick|-Q --next|-n=(none|DONE|EDIT|PREFLIGHT|IMPLEMENT)...">
|
|
27
27
|
$ARGUMENTS
|
|
28
28
|
</expand>
|
|
29
29
|
|
|
30
|
+
<if condition="<getopt-option-quick/> is equal `true`">
|
|
31
|
+
The `--quick`/`-Q` flag is a *shorthand alias*: set <getopt-option-auto/>
|
|
32
|
+
to `true`, <getopt-option-dry/> to `true`, and <getopt-option-next/> to
|
|
33
|
+
`IMPLEMENT,DELETE`. Do not output anything.
|
|
34
|
+
</if>
|
|
35
|
+
|
|
30
36
|
<objective>
|
|
31
37
|
From scratch *craft* the following feature:
|
|
32
38
|
<feature><getopt-arguments/></feature>
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
[`--help`|`-h`]
|
|
10
10
|
[`--auto`|`-a`]
|
|
11
11
|
[`--dry`|`-d`]
|
|
12
|
+
[`--quick`|`-Q`]
|
|
12
13
|
[`--next`|`-n` *option*[,...]]
|
|
13
14
|
[*task-id*:] *feature*
|
|
14
15
|
|
|
@@ -39,6 +40,13 @@ plan via `ase_task_save` and then hands off to `ase-task-edit`,
|
|
|
39
40
|
type-checker, or program execution) once the source files have
|
|
40
41
|
been modified.
|
|
41
42
|
|
|
43
|
+
`--quick`|`-Q`:
|
|
44
|
+
Shorthand alias for `-a -d -n IMPLEMENT,DELETE`: automatically pick
|
|
45
|
+
the recommended feature approach, compose the plan *without* the
|
|
46
|
+
`※ VERIFICATION` section, immediately hand off to `ase-task-implement`,
|
|
47
|
+
and finally `ase-task-delete` the now-consumed plan. This gives a
|
|
48
|
+
single, fast *one-shot* crafting mode.
|
|
49
|
+
|
|
42
50
|
`--next`|`-n` *option*[,...]:
|
|
43
51
|
Automatically choose the next step after composing the plan.
|
|
44
52
|
*option* is a single token or a *comma-separated chronological
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: ase-code-refactor
|
|
3
|
-
argument-hint: "[--help|-h] [--auto|-a] [--dry|-d] [--next|-n <option>[,...]] [<task-id>:] <request>"
|
|
3
|
+
argument-hint: "[--help|-h] [--auto|-a] [--dry|-d] [--quick|-Q] [--next|-n <option>[,...]] [<task-id>:] <request>"
|
|
4
4
|
description: >
|
|
5
5
|
Refactor Code Base:
|
|
6
6
|
Use when user wants to refactor the code base.
|
|
@@ -23,10 +23,16 @@ Refactor Artifacts
|
|
|
23
23
|
|
|
24
24
|
<expand name="getopt"
|
|
25
25
|
arg1="ase-code-refactor"
|
|
26
|
-
arg2="--auto|-a --dry|-d --next|-n=(none|DONE|EDIT|PREFLIGHT|IMPLEMENT)...">
|
|
26
|
+
arg2="--auto|-a --dry|-d --quick|-Q --next|-n=(none|DONE|EDIT|PREFLIGHT|IMPLEMENT)...">
|
|
27
27
|
$ARGUMENTS
|
|
28
28
|
</expand>
|
|
29
29
|
|
|
30
|
+
<if condition="<getopt-option-quick/> is equal `true`">
|
|
31
|
+
The `--quick`/`-Q` flag is a *shorthand alias*: set <getopt-option-auto/>
|
|
32
|
+
to `true`, <getopt-option-dry/> to `true`, and <getopt-option-next/> to
|
|
33
|
+
`IMPLEMENT,DELETE`. Do not output anything.
|
|
34
|
+
</if>
|
|
35
|
+
|
|
30
36
|
<objective>
|
|
31
37
|
*Refactor* existing artifacts the following way:
|
|
32
38
|
<request><getopt-arguments/></request>
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
[`--help`|`-h`]
|
|
10
10
|
[`--auto`|`-a`]
|
|
11
11
|
[`--dry`|`-d`]
|
|
12
|
+
[`--quick`|`-Q`]
|
|
12
13
|
[`--next`|`-n` *option*[,...]]
|
|
13
14
|
[*task-id*:] *request*
|
|
14
15
|
|
|
@@ -39,6 +40,13 @@ plan via `ase_task_save` and then hands off to `ase-task-edit`,
|
|
|
39
40
|
type-checker, or program execution) once the source files have
|
|
40
41
|
been modified.
|
|
41
42
|
|
|
43
|
+
`--quick`|`-Q`:
|
|
44
|
+
Shorthand alias for `-a -d -n IMPLEMENT,DELETE`: automatically pick
|
|
45
|
+
the recommended refactoring approach, compose the plan *without* the
|
|
46
|
+
`※ VERIFICATION` section, immediately hand off to `ase-task-implement`,
|
|
47
|
+
and finally `ase-task-delete` the now-consumed plan. This gives a
|
|
48
|
+
single, fast *one-shot* refactoring mode.
|
|
49
|
+
|
|
42
50
|
`--next`|`-n` *option*[,...]:
|
|
43
51
|
Automatically choose the next step after composing the plan.
|
|
44
52
|
*option* is a single token or a *comma-separated chronological
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: ase-code-resolve
|
|
3
|
-
argument-hint: "[--help|-h] [--auto|-a] [--dry|-d] [--next|-n <option>[,...]] [<task-id>:] <problem>"
|
|
3
|
+
argument-hint: "[--help|-h] [--auto|-a] [--dry|-d] [--quick|-Q] [--next|-n <option>[,...]] [<task-id>:] <problem>"
|
|
4
4
|
description: >
|
|
5
5
|
Resolve Problem:
|
|
6
6
|
Use when user wants a bug fixed or problem resolved.
|
|
@@ -23,10 +23,16 @@ Resolve Problem
|
|
|
23
23
|
|
|
24
24
|
<expand name="getopt"
|
|
25
25
|
arg1="ase-code-resolve"
|
|
26
|
-
arg2="--auto|-a --dry|-d --next|-n=(none|DONE|EDIT|PREFLIGHT|IMPLEMENT)...">
|
|
26
|
+
arg2="--auto|-a --dry|-d --quick|-Q --next|-n=(none|DONE|EDIT|PREFLIGHT|IMPLEMENT)...">
|
|
27
27
|
$ARGUMENTS
|
|
28
28
|
</expand>
|
|
29
29
|
|
|
30
|
+
<if condition="<getopt-option-quick/> is equal `true`">
|
|
31
|
+
The `--quick`/`-Q` flag is a *shorthand alias*: set <getopt-option-auto/>
|
|
32
|
+
to `true`, <getopt-option-dry/> to `true`, and <getopt-option-next/> to
|
|
33
|
+
`IMPLEMENT,DELETE`. Do not output anything.
|
|
34
|
+
</if>
|
|
35
|
+
|
|
30
36
|
<objective>
|
|
31
37
|
*Resolve* the following problem:
|
|
32
38
|
<problem><getopt-arguments/></problem>
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
[`--help`|`-h`]
|
|
10
10
|
[`--auto`|`-a`]
|
|
11
11
|
[`--dry`|`-d`]
|
|
12
|
+
[`--quick`|`-Q`]
|
|
12
13
|
[`--next`|`-n` *option*[,...]]
|
|
13
14
|
[*task-id*:] *problem*
|
|
14
15
|
|
|
@@ -44,6 +45,13 @@ plan via `ase_task_save` and then hands off to `ase-task-edit`,
|
|
|
44
45
|
type-checker, or program execution) once the source files have
|
|
45
46
|
been modified.
|
|
46
47
|
|
|
48
|
+
`--quick`|`-Q`:
|
|
49
|
+
Shorthand alias for `-a -d -n IMPLEMENT,DELETE`: automatically pick
|
|
50
|
+
the recommended resolution approach, compose the plan *without* the
|
|
51
|
+
`※ VERIFICATION` section, immediately hand off to `ase-task-implement`,
|
|
52
|
+
and finally `ase-task-delete` the now-consumed plan. This gives a
|
|
53
|
+
single, fast *one-shot* resolution mode.
|
|
54
|
+
|
|
47
55
|
`--next`|`-n` *option*[,...]:
|
|
48
56
|
Automatically choose the next step after composing the plan.
|
|
49
57
|
*option* is a single token or a *comma-separated chronological
|