@maccesar/aiskills 1.17.0 → 1.18.0
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 +42 -3
- package/commands/release.md +2 -4
- package/lib/commands/list.js +109 -22
- package/lib/commands/skills.js +1 -3
- package/lib/config.js +1 -0
- package/lib/prompts/checkboxCancel.js +0 -6
- package/lib/symlink.js +1 -1
- package/package.json +4 -2
- package/skills/refactoring-ui/SKILL.md +3 -7
- package/skills/seo-launch/SKILL.md +91 -0
- package/skills/seo-launch/assets/head.php +85 -0
- package/skills/seo-launch/assets/htaccess-static +86 -0
- package/skills/seo-launch/assets/robots.txt +17 -0
- package/skills/seo-launch/assets/social-meta.blade.php +90 -0
- package/skills/seo-launch/references/head-tags.md +109 -0
- package/skills/seo-launch/references/images.md +86 -0
- package/skills/seo-launch/references/search-engines.md +77 -0
- package/skills/seo-launch/references/server-files.md +168 -0
- package/skills/seo-launch/references/structured-data.md +139 -0
- package/skills/seo-launch/scripts/__pycache__/auditar_seo.cpython-312.pyc +0 -0
- package/skills/seo-launch/scripts/auditar_seo.py +539 -0
- 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/12-video-embedding.md +11 -28
- package/skills/stitch-showcase/references/13-language-detection.md +13 -38
- package/skills/stitch-showcase/references/14-troubleshooting-known-issues.md +18 -47
- package/skills/vscode-extension-dev/SKILL.md +3 -7
- package/skills/stitch-showcase/scripts/__pycache__/build_showcase.cpython-314.pyc +0 -0
- package/skills/stitch-showcase/scripts/__pycache__/component_utils.cpython-313.pyc +0 -0
- package/skills/stitch-showcase/scripts/__pycache__/component_utils.cpython-314.pyc +0 -0
- package/skills/stitch-showcase/scripts/__pycache__/detect_components.cpython-313.pyc +0 -0
- package/skills/stitch-showcase/scripts/__pycache__/detect_components.cpython-314.pyc +0 -0
- package/skills/stitch-showcase/scripts/__pycache__/extract_catalog.cpython-313.pyc +0 -0
- package/skills/stitch-showcase/scripts/__pycache__/extract_catalog.cpython-314.pyc +0 -0
- package/skills/stitch-showcase/scripts/__pycache__/extract_text.cpython-313.pyc +0 -0
- package/skills/stitch-showcase/scripts/__pycache__/extract_text.cpython-314.pyc +0 -0
- package/skills/stitch-showcase/scripts/__pycache__/extract_zips.cpython-313.pyc +0 -0
- package/skills/stitch-showcase/scripts/__pycache__/extract_zips.cpython-314.pyc +0 -0
- package/skills/stitch-showcase/scripts/__pycache__/parse_design_md.cpython-313.pyc +0 -0
- package/skills/stitch-showcase/scripts/__pycache__/parse_design_md.cpython-314.pyc +0 -0
- package/skills/stitch-showcase/scripts/__pycache__/slug_demangle.cpython-314.pyc +0 -0
|
@@ -2,39 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
## Purpose
|
|
4
4
|
|
|
5
|
-
Working notes on issues that have shown up in real projects, the cause
|
|
6
|
-
when it's understood, and the workaround. New issues should be added here
|
|
7
|
-
before they show up a second time.
|
|
5
|
+
Working notes on issues that have shown up in real projects, the cause when it's understood, and the workaround. New issues should be added here before they show up a second time.
|
|
8
6
|
|
|
9
7
|
---
|
|
10
8
|
|
|
11
9
|
## `catalog.html` stays on "Loading…"
|
|
12
10
|
|
|
13
|
-
**Symptom**: opening `catalog.html` shows the skeleton header but the
|
|
14
|
-
component grid never appears.
|
|
11
|
+
**Symptom**: opening `catalog.html` shows the skeleton header but the component grid never appears.
|
|
15
12
|
|
|
16
|
-
**Cause** (suspected, not yet confirmed): in projects with very dense
|
|
17
|
-
HTMLs or many near-duplicate variants, `extract_catalog.py` either times
|
|
18
|
-
out or returns a structure the catalog viewer chokes on.
|
|
13
|
+
**Cause** (suspected, not yet confirmed): in projects with very dense HTMLs or many near-duplicate variants, `extract_catalog.py` either times out or returns a structure the catalog viewer chokes on.
|
|
19
14
|
|
|
20
|
-
**Workaround**: the `index.html` template ships without the "Catalog"
|
|
21
|
-
button in the header, so end users don't hit the broken page. If you
|
|
22
|
-
want to inspect the catalog data, open `component_catalog.json` directly.
|
|
15
|
+
**Workaround**: the `index.html` template ships without the "Catalog" button in the header, so end users don't hit the broken page. If you want to inspect the catalog data, open `component_catalog.json` directly.
|
|
23
16
|
|
|
24
|
-
**Status**: open. Restore the Catalog button in
|
|
25
|
-
`references/index.html` once the root cause is fixed.
|
|
17
|
+
**Status**: open. Restore the Catalog button in `references/index.html` once the root cause is fixed.
|
|
26
18
|
|
|
27
19
|
---
|
|
28
20
|
|
|
29
21
|
## Chrome shows "Translate this page" banner
|
|
30
22
|
|
|
31
|
-
**Symptom**: Chrome offers to translate the showcase, sometimes to a
|
|
32
|
-
language that isn't even one of the two involved (Portuguese is common).
|
|
23
|
+
**Symptom**: Chrome offers to translate the showcase, sometimes to a language that isn't even one of the two involved (Portuguese is common).
|
|
33
24
|
|
|
34
|
-
**Cause**: the `<html lang="…">` attribute on `index.html` or
|
|
35
|
-
`viewer.html` disagrees with the actual text content. See
|
|
36
|
-
[`13-language-detection.md`](13-language-detection.md) for the full
|
|
37
|
-
resolution order.
|
|
25
|
+
**Cause**: the `<html lang="…">` attribute on `index.html` or `viewer.html` disagrees with the actual text content. See [`13-language-detection.md`](13-language-detection.md) for the full resolution order.
|
|
38
26
|
|
|
39
27
|
**Workaround**: add an override.
|
|
40
28
|
|
|
@@ -59,62 +47,45 @@ Then rebuild.
|
|
|
59
47
|
|
|
60
48
|
## Video doesn't preview in Finder / Safari rejects it
|
|
61
49
|
|
|
62
|
-
**Symptom**: a `.mp4` downloaded from Facebook / YouTube / TikTok plays
|
|
63
|
-
fine in VLC and Chrome but shows a black square in macOS Finder and
|
|
64
|
-
fails to play in Safari < 17.
|
|
50
|
+
**Symptom**: a `.mp4` downloaded from Facebook / YouTube / TikTok plays fine in VLC and Chrome but shows a black square in macOS Finder and fails to play in Safari < 17.
|
|
65
51
|
|
|
66
|
-
**Cause**: the source was encoded in AV1, which neither macOS Finder
|
|
67
|
-
nor older Safari can decode.
|
|
52
|
+
**Cause**: the source was encoded in AV1, which neither macOS Finder nor older Safari can decode.
|
|
68
53
|
|
|
69
|
-
**Workaround**: re-encode to H.264 with ffmpeg. See
|
|
70
|
-
[`12-video-embedding.md`](12-video-embedding.md) for the exact command.
|
|
54
|
+
**Workaround**: re-encode to H.264 with ffmpeg. See [`12-video-embedding.md`](12-video-embedding.md) for the exact command.
|
|
71
55
|
|
|
72
56
|
---
|
|
73
57
|
|
|
74
58
|
## Skill installed both as plugin and standalone
|
|
75
59
|
|
|
76
|
-
**Symptom**: after `aiskills install`, the skill folder exists at both
|
|
77
|
-
`~/.claude/skills/<name>/` (from the standalone CLI) **and**
|
|
78
|
-
`~/.claude/plugins/cache/<plugin>/<version>/skills/<name>/` (from the
|
|
79
|
-
marketplace plugin), so changes to one path are invisible to the other.
|
|
60
|
+
**Symptom**: after `aiskills install`, the skill folder exists at both `~/.claude/skills/<name>/` (from the standalone CLI) **and** `~/.claude/plugins/cache/<plugin>/<version>/skills/<name>/` (from the marketplace plugin), so changes to one path are invisible to the other.
|
|
80
61
|
|
|
81
|
-
**Cause**: older versions of the `aiskills` CLI didn't detect when the
|
|
82
|
-
plugin marketplace had already installed the skill and dropped a
|
|
83
|
-
duplicate symlink.
|
|
62
|
+
**Cause**: older versions of the `aiskills` CLI didn't detect when the plugin marketplace had already installed the skill and dropped a duplicate symlink.
|
|
84
63
|
|
|
85
64
|
**Workaround**:
|
|
86
65
|
|
|
87
66
|
1. Update the CLI: `npm install -g @maccesar/aiskills@latest`.
|
|
88
67
|
2. Remove the standalone copy: `rm -rf ~/.claude/skills/<skill-name>`.
|
|
89
|
-
3. Reinstall: `aiskills install`. The CLI now skips skills that the
|
|
90
|
-
plugin already provides.
|
|
68
|
+
3. Reinstall: `aiskills install`. The CLI now skips skills that the plugin already provides.
|
|
91
69
|
|
|
92
70
|
---
|
|
93
71
|
|
|
94
72
|
## Showcase background and app background match (thumbnails disappear)
|
|
95
73
|
|
|
96
|
-
**Symptom**: every card in `index.html` shows a blank rectangle because
|
|
97
|
-
the screen has the same background color as the showcase canvas.
|
|
74
|
+
**Symptom**: every card in `index.html` shows a blank rectangle because the screen has the same background color as the showcase canvas.
|
|
98
75
|
|
|
99
|
-
**Cause**: someone reused the project's brand color as the showcase
|
|
100
|
-
background instead of a neutral surface.
|
|
76
|
+
**Cause**: someone reused the project's brand color as the showcase background instead of a neutral surface.
|
|
101
77
|
|
|
102
|
-
**Workaround**: see `07-theme-system.md` and the Color Strategy section
|
|
103
|
-
of `SKILL.md` — never use a brand color for large showcase surfaces.
|
|
78
|
+
**Workaround**: see `07-theme-system.md` and the Color Strategy section of `SKILL.md` — never use a brand color for large showcase surfaces.
|
|
104
79
|
|
|
105
80
|
---
|
|
106
81
|
|
|
107
82
|
## Stitch slugs come with `_` in place of accents
|
|
108
83
|
|
|
109
|
-
**Symptom**: filenames like `configuraci_n_oscuro.html` and the showcase
|
|
110
|
-
displays them as "Configuraci_N Oscuro".
|
|
84
|
+
**Symptom**: filenames like `configuraci_n_oscuro.html` and the showcase displays them as "Configuraci_N Oscuro".
|
|
111
85
|
|
|
112
86
|
**Cause**: Google Stitch strips accented characters from filenames.
|
|
113
87
|
|
|
114
|
-
**Workaround**: the build now de-mangles slugs automatically through
|
|
115
|
-
`scripts/slug_demangle.py`. If a slug doesn't appear in the demangler's
|
|
116
|
-
dictionary, override the title explicitly in `DESIGN.md` using the
|
|
117
|
-
`Title | Description` format:
|
|
88
|
+
**Workaround**: the build now de-mangles slugs automatically through `scripts/slug_demangle.py`. If a slug doesn't appear in the demangler's dictionary, override the title explicitly in `DESIGN.md` using the `Title | Description` format:
|
|
118
89
|
|
|
119
90
|
```markdown
|
|
120
91
|
### Cuenta
|
|
@@ -9,9 +9,7 @@ You are a VS Code extension development advisor. Ground every answer in the refe
|
|
|
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
|
|
|
@@ -34,8 +32,7 @@ SKILL.md is not enough.**
|
|
|
34
32
|
|
|
35
33
|
### Step 2 — Output contract
|
|
36
34
|
|
|
37
|
-
Every API symbol, configuration key, command, or behavior you cite MUST
|
|
38
|
-
be backed by a citation in the form:
|
|
35
|
+
Every API symbol, configuration key, command, or behavior you cite MUST be backed by a citation in the form:
|
|
39
36
|
|
|
40
37
|
`[source: references/<file>.md]`
|
|
41
38
|
|
|
@@ -43,8 +40,7 @@ Example: *"Push all subscriptions to `context.subscriptions` so they are dispose
|
|
|
43
40
|
|
|
44
41
|
### Step 3 — If you must answer from memory
|
|
45
42
|
|
|
46
|
-
If you write a claim without having read the reference that backs it,
|
|
47
|
-
prepend `FROM_MEMORY (unverified):` to that claim. Do not hide it.
|
|
43
|
+
If you write a claim without having read the reference that backs it, prepend `FROM_MEMORY (unverified):` to that claim. Do not hide it.
|
|
48
44
|
|
|
49
45
|
### Banned behaviors
|
|
50
46
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|