solmate-skills 2.0.7 → 2.0.8
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/README.md +36 -22
- package/package.json +10 -4
package/README.md
CHANGED
|
@@ -1,41 +1,55 @@
|
|
|
1
1
|
# solmate-skills
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Reusable AI-agent skills for disciplined product work.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
`solmate-skills` packages the Solmate workflow as installable skills: plan the product, create browser-viewable UI previews, lock backlog tasks to their source documents, implement with approval gates, and verify the result before release.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Use it when you want an AI coding agent to follow a shared workflow instead of improvising project structure, documentation, implementation order, and QA.
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
## Install
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
- UI, user paths, data flow, loading states, empty states, and error states must be confirmed before coding.
|
|
13
|
-
- UI planning must include HTML preview files under `docs/02_UI_Screens/previews/` and link them from the related UI documents.
|
|
14
|
-
- User journey SVG files belong in `docs/02_UI_Screens/assets/`.
|
|
15
|
-
- Data flow SVG files belong in `docs/03_Technical_Specs/assets/`.
|
|
16
|
-
- `/rules-workflow` now treats linked backlog documents as implementation inputs before coding starts.
|
|
17
|
-
- `/verify-docs` fails backlog items that omit required related-document fields.
|
|
18
|
-
- Local Codex settings under `.codex/` are excluded from the npm package, while skill-owned shell scripts remain publishable.
|
|
19
|
-
|
|
20
|
-
## Installation
|
|
21
|
-
|
|
22
|
-
You don't need to install this package globally. Simply use `npx`:
|
|
11
|
+
You do not need a global install. Run it with `npx` from the root of the project where you want the skills installed:
|
|
23
12
|
|
|
24
13
|
```bash
|
|
25
14
|
# List available skills
|
|
26
|
-
npx solmate-skills list
|
|
15
|
+
npx solmate-skills@latest list
|
|
27
16
|
|
|
28
|
-
# Install
|
|
17
|
+
# Install every skill
|
|
29
18
|
npx solmate-skills@latest install all
|
|
30
19
|
|
|
20
|
+
# Install one skill
|
|
21
|
+
npx solmate-skills@latest install rules-product
|
|
22
|
+
|
|
31
23
|
# Install proactive hook suggestions for Claude Code projects
|
|
32
24
|
npx solmate-skills@latest install hooks
|
|
33
|
-
|
|
34
|
-
# Install a specific skill
|
|
35
|
-
npx solmate-skills install rules-docs
|
|
36
25
|
```
|
|
37
26
|
|
|
38
|
-
|
|
27
|
+
The installer copies each selected skill folder into `.agent/skills/<skill-name>` in your current project.
|
|
28
|
+
|
|
29
|
+
## What You Get
|
|
30
|
+
|
|
31
|
+
- **Product workflow orchestration**: `/rules-product` diagnoses the current phase and routes the agent to the right next skill.
|
|
32
|
+
- **UI-first planning**: `/docs-plan` creates concept and screen documents before implementation starts.
|
|
33
|
+
- **HTML UI Preview Gate**: major screens and flows must have browser-viewable HTML previews under `docs/02_UI_Screens/previews/`.
|
|
34
|
+
- **Backlog Context Lock**: every backlog item must link the Concept, UI, HTML Preview, Technical Spec, and QA documents needed for implementation.
|
|
35
|
+
- **Implementation workflow**: `/rules-workflow` keeps coding work tied to approved documents, preconditions, and acceptance criteria.
|
|
36
|
+
- **Release verification**: `/verify-implementation` runs the verification family for docs, UI, code, security, performance, DB schema, and skill package readiness.
|
|
37
|
+
|
|
38
|
+
## What's New in 2.0.8
|
|
39
|
+
|
|
40
|
+
`solmate-skills@2.0.8` refreshes the npm README and package metadata so the package purpose, install path, and core workflow gates are clearer on the npm package page.
|
|
41
|
+
|
|
42
|
+
Recent workflow guardrails:
|
|
43
|
+
|
|
44
|
+
- Every backlog task must link to related Concept, UI, HTML Preview, Technical Spec, and QA documents.
|
|
45
|
+
- UI planning must include HTML preview files under `docs/02_UI_Screens/previews/` and link them from the related UI documents.
|
|
46
|
+
- UI, user paths, data flow, loading states, empty states, and error states must be confirmed before coding.
|
|
47
|
+
- User journey SVG files belong in `docs/02_UI_Screens/assets/`.
|
|
48
|
+
- Data flow SVG files belong in `docs/03_Technical_Specs/assets/`.
|
|
49
|
+
- `/rules-workflow` treats linked backlog documents as implementation inputs before coding starts.
|
|
50
|
+
- `/verify-docs` fails backlog items that omit required related-document fields.
|
|
51
|
+
|
|
52
|
+
## Install Details
|
|
39
53
|
|
|
40
54
|
`install all` installs only skill folders that contain `SKILL.md`. Use `install hooks` separately when you want prompt/file-change suggestions that nudge the agent toward `/rules-product`, `/rules-workflow`, and the relevant `verify-*` skills.
|
|
41
55
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "solmate-skills",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.0.8",
|
|
4
|
+
"description": "AI workflow skills for UI-first planning, backlog-linked docs, QA, and Solmate projects",
|
|
5
5
|
"main": "bin/cli.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"solmate-skills": "bin/cli.js"
|
|
@@ -10,9 +10,15 @@
|
|
|
10
10
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
11
11
|
},
|
|
12
12
|
"keywords": [
|
|
13
|
-
"skills",
|
|
13
|
+
"ai-skills",
|
|
14
|
+
"codex",
|
|
15
|
+
"claude",
|
|
16
|
+
"workflow",
|
|
17
|
+
"documentation",
|
|
18
|
+
"ui-first",
|
|
19
|
+
"qa",
|
|
14
20
|
"solmate",
|
|
15
|
-
"
|
|
21
|
+
"skills",
|
|
16
22
|
"automation"
|
|
17
23
|
],
|
|
18
24
|
"author": "",
|