@maccesar/aiskills 1.17.0 → 1.17.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/README.md +1 -3
- package/commands/release.md +2 -4
- package/package.json +1 -1
- package/skills/refactoring-ui/SKILL.md +3 -7
- package/skills/session-log/SKILL.md +83 -311
- package/skills/session-log/evals/README.md +16 -52
- package/skills/session-log/evals/ab-ronda-1.md +22 -67
- package/skills/session-log/evals/ab-ronda-2.md +28 -113
- package/skills/session-log/evals/defecto-experimento.md +3 -8
- package/skills/session-log/references/file-layout.md +44 -142
- package/skills/session-log/references/verification.md +22 -56
- package/skills/stitch-showcase/references/14-troubleshooting-known-issues.md +18 -47
- package/skills/vscode-extension-dev/SKILL.md +3 -7
package/README.md
CHANGED
|
@@ -2,9 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<div align="center">
|
|
4
4
|
|
|
5
|
-

|
|
6
|
-

|
|
7
|
-

|
|
5
|
+
  
|
|
8
6
|
|
|
9
7
|
</div>
|
|
10
8
|
|
package/commands/release.md
CHANGED
|
@@ -102,8 +102,7 @@ Do all of this **internally**. Do not print a status summary or any "Step 1" hea
|
|
|
102
102
|
- Screenshots in repo root (`*.png`, `*.jpg`, `*.jpeg`, `Screenshot*.png`, `Captura*.png`) unless they live inside an `assets/`, `docs/`, or similarly-blessed directory.
|
|
103
103
|
- Editor scratch files: `*.swp`, `*.tmp`, `.DS_Store`, `Thumbs.db`.
|
|
104
104
|
- Local-only env files: `.env`, `.env.local`, `*.local.json` if the project's `.gitignore` already excludes them but they appear because of `git add -A`.
|
|
105
|
-
- Credentials, secret keys, large binaries that look unrelated to the project.
|
|
106
|
-
When in doubt, **list the file in the Step 4 plan as "excluded — confirm?"** instead of silently dropping or silently including it.
|
|
105
|
+
- Credentials, secret keys, large binaries that look unrelated to the project. When in doubt, **list the file in the Step 4 plan as "excluded — confirm?"** instead of silently dropping or silently including it.
|
|
107
106
|
|
|
108
107
|
**Output of this step (held internally for Step 4):** an ordered list `[ {type, scope, subject, files[], body?}, ... ]` representing the N semantic commits, plus an "excluded" list.
|
|
109
108
|
|
|
@@ -344,8 +343,7 @@ After Phase 1, the working tree should be clean except for files explicitly list
|
|
|
344
343
|
|
|
345
344
|
3. **Update `README.md`** with everything identified in Step 1.6:
|
|
346
345
|
- The documentation gap patches (new command rows, new sections, updated tables) so the README reflects the user-visible surface being shipped in this release.
|
|
347
|
-
- Plus any version badge / install snippet that referenced the old version.
|
|
348
|
-
Apply with `Edit` per location. Skip only if Step 1.6 found nothing.
|
|
346
|
+
- Plus any version badge / install snippet that referenced the old version. Apply with `Edit` per location. Skip only if Step 1.6 found nothing.
|
|
349
347
|
|
|
350
348
|
4. **Stage exactly the release-commit files** (the bumped version file + lockfile if `npm version` updated it + `CHANGELOG.md` + `README.md` if changed). Use explicit `git add <paths>`, not `git add -A`.
|
|
351
349
|
|
package/package.json
CHANGED
|
@@ -9,9 +9,7 @@ Design advice grounded in the principles taught by Adam Wathan & Steve Schoger i
|
|
|
9
9
|
|
|
10
10
|
## Required workflow (read before responding)
|
|
11
11
|
|
|
12
|
-
The SKILL.md alone is an **index** of references. The detail you need
|
|
13
|
-
to give accurate answers lives in the reference files. **Reading this
|
|
14
|
-
SKILL.md is not enough.**
|
|
12
|
+
The SKILL.md alone is an **index** of references. The detail you need to give accurate answers lives in the reference files. **Reading this SKILL.md is not enough.**
|
|
15
13
|
|
|
16
14
|
### Step 1 — Open the relevant reference files
|
|
17
15
|
|
|
@@ -27,8 +25,7 @@ SKILL.md is not enough.**
|
|
|
27
25
|
|
|
28
26
|
### Step 2 — Output contract
|
|
29
27
|
|
|
30
|
-
Every design recommendation, ratio, value, or rule you cite MUST be
|
|
31
|
-
backed by a citation in the form:
|
|
28
|
+
Every design recommendation, ratio, value, or rule you cite MUST be backed by a citation in the form:
|
|
32
29
|
|
|
33
30
|
`[source: references/<file>.md]`
|
|
34
31
|
|
|
@@ -36,8 +33,7 @@ Example: *"Use weight and color, not just font size, to establish hierarchy [sou
|
|
|
36
33
|
|
|
37
34
|
### Step 3 — If you must answer from memory
|
|
38
35
|
|
|
39
|
-
If you write a claim without having read the reference that backs it,
|
|
40
|
-
prepend `FROM_MEMORY (unverified):` to that claim. Do not hide it.
|
|
36
|
+
If you write a claim without having read the reference that backs it, prepend `FROM_MEMORY (unverified):` to that claim. Do not hide it.
|
|
41
37
|
|
|
42
38
|
### Banned behaviors
|
|
43
39
|
|