skill-guide 0.2.1 → 0.4.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/CHANGELOG.md CHANGED
@@ -5,6 +5,51 @@ All notable changes to skill-guide will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.4.0] - 2026-06-01
9
+
10
+ ### Added
11
+ - Platform-scoped filtering: all modes (dashboard, doctor, find, review, recommend, share) default to the current agent's skills.
12
+ - Auto-detection via env vars (`CLAUDE_CODE`, `CODEX_AGENT`) or install path.
13
+ - `--platform <claude|codex>` flag to force a specific platform view.
14
+ - `--all` flag to see the full cross-platform inventory.
15
+ - `applyPlatformFilter()` helper for consistent platform filtering across all CLI modes.
16
+ - 8 new tests covering platform detection, filtering, and env var auto-detection.
17
+
18
+ ### Changed
19
+ - Review mode (`--review`) no longer flags cross-agent duplicates as issues — each agent needs its own skill copies.
20
+ - Cover slide title auto-adapts to show "Your Claude Code Skills" or "Your Codex Skills" based on filtered results.
21
+ - `--find` commands in Next Steps slide simplified (removed redundant `--find` flag).
22
+
23
+ ### Fixed
24
+ - `\n` literal rendering in Copy Review Prompt button (replaced inline string with window variable pattern).
25
+ - `--platform` value no longer misinterpreted as a positional `--find` argument.
26
+
27
+ ## [0.3.1] - 2026-06-01
28
+
29
+ ### Added
30
+ - Local health dashboard with radar chart, token estimate, review prompts, share page, and directory-based recommendations.
31
+ - Packaging regression test that installs the generated npm tarball and starts the installed CLI.
32
+ - Skill-definition regression test that keeps the agent entrypoint concise and trigger-first.
33
+
34
+ ### Changed
35
+ - Health output now describes local metadata heuristics instead of unsupported community percentile comparisons.
36
+ - Recommendation and cleanup wording now requires manual review before installing, editing, or deleting skills.
37
+ - `SKILL.md` is now a thin CLI wrapper with English and Chinese dashboard support.
38
+ - Online directory fetching now invokes `curl` directly without an unnecessary shell wrapper.
39
+
40
+ ### Fixed
41
+ - Added `skill-registry.js` to the npm package so installed `0.3.x` CLI commands can start.
42
+
43
+ ### Removed
44
+ - Tracked local agent settings and browser debug artifacts.
45
+
46
+ ## [0.3.0] - 2026-05-28
47
+
48
+ Repository-only development version. It was not published to npm.
49
+
50
+ ### Added
51
+ - Initial health dashboard, recommendation registry, share page, and personal profile experiments.
52
+
8
53
  ## [0.2.1] - 2026-05-17
9
54
 
10
55
  ### Fixed
@@ -19,8 +64,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
19
64
  - `--doctor` diagnostics for Node.js, Codex home, skill counts, and source breakdown.
20
65
  - `--format json` for raw scanner output from the main CLI.
21
66
  - `--lang zh` built-in Chinese UI labels with `LABELS.zh` map.
22
- - Agent-side full translation for any language (ja, ko, fr, de, es, etc.) — SKILL.md workflow step 6.
23
- - Language auto-detection from user input (Chinese, Japanese, Korean, and others).
67
+ - Built-in English and Chinese dashboard labels.
24
68
  - Markdown rendering in HTML output with smart truncation for long sections.
25
69
  - `data-i18n` attributes on all translatable HTML elements.
26
70
  - GitHub Actions test and Pages workflows.
@@ -35,7 +79,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
35
79
  ### Changed
36
80
  - `SKILL.md` now delegates HTML generation to the deterministic CLI, with the old scanner-driven instructions as fallback.
37
81
  - Cache files are now scoped to the active scan roots, avoiding stale results when switching between Claude Code and Codex environments.
38
- - Translation generalized from Chinese-only to any language agent translates both `data-i18n` content and plain text.
82
+ - Chinese dashboard labels can be selected with `--lang zh`.
39
83
 
40
84
  ## [0.1.0] - 2026-05-15
41
85
 
package/README.md CHANGED
@@ -1,236 +1,230 @@
1
- <p align="center">
2
- <img src="https://img.shields.io/badge/Zero%20Dependencies-Node.js-6ee7b7?style=flat-square" />
3
- <img src="https://img.shields.io/badge/Output-HTML%20Slides-f0abfc?style=flat-square" />
4
- <img src="https://img.shields.io/badge/Platform-Claude%20Code%20%7C%20Codex%20%7C%20cc--switch-818cf8?style=flat-square" />
5
- <img src="https://img.shields.io/github/actions/workflow/status/gtskevin/skill-guide/test.yml?branch=main&style=flat-square&label=tests" />
6
- <img src="https://img.shields.io/badge/License-MIT-green?style=flat-square" />
7
- <img src="https://img.shields.io/badge/Language-Any%20%F0%9F%8C%90-7dd3fc?style=flat-square" />
8
- </p>
9
-
10
- <p align="center">
11
- <img src="demo.gif" alt="skill-guide demo — npx skill-guide --open generates HTML slides" width="760" />
12
- </p>
13
-
14
- > **200+ agent skills installed but you only use 3?**
15
- > One command scans everything — Claude Code, Codex, cc-switch, plugins — and generates a beautiful slide deck so you actually know what you have.
16
-
17
- <p align="center">
18
- <a href="https://gtskevin.github.io/skill-guide/"><strong>Live Demo</strong></a>
19
- ·
20
- <a href="#quick-start">Try it now</a>
21
- ·
22
- <a href="#install-methods">Install</a>
23
- ·
24
- <a href="#how-it-works">How it works</a>
25
- </p>
1
+ <div align="center">
26
2
 
27
- ```bash
28
- npx skill-guide --open # that's it. HTML slides open in your browser.
29
- ```
3
+ <picture>
4
+ <img src=".github/assets/banner.svg" alt="skill-guide know what your AI agent can do before you trust it" width="800" />
5
+ </picture>
30
6
 
31
- ## What it does
7
+ <br />
32
8
 
33
- skill-guide reads every skill from Claude Code, Codex, `~/.cc-switch/skills/`, and plugin marketplaces, then generates a polished slide deck you can view in any browser.
9
+ [![npm version](https://img.shields.io/npm/v/skill-guide?style=for-the-badge&logo=npm)](https://www.npmjs.com/package/skill-guide)
10
+ [![npm downloads](https://img.shields.io/npm/dm/skill-guide?style=for-the-badge&logo=npm)](https://www.npmjs.com/package/skill-guide)
11
+ [![tests](https://img.shields.io/github/actions/workflow/status/gtskevin/skill-guide/test.yml?branch=main&style=for-the-badge&label=tests)](https://github.com/gtskevin/skill-guide/actions/workflows/test.yml)
12
+ [![license](https://img.shields.io/badge/license-MIT-22c55e?style=for-the-badge)](LICENSE)
34
13
 
35
- **4 modes:**
14
+ **Inspect, find, and review your installed Agent Skills across Codex and Claude Code.**
36
15
 
37
- | Mode | Command | Output |
38
- |------|---------|--------|
39
- | **Discovery** | `/skill-guide` or `npx skill-guide --open` | Stats, category map, highlights, quick reference |
40
- | **Deep-dive** | `/skill-guide investigate` or `npx skill-guide --skill investigate --open` | How it works, when to use, limitations, triggers |
41
- | **Tool-selection** | "Which skill for security?" | Ranked recommendations with comparison |
42
- | **Full manual** | `/skill-guide all` or `npx skill-guide --full --open` | One page per skill, complete reference |
43
- | **Doctor** | `npx skill-guide --doctor` | Environment and source diagnostics |
16
+ [Live Demo](https://gtskevin.github.io/skill-guide/) · [Quick Start](#quick-start) · [npm](https://www.npmjs.com/package/skill-guide) · [FAQ](#faq)
44
17
 
45
- ## Platform Support
18
+ </div>
46
19
 
47
- | Platform | Status | Scanned paths |
48
- |----------|--------|---------------|
49
- | **Claude Code** | Supported | `~/.claude/skills`, `~/.claude/plugins/marketplaces` |
50
- | **Codex** | Supported | `~/.codex/skills`, `$CODEX_HOME/skills`, Codex plugin cache |
51
- | **OpenAI system skills** | Supported | `$CODEX_HOME/skills/.system` as a separate source |
52
- | **cc-switch** | Supported | `~/.cc-switch/skills` |
53
- | **Agent Skills** | Compatible | Standard `SKILL.md` skill folders |
20
+ ---
54
21
 
55
- ## Screenshots
22
+ > [!NOTE]
23
+ > You installed a useful Skill from someone else. But what will it actually do? When should it activate? Do you already have another Skill for the same job? Is its description heavy enough to deserve a closer look?
24
+ >
25
+ > `skill-guide` gives you a local map before you place uncertain trust in downloaded Agent Skills.
26
+
27
+ ## Highlights
28
+
29
+ | | Capability | Why it matters |
30
+ |---|---|---|
31
+ | 🔍 | **Inventory your Skills** | See what is installed across Codex, Claude Code, cc-switch, and plugin directories. |
32
+ | 🎯 | **Find a Skill for a task** | Search names, descriptions, and declared triggers before installing another tool. |
33
+ | 📖 | **Inspect how a Skill is designed to work** | Review its source, declared tools, use cases, limitations, and document structure. |
34
+ | 🛡️ | **Review before you trust** | Surface local metadata signals such as sparse descriptions, duplicate sources, and estimated description tokens. |
35
+ | 🎯 | **Platform-scoped views** | Default to your current agent's Skills; use `--platform` or `--all` to switch scope. |
36
+
37
+ ## Quick Start
56
38
 
57
- ![skill-guide social preview](social-preview.png)
39
+ > ⏱️ **Get started in 30 seconds**
40
+
41
+ No installation is required for the CLI:
42
+
43
+ ```bash
44
+ npx skill-guide
45
+ ```
46
+
47
+ The dashboard opens in your browser. The terminal also prints a local summary:
48
+
49
+ ```text
50
+ skill-guide · 338 skills · Local profile: Collector
51
+
52
+ Health: 68/100
53
+ 338 skills · 9/9 categories · ~20.0K description tokens
54
+ Sources: 59 user-directory · 280 plugin-directory
55
+ 16 skills have sparse metadata — review descriptions and triggers
56
+ ```
57
+
58
+ > [!IMPORTANT]
59
+ > Token numbers are rough estimates for Skill descriptions, not measured runtime cost. Health output is a local review prompt, not a verdict on quality or safety.
60
+
61
+ ## Demo
62
+
63
+ <div align="center">
64
+ <img src="demo.gif" alt="skill-guide scans installed Agent Skills and opens an HTML dashboard" width="760" />
65
+ </div>
58
66
 
59
67
  <table>
60
68
  <tr>
61
- <td><img src="demo-cover.png" alt="Cover slide" width="400" /></td>
62
- <td><img src="demo-categories.png" alt="Category map" width="400" /></td>
69
+ <td><img src="demo-cover.png" alt="skill-guide cover slide with local Skill sources" width="400" /></td>
70
+ <td><img src="demo-categories.png" alt="skill-guide category map grouped by Skill type" width="400" /></td>
63
71
  </tr>
64
72
  <tr>
65
- <td align="center"><em>Cover total count & sources</em></td>
66
- <td align="center"><em>Category map — grouped cards</em></td>
73
+ <td align="center"><em>Local inventory and sources</em></td>
74
+ <td align="center"><em>Category map</em></td>
67
75
  </tr>
68
76
  <tr>
69
- <td><img src="demo-highlights.png" alt="Top picks" width="400" /></td>
70
- <td><img src="demo-reference.png" alt="Quick reference" width="400" /></td>
77
+ <td><img src="demo-highlights.png" alt="skill-guide review highlights for installed Skills" width="400" /></td>
78
+ <td><img src="demo-reference.png" alt="skill-guide searchable reference table" width="400" /></td>
71
79
  </tr>
72
80
  <tr>
73
- <td align="center"><em>Top picks — best skills</em></td>
74
- <td align="center"><em>Quick reference table</em></td>
81
+ <td align="center"><em>Review highlights</em></td>
82
+ <td align="center"><em>Quick reference</em></td>
75
83
  </tr>
76
84
  </table>
77
85
 
78
- ## Quick Start
86
+ ## What It Can Tell You
79
87
 
80
- **1. Try instantly** no install needed:
81
- ```bash
82
- npx skill-guide --open
83
- ```
88
+ `skill-guide` is a local inventory, discovery, and **pre-use review** tool. It deliberately separates evidence from inference.
84
89
 
85
- **2. Install for Claude Code:**
86
- ```bash
87
- npx skills add gtskevin/skill-guide
88
- ```
90
+ | Question | What `skill-guide` does today | Boundary |
91
+ |---|---|---|
92
+ | What Skills do I have? | Scans local user, system, cc-switch, and plugin directories. Defaults to the current agent's Skills. | Reports what is visible on the current machine. Use `--all` for cross-platform inventory. |
93
+ | Do I already have a Skill for this task? | Searches names, descriptions, and declared triggers with `--find`. | Returns metadata matches, not a semantic guarantee. |
94
+ | How is this Skill designed to work? | Shows source, declared tools, use cases, limitations, and document sections. | Explains documented intent; it does not execute an audit of every command. |
95
+ | Could Skill descriptions be heavy? | Estimates description tokens and highlights longer descriptions. | Does not measure runtime tokens, API cost, or context injection behavior. |
96
+ | Was a Skill actually invoked? | Not yet. | Runtime invocation tracking requires logging integrations. |
97
+ | Is the output good or cost-effective? | Not yet. | Result quality and actual cost require runtime evidence and evaluation. |
89
98
 
90
- **3. Use it** — type `/skill-guide` in Claude Code, or use the CLI:
91
- ```bash
92
- npx skill-guide --open # Discover all skills
93
- npx skill-guide --search security --open # Find skills for a task
94
- npx skill-guide --skill tdd --open # Deep-dive one skill
95
- npx skill-guide --full --open # Generate a full manual
96
- npx skill-guide --doctor # Diagnose your setup
99
+ ## Commands
100
+
101
+ | Goal | Command |
102
+ |---|---|
103
+ | Open your local dashboard | `npx skill-guide` |
104
+ | Find a Skill for a task | `npx skill-guide --find security` |
105
+ | Inspect one Skill | `npx skill-guide --find test-driven-development` |
106
+ | Diagnose local setup | `npx skill-guide --doctor` |
107
+ | Review directory mentions and same-category candidates | `npx skill-guide --recommend` |
108
+ | Generate a shareable local profile | `npx skill-guide --share` |
109
+ | Return structured scanner data | `npx skill-guide --format json` |
110
+ | Focus on one agent's Skills | `npx skill-guide --platform claude` |
111
+ | Include every detected platform | `npx skill-guide --all` |
112
+
113
+ ### Example Prompts
114
+
115
+ When `skill-guide` is installed as an Agent Skill, try:
116
+
117
+ ```text
118
+ What Skills do I already have for code review?
119
+ Show me how the test-driven-development Skill is designed to work.
120
+ 帮我看看我有哪些 Codex Skills,并找出描述信息较少、值得人工复核的项目。
97
121
  ```
98
122
 
99
- ## Install Methods
123
+ ## Install as an Agent Skill
124
+
125
+ For Claude Code:
100
126
 
101
127
  ```bash
102
- # Claude Code: npx skills (recommended)
103
128
  npx skills add gtskevin/skill-guide
129
+ ```
104
130
 
105
- # Claude Code: manual symlink
106
- git clone https://github.com/gtskevin/skill-guide.git
107
- ln -s $(pwd)/skill-guide ~/.claude/skills/skill-guide
108
-
109
- # Claude Code: direct download
110
- mkdir -p ~/.claude/skills/skill-guide
111
- curl -sL https://github.com/gtskevin/skill-guide/archive/refs/heads/main.tar.gz | tar xz --strip-components=1 -C ~/.claude/skills/skill-guide
131
+ For Codex:
112
132
 
113
- # Codex: manual symlink
133
+ ```bash
114
134
  git clone https://github.com/gtskevin/skill-guide.git
115
135
  mkdir -p "${CODEX_HOME:-$HOME/.codex}/skills"
116
136
  ln -s "$(pwd)/skill-guide" "${CODEX_HOME:-$HOME/.codex}/skills/skill-guide"
117
137
  ```
118
138
 
119
- ## Usage Examples
139
+ <details>
140
+ <summary>More installation options</summary>
120
141
 
121
- ### Run as a CLI
122
142
  ```bash
123
- npx skill-guide --open
124
- npx skill-guide --search security --open
125
- npx skill-guide --skill test-driven-development --open
126
- npx skill-guide --format json
127
- npx skill-guide --doctor
128
- ```
143
+ # Claude Code: manual symlink
144
+ git clone https://github.com/gtskevin/skill-guide.git
145
+ ln -s "$(pwd)/skill-guide" ~/.claude/skills/skill-guide
129
146
 
130
- ### Discover all your skills
131
- ```
132
- /skill-guide
147
+ # Claude Code: direct download
148
+ mkdir -p ~/.claude/skills/skill-guide
149
+ curl -sL https://github.com/gtskevin/skill-guide/archive/refs/heads/main.tar.gz \
150
+ | tar xz --strip-components=1 -C ~/.claude/skills/skill-guide
133
151
  ```
134
- Or say: "What skills do I have?" / "帮我看看我有哪些技能"
135
-
136
- In Codex, you can also say: "What Codex skills do I have?"
137
152
 
138
- ### Deep-dive one skill
139
- ```
140
- /skill-guide investigate
141
- ```
142
- Or say: "Tell me about the TDD skill" / "介绍一下 investigate 技能"
153
+ </details>
143
154
 
144
- ### Find the right skill
145
- ```
146
- Which skill should I use for code review?
147
- ```
148
- Or: "帮我推荐一个做测试的技能"
155
+ ## Platform Support
149
156
 
150
- ### Generate a full manual
151
- ```
152
- /skill-guide all
153
- ```
157
+ | Platform | Status | Scanned paths |
158
+ |---|---|---|
159
+ | Claude Code | Supported | `~/.claude/skills`, `~/.claude/plugins/marketplaces` |
160
+ | Codex | Supported | `~/.codex/skills`, `$CODEX_HOME/skills`, Codex plugin cache |
161
+ | OpenAI system Skills | Supported | `$CODEX_HOME/skills/.system` |
162
+ | cc-switch | Supported | `~/.cc-switch/skills` |
163
+ | Agent Skills | Compatible | Standard `SKILL.md` folders |
154
164
 
155
- ## How it works
165
+ ## How It Works
156
166
 
157
- ```
158
- skill-guide/
159
- ├── SKILL.md # Skill definition + HTML generation rules
160
- ├── agents/openai.yaml # Codex/OpenAI skill UI metadata
161
- ├── skill-guide.js # Deterministic CLI + HTML generator
162
- ├── scan-skills.js # Zero-dependency Node.js scanner
163
- ├── demo.html # Demo presentation (this is what you see above)
164
- └── LICENSE # MIT
167
+ ```mermaid
168
+ flowchart LR
169
+ A["Local Skill directories"] --> B["scan-skills.js"]
170
+ B --> C["Parse metadata and document sections"]
171
+ C --> D["skill-guide.js"]
172
+ D --> E["Browser-ready HTML dashboard"]
173
+ C --> F["Search, doctor, and review prompts"]
165
174
  ```
166
175
 
167
- 1. `scan-skills.js` scans Claude Code, Codex, cc-switch, and plugin skill directories; parses YAML frontmatter; extracts sections and key paragraphs
168
- 2. `skill-guide.js` turns scanner JSON into deterministic HTML slides with scroll-snap navigation, keyboard controls, and animations
169
- 3. `SKILL.md` lets Claude Code and Codex invoke the same CLI from natural language
170
- 4. Output opens in your browser — zero config, zero dependencies
176
+ The scanner uses Node.js built-ins only:
171
177
 
172
- ### Scanner modes
178
+ 1. Scan local Skill directories and plugin caches.
179
+ 2. Parse frontmatter, descriptions, triggers, declared tools, and selected document sections.
180
+ 3. Estimate description tokens and surface deterministic local review prompts.
181
+ 4. Render a standalone HTML dashboard that opens in your browser.
173
182
 
174
- | Flag | Purpose | Data |
175
- |------|---------|------|
176
- | `--list` | Discovery | Name + description + category |
177
- | `--skill <name>` | Deep-dive | Full metadata + sections + key paragraphs |
178
- | `--search <query>` | Recommendations | Matching skills with full data |
179
- | `--full` | Complete manual | All skills with full data |
180
- | `--refresh` | Force re-scan | Ignores 5-min cache |
183
+ > [!WARNING]
184
+ > `skill-guide` does not silently delete, install, or modify your Skills. Review prompts require human judgment.
181
185
 
182
- ### CLI flags
186
+ ## FAQ
183
187
 
184
- | Flag | Purpose |
185
- |------|---------|
186
- | `--open` | Open the generated HTML in your browser |
187
- | `--output <file>` | Save HTML to a specific path |
188
- | `--format html,json` | Choose HTML slides or raw scanner JSON |
189
- | `--search <query>` | Generate recommendations for a task |
190
- | `--skill <name>` | Generate a deep-dive for one skill |
191
- | `--full` | Generate a complete manual |
192
- | `--lang <code>` | UI language (en, zh, or any — auto-translated) |
193
- | `--doctor` | Check paths, sources, and scan counts |
188
+ <details>
189
+ <summary>Does skill-guide send my local Skills to a server?</summary>
194
190
 
195
- ### Doctor checks
191
+ No. Core scanning and dashboard generation run locally with Node.js built-ins. The optional `--recommend` command reads public online directories to show directory mentions.
192
+ </details>
196
193
 
197
- `npx skill-guide --doctor` reports Node.js version, Claude Code and Codex skill paths, source counts, duplicate skill names, malformed skill files, and suggested install paths.
194
+ <details>
195
+ <summary>Can it tell whether Claude Code or Codex actually invoked a Skill?</summary>
198
196
 
199
- ### Auto-categorization
197
+ Not yet. The current release scans local metadata. Reliable invocation tracking requires runtime logs or platform integrations.
198
+ </details>
200
199
 
201
- Skills are automatically sorted into 9 categories: `testing`, `design`, `security`, `documentation`, `automation`, `deployment`, `code-quality`, `development`, `other`.
200
+ <details>
201
+ <summary>Does the token estimate equal my real API cost?</summary>
202
202
 
203
- ## Language Support
203
+ No. It is a rough estimate based on description text. Runtime token usage depends on the platform, model, loaded context, and execution path.
204
+ </details>
204
205
 
205
- Automatic — ask in any language, get output in that language. No configuration needed.
206
+ <details>
207
+ <summary>Does a health warning mean I should delete a Skill?</summary>
206
208
 
207
- - **English** default
208
- - **Chinese** — built-in (`--lang zh`)
209
- - **Japanese, Korean, French, German, Spanish, ...** — agent-side translation (works in Claude Code and Codex)
209
+ No. Warnings are review candidates. Read the Skill, check its source, and confirm your actual needs before changing anything.
210
+ </details>
210
211
 
211
- ## Why skill-guide?
212
+ <details>
213
+ <summary>Which languages are supported?</summary>
212
214
 
213
- - **The only skill that maps your skills** scans Claude Code, Codex, cc-switch, and plugin sources in one visual overview
214
- - **Zero dependencies** — pure Node.js with `fs`, `path`, `os`. No `npm install` needed
215
- - **Beautiful output** — scroll-snap slides with keyboard nav, animations, and responsive design
216
- - **Any language** — ask in Chinese, get Chinese. Ask in Japanese, get Japanese. Auto-detected.
217
- - **Smart caching** — 5-minute TTL so repeated queries are instant
218
- - **5 seconds to "wow"** — `npx skill-guide --open` is all you need
215
+ Dashboard labels are built in for English and Chinese. Agents can summarize the result in other languages without rewriting the generated HTML.
216
+ </details>
219
217
 
220
218
  ## Contributing
221
219
 
222
- See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
220
+ Issues and pull requests are welcome. See [CONTRIBUTING.md](CONTRIBUTING.md) for the zero-dependency constraint and test commands.
223
221
 
224
- ## Roadmap
225
-
226
- - [ ] `--share` — generate a shareable standalone HTML or Markdown summary
227
- - [ ] Gemini CLI skill scanning (`~/.gemini/skills`)
228
- - [ ] `--diff` — show recently added/removed skills since last scan
229
- - [ ] `--export markdown` — output a Markdown table for pasting into issues and docs
230
- - [ ] Skill health scores based on frontmatter completeness
222
+ ## License
231
223
 
232
- Have an idea? [Open a feature request](https://github.com/gtskevin/skill-guide/issues/new?template=feature_request.yml).
224
+ [MIT](LICENSE)
233
225
 
234
- ## License
226
+ ---
235
227
 
236
- MIT
228
+ <div align="center">
229
+ <sub>Built with care by <a href="https://github.com/gtskevin">@gtskevin</a> for developers who want to understand Agent Skills before trusting them.</sub>
230
+ </div>