@its-thepoe/alt-text 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +26 -0
  2. package/package.json +2 -2
package/README.md ADDED
@@ -0,0 +1,26 @@
1
+ # @its-thepoe/alt-text
2
+
3
+ **Agent Skill** — scans a codebase for images with missing, empty, or weak **alt text**, drafts improvements using a **review table** (you approve before edits), then applies changes. Covers **Next.js** (`next/image`), **React**, **Astro**, **Vue**, Markdown/MDX, and CMS-shaped JSON/YAML.
4
+
5
+ ## Install into your agents
6
+
7
+ Use the orchestrator (recommended):
8
+
9
+ ```bash
10
+ npx @its-thepoe/skills@latest install alt-text
11
+ ```
12
+
13
+ Or install [all skills](https://www.npmjs.com/package/@its-thepoe/skills).
14
+
15
+ ## Contents
16
+
17
+ - `SKILL.md` — workflow and rules
18
+ - `reference.md` — framework greps, W3C-style decision tree, examples
19
+
20
+ ## Docs
21
+
22
+ - [Repository & troubleshooting](https://github.com/its-thepoe/skills)
23
+
24
+ ## License
25
+
26
+ MIT
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@its-thepoe/alt-text",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Agent Skill: scan and draft alt text for images (Next.js, React, Astro, Vue, CMS) with review table before apply.",
5
5
  "license": "MIT",
6
6
  "keywords": ["agent-skills", "accessibility", "alt-text", "a11y", "cursor"],
7
- "files": ["SKILL.md", "reference.md", "package.json"],
7
+ "files": ["README.md", "SKILL.md", "reference.md", "package.json"],
8
8
  "exports": {
9
9
  ".": "./SKILL.md",
10
10
  "./SKILL.md": "./SKILL.md",