@rse/ase 0.9.0 → 0.9.1
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-bash.js +618 -0
- package/dst/ase-hook.js +27 -0
- 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-format-arch.md +667 -0
- package/plugin/meta/ase-format-meta.md +39 -0
- package/plugin/meta/ase-format-spec.md +994 -0
- package/plugin/meta/ase-skill.md +8 -0
- package/plugin/package.json +1 -1
- package/plugin/skills/ase-code-craft/SKILL.md +4 -3
- package/plugin/skills/ase-code-refactor/SKILL.md +4 -3
- package/plugin/skills/ase-code-resolve/SKILL.md +4 -3
- package/plugin/skills/ase-meta-brainstorm/SKILL.md +2 -2
- package/plugin/skills/ase-task-condense/SKILL.md +267 -0
- package/plugin/skills/ase-task-condense/help.md +77 -0
- package/plugin/skills/ase-task-edit/SKILL.md +26 -26
- package/plugin/skills/ase-task-edit/help.md +10 -10
- package/plugin/skills/ase-task-grill/SKILL.md +8 -8
- package/plugin/.claude/settings.local.json +0 -7
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
|
|
2
|
+
Artifact Meta Information
|
|
3
|
+
=========================
|
|
4
|
+
|
|
5
|
+
**ASE** knows about the following three levels of documentation:
|
|
6
|
+
|
|
7
|
+
- **Artifact Set**:
|
|
8
|
+
|
|
9
|
+
At the root, at level 1, there are the following known **Artifact Set**s:
|
|
10
|
+
|
|
11
|
+
- `Specification` (`SPEC`), aka "Software Requirements Specification
|
|
12
|
+
(SRS)", "Product Requirements Document (PRD)", or just
|
|
13
|
+
"Requirements".
|
|
14
|
+
|
|
15
|
+
- `Architecture` (`ARCH`), aka "Software Architecture Specification
|
|
16
|
+
(SAS)", "Architecture Description", or "Architecture Decision
|
|
17
|
+
Record (ADR)".
|
|
18
|
+
|
|
19
|
+
- `Software` (`SOFT`), aka "Software Implementation Results (IMP)".
|
|
20
|
+
|
|
21
|
+
- `Documentation` (`DOCS`), aka "Software Documentation Results (DOC)".
|
|
22
|
+
|
|
23
|
+
Each **Artifact Set** has a unique identifier <artifact-set-id/>,
|
|
24
|
+
which is one of `SPEC`, `ARCH`, `SOFT`, or `DOCS`.
|
|
25
|
+
|
|
26
|
+
- **Artifact**:
|
|
27
|
+
|
|
28
|
+
At level 2, each **Artifact Set** is composed of many **Artifact**s.
|
|
29
|
+
Each **Artifact** has a unique identifier <artifact-id/>, which is
|
|
30
|
+
an upper-case, two-letter identifier (e.g. `CJ` for `Customer
|
|
31
|
+
Journey`) derived from the **Artifact** name.
|
|
32
|
+
|
|
33
|
+
- **Aspect**:
|
|
34
|
+
|
|
35
|
+
At level 3, each **Artifact** is composed of many **Aspect**s.
|
|
36
|
+
Each **Aspect** has a unique identifier <aspect-id/>, which is a
|
|
37
|
+
unique "slug" of always 1-3 lower-cased words (concatenated with "-"
|
|
38
|
+
characters and in total not longer than 30 characters). An example
|
|
39
|
+
is `user-login`.
|