port-nuker 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.
- package/README.md +47 -2
- package/index.js +342 -10
- package/package.json +8 -4
- package/.agent/skills/.github/CODEOWNERS +0 -8
- package/.agent/skills/.github/ISSUE_TEMPLATE/bug_report.md +0 -33
- package/.agent/skills/.github/ISSUE_TEMPLATE/feature_request.md +0 -19
- package/.agent/skills/.github/MAINTENANCE.md +0 -230
- package/.agent/skills/.github/PULL_REQUEST_TEMPLATE.md +0 -23
- package/.agent/skills/.github/workflows/ci.yml +0 -38
- package/.agent/skills/CHANGELOG.md +0 -359
- package/.agent/skills/CONTRIBUTING.md +0 -236
- package/.agent/skills/FAQ.md +0 -178
- package/.agent/skills/GETTING_STARTED.md +0 -108
- package/.agent/skills/LICENSE +0 -21
- package/.agent/skills/README.md +0 -527
- package/.agent/skills/SECURITY.md +0 -19
- package/.agent/skills/docs/BUNDLES.md +0 -124
- package/.agent/skills/docs/CI_DRIFT_FIX.md +0 -38
- package/.agent/skills/docs/COMMUNITY_GUIDELINES.md +0 -33
- package/.agent/skills/docs/EXAMPLES.md +0 -56
- package/.agent/skills/docs/QUALITY_BAR.md +0 -64
- package/.agent/skills/docs/SECURITY_GUARDRAILS.md +0 -51
- package/.agent/skills/docs/SKILL_ANATOMY.md +0 -605
- package/.agent/skills/docs/SOURCES.md +0 -21
- package/.agent/skills/docs/VISUAL_GUIDE.md +0 -512
|
@@ -1,230 +0,0 @@
|
|
|
1
|
-
# 🛠️ Repository Maintenance Guide (V3)
|
|
2
|
-
|
|
3
|
-
> **"If it's not documented, it's broken."**
|
|
4
|
-
|
|
5
|
-
This guide details the exact procedures for maintaining `antigravity-awesome-skills`.
|
|
6
|
-
It covers the **Quality Bar**, **Documentation Consistency**, and **Release Workflows**.
|
|
7
|
-
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
## 0. 🤖 Agent Protocol (THE BIBLE)
|
|
11
|
-
|
|
12
|
-
**AGENTS MUST READ AND FOLLOW THIS SECTION BEFORE MARKING ANY TASK AS COMPLETE.**
|
|
13
|
-
|
|
14
|
-
There are 3 things that usually fail/get forgotten. **DO NOT FORGET THEM:**
|
|
15
|
-
|
|
16
|
-
### 1. 📤 ALWAYS PUSH (Non-Negotiable)
|
|
17
|
-
|
|
18
|
-
Committing is NOT enough. You must PUSH to the remote.
|
|
19
|
-
|
|
20
|
-
- **BAD**: `git commit -m "feat: new skill"` (User sees nothing)
|
|
21
|
-
- **GOOD**: `git commit -m "..." && git push origin main`
|
|
22
|
-
|
|
23
|
-
### 2. 🔄 SYNC GENERATED FILES (Avoid CI Drift)
|
|
24
|
-
|
|
25
|
-
If you touch `skills/`, you **MUST** run the validation chain.
|
|
26
|
-
|
|
27
|
-
- Running `validate_skills.py` is NOT optional.
|
|
28
|
-
- Running `generate_index.py` is NOT optional.
|
|
29
|
-
- Running `update_readme.py` is NOT optional.
|
|
30
|
-
_If CI fails because of drift, you have failed._
|
|
31
|
-
|
|
32
|
-
### 3. 📝 EVIDENCE OF WORK
|
|
33
|
-
|
|
34
|
-
- You must create/update `walkthrough.md` or `RELEASE_NOTES.md` to document what changed.
|
|
35
|
-
- If you made something new, **link it** in the artifacts.
|
|
36
|
-
|
|
37
|
-
### 4. 🚫 NO BRANCHES
|
|
38
|
-
|
|
39
|
-
- **ALWAYS use the `main` branch.**
|
|
40
|
-
- NEVER create feature branches (e.g., `feat/new-skill`).
|
|
41
|
-
- We commit directly to `main` to keep history linear and simple.
|
|
42
|
-
|
|
43
|
-
---
|
|
44
|
-
|
|
45
|
-
## 1. 🚦 Daily Maintenance Routine
|
|
46
|
-
|
|
47
|
-
### A. Validation Chain
|
|
48
|
-
|
|
49
|
-
Before ANY commit that adds/modifies skills, run the chain:
|
|
50
|
-
|
|
51
|
-
1. **Validate Metadata & Quality**:
|
|
52
|
-
|
|
53
|
-
```bash
|
|
54
|
-
python3 scripts/validate_skills.py
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
_Must return 0 errors for new skills._
|
|
58
|
-
|
|
59
|
-
2. **Regenerate Index**:
|
|
60
|
-
python3 scripts/generate_index.py
|
|
61
|
-
|
|
62
|
-
```
|
|
63
|
-
|
|
64
|
-
```
|
|
65
|
-
|
|
66
|
-
3. **Update Readme**:
|
|
67
|
-
|
|
68
|
-
```bash
|
|
69
|
-
python3 scripts/update_readme.py
|
|
70
|
-
```
|
|
71
|
-
|
|
72
|
-
4. **COMMIT GENERATED FILES**:
|
|
73
|
-
```bash
|
|
74
|
-
git add skills_index.json README.md
|
|
75
|
-
git commit -m "chore: sync generated files"
|
|
76
|
-
```
|
|
77
|
-
> 🔴 **CRITICAL**: If you skip this, CI will fail with "Detected uncommitted changes".
|
|
78
|
-
> See [docs/CI_DRIFT_FIX.md](../docs/CI_DRIFT_FIX.md) for details.
|
|
79
|
-
|
|
80
|
-
### B. Post-Merge Routine (Must Do)
|
|
81
|
-
|
|
82
|
-
After multiple PR merges or significant changes:
|
|
83
|
-
|
|
84
|
-
1. **Sync Contributors List**:
|
|
85
|
-
- Run: `git shortlog -sn --all`
|
|
86
|
-
- Update `## Repo Contributors` in README.md.
|
|
87
|
-
|
|
88
|
-
2. **Verify Table of Contents**:
|
|
89
|
-
- Ensure all new headers have clean anchors.
|
|
90
|
-
- **NO EMOJIS** in H2 headers.
|
|
91
|
-
|
|
92
|
-
3. **Draft a Release**:
|
|
93
|
-
- Go to [Releases Page](https://github.com/sickn33/antigravity-awesome-skills/releases).
|
|
94
|
-
- Draft a new release for the merged changes.
|
|
95
|
-
- Tag version (e.g., `v3.1.0`).
|
|
96
|
-
|
|
97
|
-
---
|
|
98
|
-
|
|
99
|
-
## 2. 📝 Documentation "Pixel Perfect" Rules
|
|
100
|
-
|
|
101
|
-
We discovered several consistency issues during V3 development. Follow these rules STRICTLY.
|
|
102
|
-
|
|
103
|
-
### A. Table of Contents (TOC) Anchors
|
|
104
|
-
|
|
105
|
-
GitHub's anchor generation breaks if headers have emojis.
|
|
106
|
-
|
|
107
|
-
- **BAD**: `## 🚀 New Here?` -> Anchor: `#--new-here` (Broken)
|
|
108
|
-
- **GOOD**: `## New Here?` -> Anchor: `#new-here` (Clean)
|
|
109
|
-
|
|
110
|
-
**Rule**: **NEVER put emojis in H2 (`##`) headers.** Put them in the text below if needed.
|
|
111
|
-
|
|
112
|
-
### B. The "Trinity" of Docs
|
|
113
|
-
|
|
114
|
-
If you update installation instructions or tool compatibility, you MUST update all 3 files:
|
|
115
|
-
|
|
116
|
-
1. `README.md` (Source of Truth)
|
|
117
|
-
2. `GETTING_STARTED.md` (Beginner Guide)
|
|
118
|
-
3. `FAQ.md` (Troubleshooting)
|
|
119
|
-
|
|
120
|
-
_Common pitfall: Updating the clone URL in README but leaving an old one in FAQ._
|
|
121
|
-
|
|
122
|
-
### C. Statistics Consistency (CRITICAL)
|
|
123
|
-
|
|
124
|
-
If you add/remove skills, you **MUST** ensure the total count is identical in ALL locations.
|
|
125
|
-
**Do not allow drift** (e.g., 356 in title, 354 in header).
|
|
126
|
-
|
|
127
|
-
Locations to check:
|
|
128
|
-
|
|
129
|
-
1. **Title of `README.md`**: "356+ Agentic Skills..."
|
|
130
|
-
2. **`## Full Skill Registry (356/356)` header**.
|
|
131
|
-
3. **`GETTING_STARTED.md` intro**.
|
|
132
|
-
|
|
133
|
-
### D. Credits Policy (Who goes where?)
|
|
134
|
-
|
|
135
|
-
- **Credits & Sources**: Use this for **External Repos**.
|
|
136
|
-
- _Rule_: "I extracted skills from this link you sent me." -> Add to `## Credits & Sources`.
|
|
137
|
-
- **Repo Contributors**: Use this for **Pull Requests**.
|
|
138
|
-
- _Rule_: "This user sent a PR." -> Add to `## Repo Contributors`.
|
|
139
|
-
|
|
140
|
-
### E. Badges & Links
|
|
141
|
-
|
|
142
|
-
- **Antigravity Badge**: Must point to `https://github.com/sickn33/antigravity-awesome-skills`, NOT `anthropics/antigravity`.
|
|
143
|
-
- **License**: Ensure the link points to `LICENSE` file.
|
|
144
|
-
|
|
145
|
-
---
|
|
146
|
-
|
|
147
|
-
## 3. 🛡️ Governance & Quality Bar
|
|
148
|
-
|
|
149
|
-
### A. The 5-Point Quality Check
|
|
150
|
-
|
|
151
|
-
Reject any PR that fails this:
|
|
152
|
-
|
|
153
|
-
1. **Metadata**: Has `name`, `description`?
|
|
154
|
-
2. **Safety**: `risk: offensive` used for red-team tools?
|
|
155
|
-
3. **Clarity**: Does it say _when_ to use it?
|
|
156
|
-
4. **Examples**: Copy-pasteable code blocks?
|
|
157
|
-
5. **Actions**: "Run this command" vs "Think about this".
|
|
158
|
-
|
|
159
|
-
### B. Risk Labels (V3)
|
|
160
|
-
|
|
161
|
-
- ⚪ **Safe**: Default.
|
|
162
|
-
- 🔴 **Risk**: Destructive/Security tools. MUST have `[Authorized Use Only]` warning.
|
|
163
|
-
- 🟣 **Official**: Vendor mirrors only.
|
|
164
|
-
|
|
165
|
-
---
|
|
166
|
-
|
|
167
|
-
## 4. 🚀 Release Workflow
|
|
168
|
-
|
|
169
|
-
When cutting a new version (e.g., V4):
|
|
170
|
-
|
|
171
|
-
1. **Run Full Validation**: `python3 scripts/validate_skills.py --strict`
|
|
172
|
-
2. **Update Changelog**: Create `RELEASE_NOTES.md`.
|
|
173
|
-
3. **Bump Version**: Update header in `README.md`.
|
|
174
|
-
4. **Tag Release**:
|
|
175
|
-
```bash
|
|
176
|
-
git tag -a v3.0.0 -m "V3 Enterprise Edition"
|
|
177
|
-
git push origin v3.0.0
|
|
178
|
-
```
|
|
179
|
-
|
|
180
|
-
### 📋 Release Note Template
|
|
181
|
-
|
|
182
|
-
All changeslogs/release notes MUST follow this structure to ensure professionalism and quality:
|
|
183
|
-
|
|
184
|
-
```markdown
|
|
185
|
-
# Release vX.Y.Z: [Theme Name]
|
|
186
|
-
|
|
187
|
-
> **[One-line catchy summary of the release]**
|
|
188
|
-
|
|
189
|
-
[Brief 2-3 sentence intro about the release's impact]
|
|
190
|
-
|
|
191
|
-
## 🚀 New Skills
|
|
192
|
-
|
|
193
|
-
### [Emoji] [Skill Name](skills/skill-name/)
|
|
194
|
-
|
|
195
|
-
**[Bold high-level benefit]**
|
|
196
|
-
[Description of what it does]
|
|
197
|
-
|
|
198
|
-
- **Key Feature 1**: [Detail]
|
|
199
|
-
- **Key Feature 2**: [Detail]
|
|
200
|
-
|
|
201
|
-
> **Try it:** `(User Prompt) ...`
|
|
202
|
-
|
|
203
|
-
---
|
|
204
|
-
|
|
205
|
-
## 📦 Improvements
|
|
206
|
-
|
|
207
|
-
- **Registry Update**: Now tracking [N] skills.
|
|
208
|
-
- **[Component]**: [Change detail]
|
|
209
|
-
|
|
210
|
-
## 👥 Credits
|
|
211
|
-
|
|
212
|
-
A huge shoutout to our community contributors:
|
|
213
|
-
|
|
214
|
-
- **@username** for `skill-name`
|
|
215
|
-
- **@username** for `fix-name`
|
|
216
|
-
|
|
217
|
-
---
|
|
218
|
-
|
|
219
|
-
_Upgrade now: `git pull origin main` to fetch the latest skills._
|
|
220
|
-
```
|
|
221
|
-
|
|
222
|
-
---
|
|
223
|
-
|
|
224
|
-
## 5. 🚨 Emergency Fixes
|
|
225
|
-
|
|
226
|
-
If a skill is found to be harmful or broken:
|
|
227
|
-
|
|
228
|
-
1. **Move to broken folder** (don't detect): `mv skills/bad-skill skills/.broken/`
|
|
229
|
-
2. **Or Add Warning**: Add `> [!WARNING]` to the top of `SKILL.md`.
|
|
230
|
-
3. **Push Immediately**.
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# Pull Request Description
|
|
2
|
-
|
|
3
|
-
Please include a summary of the change and which skill is added or fixed.
|
|
4
|
-
|
|
5
|
-
## Quality Bar Checklist ✅
|
|
6
|
-
|
|
7
|
-
**All items must be checked before merging.**
|
|
8
|
-
|
|
9
|
-
- [ ] **Standards**: I have read `docs/QUALITY_BAR.md` and `docs/SECURITY_GUARDRAILS.md`.
|
|
10
|
-
- [ ] **Metadata**: The `SKILL.md` frontmatter is valid (checked with `scripts/validate_skills.py`).
|
|
11
|
-
- [ ] **Risk Label**: I have assigned the correct `risk:` tag (`none`, `safe`, `critical`, `offensive`).
|
|
12
|
-
- [ ] **Triggers**: The "When to use" section is clear and specific.
|
|
13
|
-
- [ ] **Security**: If this is an _offensive_ skill, I included the "Authorized Use Only" disclaimer.
|
|
14
|
-
- [ ] **Local Test**: I have verified the skill works locally.
|
|
15
|
-
- [ ] **Credits**: I have added the source credit in `README.md` (if applicable).
|
|
16
|
-
|
|
17
|
-
## Type of Change
|
|
18
|
-
|
|
19
|
-
- [ ] New Skill (Feature)
|
|
20
|
-
- [ ] Documentation Update
|
|
21
|
-
- [ ] Infrastructure
|
|
22
|
-
|
|
23
|
-
## Screenshots (if applicable)
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
name: Skills Registry CI
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches: ["main", "feat/*"]
|
|
6
|
-
pull_request:
|
|
7
|
-
branches: ["main"]
|
|
8
|
-
|
|
9
|
-
jobs:
|
|
10
|
-
validate-and-build:
|
|
11
|
-
runs-on: ubuntu-latest
|
|
12
|
-
steps:
|
|
13
|
-
- uses: actions/checkout@v4
|
|
14
|
-
|
|
15
|
-
- name: Set up Python
|
|
16
|
-
uses: actions/setup-python@v5
|
|
17
|
-
with:
|
|
18
|
-
python-version: "3.10"
|
|
19
|
-
|
|
20
|
-
- name: Install dependencies
|
|
21
|
-
run: |
|
|
22
|
-
pip install pyyaml
|
|
23
|
-
|
|
24
|
-
- name: 🔍 Validate Skills (Soft Mode)
|
|
25
|
-
run: |
|
|
26
|
-
python3 scripts/validate_skills.py
|
|
27
|
-
|
|
28
|
-
- name: 🏗️ Generate Index
|
|
29
|
-
run: |
|
|
30
|
-
python3 scripts/generate_index.py
|
|
31
|
-
|
|
32
|
-
- name: 📝 Update README
|
|
33
|
-
run: |
|
|
34
|
-
python3 scripts/update_readme.py
|
|
35
|
-
|
|
36
|
-
- name: 🚨 Check for Uncommitted Drift
|
|
37
|
-
run: |
|
|
38
|
-
git diff --exit-code || (echo "❌ Detected uncommitted changes in README.md or skills_index.json. Please run scripts locally and commit." && exit 1)
|
|
@@ -1,359 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to the **Antigravity Awesome Skills** collection are documented in this file.
|
|
4
|
-
|
|
5
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
-
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
---
|
|
11
|
-
|
|
12
|
-
---
|
|
13
|
-
|
|
14
|
-
## [3.3.0] - 2026-01-26 - "News & Research"
|
|
15
|
-
|
|
16
|
-
### Added
|
|
17
|
-
|
|
18
|
-
- **New Skills**:
|
|
19
|
-
- `last30days`: Research any topic from the last 30 days on Reddit + X + Web.
|
|
20
|
-
- `daily-news-report`: Generate daily news reports from multiple sources.
|
|
21
|
-
|
|
22
|
-
### Changed
|
|
23
|
-
|
|
24
|
-
- **Registry**: Updated `skills_index.json` and `README.md` registry (Total: 255 skills).
|
|
25
|
-
|
|
26
|
-
## [3.2.0] - 2026-01-26 - "Clarity & Consistency"
|
|
27
|
-
|
|
28
|
-
### Changed
|
|
29
|
-
|
|
30
|
-
- **Skills Refactoring**: Significant overhaul of `backend-dev-guidelines`, `frontend-design`, `frontend-dev-guidelines`, and `mobile-design`.
|
|
31
|
-
- **Consolidation**: Merged fragmented documentation into single, authoritative `SKILL.md` files.
|
|
32
|
-
- **Final Laws**: Introduced "Final Laws" sections to provide strict, non-negotiable decision frameworks.
|
|
33
|
-
- **Simplification**: Removed external file dependencies to improve context retrieval for AI agents.
|
|
34
|
-
|
|
35
|
-
### Fixed
|
|
36
|
-
|
|
37
|
-
- **Validation**: Fixed critical YAML frontmatter formatting issues in `seo-fundamentals`, `programmatic-seo`, and `schema-markup` that were blocking strict validation.
|
|
38
|
-
- **Merge Conflicts**: Resolved text artifact conflicts in SEO skills.
|
|
39
|
-
|
|
40
|
-
## [3.1.0] - 2026-01-26 - "Stable & Deterministic"
|
|
41
|
-
|
|
42
|
-
### Fixed
|
|
43
|
-
|
|
44
|
-
- **CI/CD Drift**: Resolved persistent "Uncommitted Changes" errors in CI by making the index generation script deterministic (sorting by name + ID).
|
|
45
|
-
- **Registry Sync**: Synced `README.md` and `skills_index.json` to accurately reflect all 253 skills.
|
|
46
|
-
|
|
47
|
-
### Added (Registry Restore)
|
|
48
|
-
|
|
49
|
-
The following skills are now correctly indexed and visible in the registry:
|
|
50
|
-
|
|
51
|
-
- **Marketing & Growth**: `programmatic-seo`, `schema-markup`, `seo-fundamentals`, `form-cro`, `popup-cro`, `analytics-tracking`.
|
|
52
|
-
- **Security**: `windows-privilege-escalation`, `wireshark-analysis`, `wordpress-penetration-testing`, `writing-plans`.
|
|
53
|
-
- **Development**: `tdd-workflow`, `web-performance-optimization`, `webapp-testing`, `workflow-automation`, `zapier-make-patterns`.
|
|
54
|
-
- **Maker Tools**: `telegram-bot-builder`, `telegram-mini-app`, `viral-generator-builder`.
|
|
55
|
-
|
|
56
|
-
### Changed
|
|
57
|
-
|
|
58
|
-
- **Documentation**: Added `docs/CI_DRIFT_FIX.md` as a canonical reference for resolving drift issues.
|
|
59
|
-
- **Guidance**: Updated `GETTING_STARTED.md` counts to match the full registry (253+ skills).
|
|
60
|
-
- **Maintenance**: Updated `MAINTENANCE.md` with strict protocols for handling generated files.
|
|
61
|
-
|
|
62
|
-
## [3.0.0] - 2026-01-25 - "The Governance Update"
|
|
63
|
-
|
|
64
|
-
### Added
|
|
65
|
-
|
|
66
|
-
- **Governance & Security**:
|
|
67
|
-
- `docs/QUALITY_BAR.md`: Defined 5-point validation standard (Metadata, Risk, Triggers).
|
|
68
|
-
- `docs/SECURITY_GUARDRAILS.md`: Enforced "Authorized Use Only" for offensive skills.
|
|
69
|
-
- `CODE_OF_CONDUCT.md`: Adhered to Contributor Covenant v2.1.
|
|
70
|
-
- **Automation**:
|
|
71
|
-
- `scripts/validate_skills.py`: Automated Quality Bar enforcement (Soft Mode supported).
|
|
72
|
-
- `.github/workflows/ci.yml`: Automated PR checks.
|
|
73
|
-
- `scripts/generate_index.py`: Registry generation with Risk & Source columns.
|
|
74
|
-
- **Experience**:
|
|
75
|
-
- `docs/BUNDLES.md`: 9 Starter Packs (Essentials, Security, Web, Agent, Game Dev, DevOps, Data, Testing, Creative).
|
|
76
|
-
- **Interactive Registry**: README now features Risk Levels (🔴/🟢/🟣) and Collections.
|
|
77
|
-
- **Documentation**:
|
|
78
|
-
- `docs/EXAMPLES.md`: Cookbook with 3 real-world scenarios.
|
|
79
|
-
- `docs/SOURCES.md`: Legal ledger for attributions and licenses.
|
|
80
|
-
- `RELEASE_NOTES.md`: Generated release announcement (archived).
|
|
81
|
-
|
|
82
|
-
### Changed
|
|
83
|
-
|
|
84
|
-
- **Standardization**: All 250+ skills are now validated against the new Quality Bar schema.
|
|
85
|
-
- **Project Structure**: Introduced `docs/` folder for scalable documentation.
|
|
86
|
-
|
|
87
|
-
## [2.14.0] - 2026-01-25 - "Web Intelligence & Windows"
|
|
88
|
-
|
|
89
|
-
### Added
|
|
90
|
-
|
|
91
|
-
- **New Skill**:
|
|
92
|
-
- `context7-auto-research`: Auto-research capability for Claude Code.
|
|
93
|
-
- `codex-review`: Professional code review with AI integration.
|
|
94
|
-
- `exa-search`: Semantic search and discovery using Exa API.
|
|
95
|
-
- `firecrawl-scraper`: Deep web scraping and PDF parsing.
|
|
96
|
-
- `tavily-web`: Content extraction and research using Tavily.
|
|
97
|
-
- `busybox-on-windows`: UNIX tool suite for Windows environments.
|
|
98
|
-
|
|
99
|
-
### Changed
|
|
100
|
-
|
|
101
|
-
- **Documentation**: Updated `obsidian-clipper-template-creator` docs and templates.
|
|
102
|
-
- **Index & Registry**: Updated `skills_index.json` and `README.md` registry.
|
|
103
|
-
|
|
104
|
-
### Fixed
|
|
105
|
-
|
|
106
|
-
- **Skills**: Fixed YAML frontmatter quoting in `lint-and-validate`.
|
|
107
|
-
|
|
108
|
-
## [2.13.0] - 2026-01-24 - "NoSQL Expert"
|
|
109
|
-
|
|
110
|
-
### Added
|
|
111
|
-
|
|
112
|
-
- **New Skill**:
|
|
113
|
-
- `nosql-expert`: Expert guidance for distributed NoSQL databases (Cassandra, DynamoDB), focusing on query-first modeling and anti-patterns.
|
|
114
|
-
|
|
115
|
-
### Changed
|
|
116
|
-
|
|
117
|
-
- **Index & Registry**: Updated `skills_index.json` and `README.md` registry.
|
|
118
|
-
|
|
119
|
-
### Contributors
|
|
120
|
-
|
|
121
|
-
- [@sickn33](https://github.com/sickn33) - PR #23
|
|
122
|
-
|
|
123
|
-
## [2.12.0] - 2026-01-23 - "Enterprise & UI Power"
|
|
124
|
-
|
|
125
|
-
### Added
|
|
126
|
-
|
|
127
|
-
- **New Skills**:
|
|
128
|
-
- `production-code-audit`: Comprehensive enterprise auditing skill for production readiness.
|
|
129
|
-
- `avalonia-layout-zafiro`: Zafiro layout guidelines for Avalonia UI.
|
|
130
|
-
- `avalonia-viewmodels-zafiro`: ViewModel composition patterns for Avalonia.
|
|
131
|
-
- `avalonia-zafiro-development`: Core development rules for Avalonia Zafiro applications.
|
|
132
|
-
|
|
133
|
-
### Changed
|
|
134
|
-
|
|
135
|
-
- **Index & Registry**: Updated `skills_index.json` and `README.md` registry (Total: 243 skills).
|
|
136
|
-
|
|
137
|
-
### Contributors
|
|
138
|
-
|
|
139
|
-
- [@SuperJMN](https://github.com/SuperJMN) - PR #20
|
|
140
|
-
- [@Mohammad-Faiz-Cloud-Engineer](https://github.com/Mohammad-Faiz-Cloud-Engineer) - PR #21
|
|
141
|
-
|
|
142
|
-
## [2.11.0] - 2026-01-23 - "Postgres Performance"
|
|
143
|
-
|
|
144
|
-
### Added
|
|
145
|
-
|
|
146
|
-
- **New Skill**:
|
|
147
|
-
- `postgres-best-practices`: Comprehensive Supabase PostgreSQL performance optimization guide with 30+ rules covering query performance, connection management, RLS security, schema design, locking, and monitoring.
|
|
148
|
-
|
|
149
|
-
### Changed
|
|
150
|
-
|
|
151
|
-
- **Official Sources**: Added [supabase/agent-skills](https://github.com/supabase/agent-skills) to Credits & Sources.
|
|
152
|
-
- **Index & Registry**: Updated `skills_index.json` and `README.md` registry (Total: 239 skills).
|
|
153
|
-
|
|
154
|
-
### Contributors
|
|
155
|
-
|
|
156
|
-
- [@ar27111994](https://github.com/ar27111994) - PR #19
|
|
157
|
-
|
|
158
|
-
---
|
|
159
|
-
|
|
160
|
-
## [2.10.0] - 2026-01-22 - "Developer Excellence"
|
|
161
|
-
|
|
162
|
-
### Added
|
|
163
|
-
|
|
164
|
-
- **New Skills**:
|
|
165
|
-
- `api-security-best-practices`: Comprehensive guide for secure API design and defense.
|
|
166
|
-
- `environment-setup-guide`: Systematic approach to project onboarding and tool configuration.
|
|
167
|
-
- `web-performance-optimization`: Methodologies for optimizing Core Web Vitals and loading speed.
|
|
168
|
-
|
|
169
|
-
### Changed
|
|
170
|
-
|
|
171
|
-
- **Enhanced Skill**:
|
|
172
|
-
- `code-review-checklist`: Replaced with a much more detailed and systematic version covering functionality, security, and quality.
|
|
173
|
-
|
|
174
|
-
### Fixed
|
|
175
|
-
|
|
176
|
-
- **Index & Registry**: Updated `skills_index.json` and `README.md` registry (Total: 238 skills).
|
|
177
|
-
|
|
178
|
-
### Added
|
|
179
|
-
|
|
180
|
-
- **Automation Support**:
|
|
181
|
-
- `scripts/update_readme.py`: Automated script to sync skill counts and regenerate the registry table.
|
|
182
|
-
- Updated `MAINTENANCE.md` to reflect the new automated workflow.
|
|
183
|
-
- **Repository Quality**:
|
|
184
|
-
- `MAINTENANCE.md` is now tracked in the repository (removed from `.gitignore`).
|
|
185
|
-
- Improved contribution guidelines.
|
|
186
|
-
|
|
187
|
-
## [2.8.0] - 2026-01-22 - "Documentation Power"
|
|
188
|
-
|
|
189
|
-
### Added
|
|
190
|
-
|
|
191
|
-
- **API Documentation Generator**: New skill to automatically generate comprehensive API documentation (`skills/api-documentation-generator`).
|
|
192
|
-
- **Remotion Best Practices**: 28 modular rules for programmatic video creation (`skills/remotion-best-practices`).
|
|
193
|
-
|
|
194
|
-
## [2.7.0] - 2026-01-22 - "Agent Memory"
|
|
195
|
-
|
|
196
|
-
### Added
|
|
197
|
-
|
|
198
|
-
- **Agent Memory MCP**: New skill providing persistent, searchable knowledge management for AI agents (`skills/agent-memory-mcp`).
|
|
199
|
-
|
|
200
|
-
### Changed
|
|
201
|
-
|
|
202
|
-
- **Renamed Skill**: `agent-memory` was renamed to `agent-memory-mcp` to avoid naming conflicts.
|
|
203
|
-
|
|
204
|
-
---
|
|
205
|
-
|
|
206
|
-
## [2.6.0] - 2026-01-21 - "Everything Skills Edition"
|
|
207
|
-
|
|
208
|
-
### Added
|
|
209
|
-
|
|
210
|
-
- **8 Verified Skills** from [affaan-m/everything-claude-code](https://github.com/affaan-m/everything-claude-code):
|
|
211
|
-
- `cc-skill-backend-patterns`
|
|
212
|
-
- `cc-skill-clickhouse-io`
|
|
213
|
-
- `cc-skill-coding-standards`
|
|
214
|
-
- `cc-skill-continuous-learning`
|
|
215
|
-
- `cc-skill-frontend-patterns`
|
|
216
|
-
- `cc-skill-project-guidelines-example`
|
|
217
|
-
- `cc-skill-security-review`
|
|
218
|
-
- `cc-skill-strategic-compact`
|
|
219
|
-
- **Documentation**: New `WALKTHROUGH.md` for import process details.
|
|
220
|
-
|
|
221
|
-
### Changed
|
|
222
|
-
|
|
223
|
-
- **Skill Cleanup**: Removed 27 unwanted agents, commands, and rules from the `everything-claude-code` import to focus strictly on skills.
|
|
224
|
-
- **Index**: Regenerated `skills_index.json` (Total: 233 skills).
|
|
225
|
-
- **Credits**: Updated README credits and registry.
|
|
226
|
-
|
|
227
|
-
## [1.0.0] - 2026-01-19 - "Marketing Edition"
|
|
228
|
-
|
|
229
|
-
### Added
|
|
230
|
-
|
|
231
|
-
- **23 Marketing & Growth skills** from [coreyhaines31/marketingskills](https://github.com/coreyhaines31/marketingskills):
|
|
232
|
-
- **CRO**: `page-cro`, `signup-flow-cro`, `onboarding-cro`, `form-cro`, `popup-cro`, `paywall-upgrade-cro`
|
|
233
|
-
- **Content**: `copywriting`, `copy-editing`, `email-sequence`
|
|
234
|
-
- **SEO**: `seo-audit`, `programmatic-seo`, `schema-markup`, `competitor-alternatives`
|
|
235
|
-
- **Paid**: `paid-ads`, `social-content`
|
|
236
|
-
- **Growth**: `referral-program`, `launch-strategy`, `free-tool-strategy`
|
|
237
|
-
- **Analytics**: `ab-test-setup`, `analytics-tracking`
|
|
238
|
-
- **Strategy**: `pricing-strategy`, `marketing-ideas`, `marketing-psychology`
|
|
239
|
-
- New "Marketing & Growth" category in Features table
|
|
240
|
-
|
|
241
|
-
### Changed
|
|
242
|
-
|
|
243
|
-
- Total skills count: **179**
|
|
244
|
-
|
|
245
|
-
---
|
|
246
|
-
|
|
247
|
-
## [0.7.0] - 2026-01-19 - "Education Edition"
|
|
248
|
-
|
|
249
|
-
### Added
|
|
250
|
-
|
|
251
|
-
- **Moodle External API Development** skill via PR #6
|
|
252
|
-
- Comprehensive Moodle LMS web service API development
|
|
253
|
-
|
|
254
|
-
### Changed
|
|
255
|
-
|
|
256
|
-
- Total skills count: **156**
|
|
257
|
-
|
|
258
|
-
---
|
|
259
|
-
|
|
260
|
-
## [0.6.0] - 2026-01-19 - "Vibeship Integration"
|
|
261
|
-
|
|
262
|
-
### Added
|
|
263
|
-
|
|
264
|
-
- **57 skills** from [vibeforge1111/vibeship-spawner-skills](https://github.com/vibeforge1111/vibeship-spawner-skills):
|
|
265
|
-
- AI Agents category (~30 skills)
|
|
266
|
-
- Integrations & APIs (~25 skills)
|
|
267
|
-
- Maker Tools (~11 skills)
|
|
268
|
-
- Alphabetically sorted skill registry
|
|
269
|
-
|
|
270
|
-
### Changed
|
|
271
|
-
|
|
272
|
-
- Total skills count: **155**
|
|
273
|
-
|
|
274
|
-
---
|
|
275
|
-
|
|
276
|
-
## [0.5.0] - 2026-01-18 - "Agent Manager"
|
|
277
|
-
|
|
278
|
-
### Added
|
|
279
|
-
|
|
280
|
-
- **Agent Manager Skill** - Multi-agent orchestration via tmux
|
|
281
|
-
- Major repository expansion with community contributions
|
|
282
|
-
|
|
283
|
-
### Changed
|
|
284
|
-
|
|
285
|
-
- Total skills count: **131**
|
|
286
|
-
|
|
287
|
-
---
|
|
288
|
-
|
|
289
|
-
## [0.4.0] - 2026-01-18 - "Security Fortress"
|
|
290
|
-
|
|
291
|
-
### Added
|
|
292
|
-
|
|
293
|
-
- **60+ Cybersecurity skills** from [zebbern/claude-code-guide](https://github.com/zebbern/claude-code-guide):
|
|
294
|
-
- Ethical Hacking Methodology
|
|
295
|
-
- Metasploit Framework
|
|
296
|
-
- Burp Suite Testing
|
|
297
|
-
- SQLMap, Active Directory, AWS Pentesting
|
|
298
|
-
- OWASP Top 100 Vulnerabilities
|
|
299
|
-
- Red Team Tools
|
|
300
|
-
- `claude-code-guide` skill
|
|
301
|
-
|
|
302
|
-
### Changed
|
|
303
|
-
|
|
304
|
-
- Total skills count: ~90
|
|
305
|
-
|
|
306
|
-
---
|
|
307
|
-
|
|
308
|
-
## [0.3.0] - 2026-01-17 - "First Stable Registry"
|
|
309
|
-
|
|
310
|
-
### Added
|
|
311
|
-
|
|
312
|
-
- Complete skill registry table in README
|
|
313
|
-
- GitHub workflow automation
|
|
314
|
-
- SEO optimizations
|
|
315
|
-
|
|
316
|
-
### Changed
|
|
317
|
-
|
|
318
|
-
- Total skills count: **71**
|
|
319
|
-
|
|
320
|
-
---
|
|
321
|
-
|
|
322
|
-
## [0.2.0] - 2026-01-16 - "Official Skills"
|
|
323
|
-
|
|
324
|
-
### Added
|
|
325
|
-
|
|
326
|
-
- **Official Anthropic skills** integration
|
|
327
|
-
- **Vercel Labs skills** integration
|
|
328
|
-
- BlockRun: Agent Wallet for LLM Micropayments
|
|
329
|
-
- 7 new skills from GitHub analysis
|
|
330
|
-
|
|
331
|
-
### Changed
|
|
332
|
-
|
|
333
|
-
- Total skills count: **~65**
|
|
334
|
-
|
|
335
|
-
---
|
|
336
|
-
|
|
337
|
-
## [0.1.0] - 2026-01-15 - "Initial Release"
|
|
338
|
-
|
|
339
|
-
### Added
|
|
340
|
-
|
|
341
|
-
- **58 core skills** aggregated from community:
|
|
342
|
-
- [obra/superpowers](https://github.com/obra/superpowers) - Original Superpowers
|
|
343
|
-
- [guanyang/antigravity-skills](https://github.com/guanyang/antigravity-skills) - Core extensions
|
|
344
|
-
- [diet103/claude-code-infrastructure-showcase](https://github.com/diet103/claude-code-infrastructure-showcase) - Infrastructure skills
|
|
345
|
-
- [ChrisWiles/claude-code-showcase](https://github.com/ChrisWiles/claude-code-showcase) - React UI patterns
|
|
346
|
-
- [travisvn/awesome-claude-skills](https://github.com/travisvn/awesome-claude-skills) - Loki Mode
|
|
347
|
-
- [alirezarezvani/claude-skills](https://github.com/alirezarezvani/claude-skills) - Senior Engineering
|
|
348
|
-
- Universal **SKILL.md** format
|
|
349
|
-
- Compatibility with Claude Code, Gemini CLI, Cursor, Copilot, Antigravity
|
|
350
|
-
|
|
351
|
-
---
|
|
352
|
-
|
|
353
|
-
## Credits
|
|
354
|
-
|
|
355
|
-
See [README.md](README.md#credits--sources) for full attribution.
|
|
356
|
-
|
|
357
|
-
## License
|
|
358
|
-
|
|
359
|
-
MIT License - See [LICENSE](LICENSE) for details.
|