opencode-skills-collection 3.1.7 → 3.1.9

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 (43) hide show
  1. package/bundled-skills/.antigravity-install-manifest.json +10 -1
  2. package/bundled-skills/ai-loop/SKILL.md +136 -0
  3. package/bundled-skills/arrowspace/SKILL.md +116 -0
  4. package/bundled-skills/cron-doctor/SKILL.md +244 -0
  5. package/bundled-skills/cron-doctor/scripts/cli.js +75 -0
  6. package/bundled-skills/cron-doctor/scripts/cron-engine.js +638 -0
  7. package/bundled-skills/docs/contributors/quality-bar.md +1 -0
  8. package/bundled-skills/docs/contributors/skill-anatomy.md +19 -3
  9. package/bundled-skills/docs/integrations/jetski-cortex.md +3 -3
  10. package/bundled-skills/docs/integrations/jetski-gemini-loader/README.md +1 -1
  11. package/bundled-skills/docs/maintainers/categorization-implementation.md +14 -24
  12. package/bundled-skills/docs/maintainers/repo-growth-seo.md +3 -3
  13. package/bundled-skills/docs/maintainers/skills-update-guide.md +1 -1
  14. package/bundled-skills/docs/maintainers/smart-auto-categorization.md +24 -25
  15. package/bundled-skills/docs/users/bundles.md +1 -1
  16. package/bundled-skills/docs/users/claude-code-skills.md +1 -1
  17. package/bundled-skills/docs/users/faq.md +5 -5
  18. package/bundled-skills/docs/users/gemini-cli-skills.md +1 -1
  19. package/bundled-skills/docs/users/getting-started.md +1 -1
  20. package/bundled-skills/docs/users/kiro-integration.md +1 -1
  21. package/bundled-skills/docs/users/local-config.md +11 -11
  22. package/bundled-skills/docs/users/specialized-plugin-roadmap.md +3 -3
  23. package/bundled-skills/docs/users/usage.md +4 -4
  24. package/bundled-skills/docs/users/visual-guide.md +4 -4
  25. package/bundled-skills/docs/vietnamese/BUNDLES.vi.md +1 -1
  26. package/bundled-skills/docs/vietnamese/CONTRIBUTING.vi.md +15 -9
  27. package/bundled-skills/docs/vietnamese/FAQ.vi.md +30 -20
  28. package/bundled-skills/docs/vietnamese/GETTING_STARTED.vi.md +22 -14
  29. package/bundled-skills/docs/vietnamese/QUALITY_BAR.vi.md +9 -4
  30. package/bundled-skills/docs/vietnamese/README.vi.md +29 -30
  31. package/bundled-skills/docs/vietnamese/SKILLS_README.vi.md +3 -3
  32. package/bundled-skills/docs/vietnamese/SKILL_ANATOMY.vi.md +33 -5
  33. package/bundled-skills/docs/vietnamese/TRANSLATION_PLAN.vi.md +1 -1
  34. package/bundled-skills/docs/vietnamese/VISUAL_GUIDE.vi.md +17 -18
  35. package/bundled-skills/gh-image/SKILL.md +122 -0
  36. package/bundled-skills/github-actions-debugger/SKILL.md +99 -0
  37. package/bundled-skills/loki-mode/examples/todo-app-generated/frontend/package-lock.json +9 -9
  38. package/bundled-skills/loki-mode/examples/todo-app-generated/frontend/package.json +2 -2
  39. package/bundled-skills/premium-3d-website/SKILL.md +133 -0
  40. package/bundled-skills/sql-sentinel/SKILL.md +131 -0
  41. package/bundled-skills/web-project-brainstorming/SKILL.md +149 -0
  42. package/package.json +1 -1
  43. package/skills_index.json +176 -0
@@ -45,10 +45,12 @@ The frontmatter is at the very top, wrapped in `---`:
45
45
  ---
46
46
  name: my-skill-name
47
47
  description: "Brief description of what this skill does"
48
+ category: development
48
49
  risk: safe
49
50
  source: community
50
51
  source_repo: owner/repo
51
52
  source_type: community
53
+ date_added: "YYYY-MM-DD"
52
54
  ---
53
55
  ```
54
56
 
@@ -66,6 +68,12 @@ source_type: community
66
68
  - **Length:** Keep it under 200 characters
67
69
  - **Example:** `"Stripe payment integration patterns including checkout, subscriptions, and webhooks"`
68
70
 
71
+ #### `category`
72
+ - **What it is:** Primary grouping used by generated indexes and catalog surfaces
73
+ - **Format:** Lowercase category label
74
+ - **Example:** `category: development`
75
+ - **Note:** Tooling can infer a category for legacy skills, but new skills should declare one explicitly.
76
+
69
77
  #### `risk`
70
78
  - **What it is:** The safety classification of the skill
71
79
  - **Values:** `none` | `safe` | `critical` | `offensive` | `unknown`
@@ -95,6 +103,12 @@ source_type: community
95
103
  - **Examples:** `source_type: official`, `source_type: community`
96
104
  - **Rule:** `self` means no external README repo credit is required
97
105
 
106
+ #### `date_added`
107
+ - **What it is:** Date the skill entered this repository
108
+ - **Format:** `YYYY-MM-DD`
109
+ - **Example:** `date_added: "2026-03-06"`
110
+ - **Note:** Validation treats this as advisory for legacy content, but new contributions should include it.
111
+
98
112
  ### Optional Fields
99
113
 
100
114
  Some skills include additional metadata:
@@ -103,10 +117,12 @@ Some skills include additional metadata:
103
117
  ---
104
118
  name: my-skill-name
105
119
  description: "Brief description"
120
+ category: development
106
121
  risk: safe
107
122
  source: community
108
123
  source_repo: owner/repo
109
124
  source_type: community
125
+ date_added: "YYYY-MM-DD"
110
126
  author: "your-name-or-handle"
111
127
  tags: ["react", "typescript", "testing"]
112
128
  tools: [claude, cursor, gemini]
@@ -355,17 +371,17 @@ references/
355
371
  ## Skill Size Guidelines
356
372
 
357
373
  ### Minimum Viable Skill
358
- - **Frontmatter:** name + description
374
+ - **Frontmatter:** standard fields (`name`, `description`, `category`, `risk`, `source`, `date_added`)
359
375
  - **Content:** 100-200 words
360
376
  - **Sections:** Overview + Instructions
361
377
 
362
378
  ### Standard Skill
363
- - **Frontmatter:** name + description
379
+ - **Frontmatter:** standard fields (`name`, `description`, `category`, `risk`, `source`, `date_added`)
364
380
  - **Content:** 300-800 words
365
381
  - **Sections:** Overview + When to Use + Instructions + Examples
366
382
 
367
383
  ### Comprehensive Skill
368
- - **Frontmatter:** name + description + optional fields
384
+ - **Frontmatter:** standard fields plus `source_repo`/`source_type` for external GitHub-derived skills and optional fields where useful
369
385
  - **Content:** 800-2000 words
370
386
  - **Sections:** All recommended sections
371
387
  - **Extras:** Scripts, examples, templates
@@ -1,9 +1,9 @@
1
1
  ---
2
2
  title: Jetski/Cortex + Gemini Integration Guide
3
- description: "Use antigravity-awesome-skills with Jetski/Cortex without hitting context-window overflow with 1,684+ skills."
3
+ description: "Use antigravity-awesome-skills with Jetski/Cortex without hitting context-window overflow with 1,693+ skills."
4
4
  ---
5
5
 
6
- # Jetski/Cortex + Gemini: safe integration with 1,684+ skills
6
+ # Jetski/Cortex + Gemini: safe integration with 1,693+ skills
7
7
 
8
8
  This guide shows how to integrate the `antigravity-awesome-skills` repository with an agent based on **Jetski/Cortex + Gemini** (or similar frameworks) **without exceeding the model context window**.
9
9
 
@@ -23,7 +23,7 @@ Never do:
23
23
  - concatenate all `SKILL.md` content into a single system prompt;
24
24
  - re-inject the entire library for **every** request.
25
25
 
26
- With 1,684+ skills, this approach fills the context window before user messages are even added, causing truncation.
26
+ With 1,693+ skills, this approach fills the context window before user messages are even added, causing truncation.
27
27
 
28
28
  ---
29
29
 
@@ -21,7 +21,7 @@ This example shows one way to integrate **antigravity-awesome-skills** with a Je
21
21
  - How to enforce a **maximum number of skills per turn** via `maxSkillsPerTurn`.
22
22
  - How to choose whether to **truncate or error** when too many skills are requested via `overflowBehavior`.
23
23
 
24
- This pattern avoids context overflow when you have 1,684+ skills installed.
24
+ This pattern avoids context overflow when you have 1,693+ skills installed.
25
25
 
26
26
  Manifest contract references:
27
27
 
@@ -5,14 +5,16 @@
5
5
  ### 1. **Intelligent Auto-Categorization Script**
6
6
  Created [`tools/scripts/auto_categorize_skills.py`](../../tools/scripts/auto_categorize_skills.py) that:
7
7
  - Analyzes skill names and descriptions
8
- - Matches against keyword libraries for 13 categories
8
+ - Matches against keyword libraries that seeded the current generated category metadata
9
9
  - Automatically assigns meaningful categories
10
10
  - Removes "uncategorized" bulk assignment
11
11
 
12
- **Results:**
12
+ **Historical initial-run result:**
13
13
  - ✅ 776 skills auto-categorized
14
14
  - ✅ 46 already had categories preserved
15
- - ✅ 124 remaining uncategorized (edge cases)
15
+ - ✅ 124 remained uncategorized at the time of that run
16
+
17
+ For current counts, use `skills_index.json`; the active repository has grown beyond this historical snapshot.
16
18
 
17
19
  ### 2. **Category Distribution**
18
20
 
@@ -26,20 +28,8 @@ security: 4
26
28
 
27
29
  **After:**
28
30
  ```
29
- Backend: 164 ████████████████
30
- Web Dev: 107 ███████████
31
- Automation: 103 ███████████
32
- DevOps: 83 ████████
33
- AI/ML: 79 ████████
34
- Content: 47 █████
35
- Database: 44 █████
36
- Testing: 38 ████
37
- Security: 36 ████
38
- Cloud: 33 ███
39
- Mobile: 21 ██
40
- Game Dev: 15 ██
41
- Data Science: 14 ██
42
- Uncategorized: 126 █
31
+ Generated category metadata is now derived from the current skills_index.json.
32
+ Do not preserve these historical counts in user-facing docs.
43
33
  ```
44
34
 
45
35
  ### 3. **Updated Index Generation**
@@ -54,16 +44,16 @@ Modified [`tools/scripts/generate_index.py`](../../tools/scripts/generate_index.
54
44
  **Home Page Changes:**
55
45
  - ✅ Categories sorted by skill count (most first)
56
46
  - ✅ "Uncategorized" moved to bottom
57
- - ✅ Each shows count: "Backend (164)", "Web Dev (107)"
47
+ - ✅ Each shows counts computed from the generated index
58
48
  - ✅ Much easier to navigate
59
49
 
60
50
  **Updated Code:**
61
51
  - [`apps/web-app/src/pages/Home.tsx`](../../apps/web-app/src/pages/Home.tsx) - Smart category sorting
62
52
  - Sorts categories by count using categoryStats
63
53
  - Uncategorized always last
64
- - Displays count in dropdown
54
+ - Displays generated counts in dropdown
65
55
 
66
- ### 5. **Categorization Keywords** (13 Categories)
56
+ ### 5. **Categorization Keywords** (seed buckets)
67
57
 
68
58
  | Category | Key Keywords |
69
59
  |----------|--------------|
@@ -97,16 +87,16 @@ Created [`smart-auto-categorization.md`](smart-auto-categorization.md) with:
97
87
 
98
88
  ### Better UX
99
89
  1. **Smarter Filtering**: Categories sorted by relevance
100
- 2. **Visual Cues**: Shows count "(164 skills)""
90
+ 2. **Visual Cues**: Shows current generated counts
101
91
  3. **Uncategorized Last**: Put bad options out of sight
102
92
  4. **Meaningful Groups**: Find skills by actual function
103
93
 
104
94
  ### Example Workflow
105
95
  User wants to find database skills:
106
96
  1. Opens web app
107
- 2. Sees filter dropdown: "Backend (164) | Database (44) | Web Dev (107)..."
108
- 3. Clicks "Database (44)"
109
- 4. Gets 44 relevant SQL/MongoDB/Postgres skills
97
+ 2. Sees filter dropdown with generated category counts
98
+ 3. Clicks the current database-related category
99
+ 4. Gets the current matching SQL/MongoDB/Postgres skills
110
100
  5. Done! 🎉
111
101
 
112
102
  ## 🚀 Usage
@@ -6,7 +6,7 @@ This document keeps the repository's GitHub-facing discovery copy aligned with t
6
6
 
7
7
  Preferred positioning:
8
8
 
9
- > Installable GitHub library of 1,684+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and other AI coding assistants.
9
+ > Installable GitHub library of 1,693+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and other AI coding assistants.
10
10
 
11
11
  Key framing:
12
12
 
@@ -20,7 +20,7 @@ Key framing:
20
20
 
21
21
  Preferred description:
22
22
 
23
- > Installable GitHub library of 1,684+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.
23
+ > Installable GitHub library of 1,693+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.
24
24
 
25
25
  Preferred homepage:
26
26
 
@@ -28,7 +28,7 @@ Preferred homepage:
28
28
 
29
29
  Preferred social preview:
30
30
 
31
- - use a clean preview image that says `1,684+ Agentic Skills`;
31
+ - use a clean preview image that says `1,693+ Agentic Skills`;
32
32
  - mention Claude Code, Cursor, Codex CLI, and Gemini CLI;
33
33
  - avoid dense text and tiny logos that disappear in social cards.
34
34
 
@@ -72,7 +72,7 @@ The update process refreshes:
72
72
  - Canonical skills index (`skills_index.json`)
73
73
  - Compatibility mirror (`data/skills_index.json`)
74
74
  - Web app skills data (`apps\web-app\public\skills.json`)
75
- - All 1,684+ skills from the skills directory
75
+ - All 1,693+ skills from the skills directory
76
76
 
77
77
  ## When to Update
78
78
 
@@ -9,26 +9,28 @@ The skill collection now uses intelligent auto-categorization to eliminate "unca
9
9
  ✅ Current repository indexed through the generated catalog
10
10
  - Most skills are in meaningful categories
11
11
  - A smaller tail still needs manual review or better keyword coverage
12
- - 11 primary categories
13
- - Categories sorted by skill count (most first)
12
+ - `skills_index.json` is the source of truth for current category labels and counts
13
+ - Category filters should be derived from the generated index at build time
14
14
 
15
15
  ## Category Distribution
16
16
 
17
- | Category | Count | Examples |
18
- |----------|-------|----------|
19
- | Backend | 164 | Node.js, Django, Express, FastAPI |
20
- | Web Development | 107 | React, Vue, Tailwind, CSS |
21
- | Automation | 103 | Workflow, Scripting, RPA |
22
- | DevOps | 83 | Docker, Kubernetes, CI/CD, Git |
23
- | AI/ML | 79 | TensorFlow, PyTorch, NLP, LLM |
24
- | Content | 47 | Documentation, SEO, Writing |
25
- | Database | 44 | SQL, MongoDB, PostgreSQL |
26
- | Testing | 38 | Jest, Cypress, Unit Testing |
27
- | Security | 36 | Encryption, Authentication |
28
- | Cloud | 33 | AWS, Azure, GCP |
29
- | Mobile | 21 | React Native, Flutter, iOS |
30
- | Game Dev | 15 | Unity, WebGL, 3D |
31
- | Data Science | 14 | Pandas, NumPy, Analytics |
17
+ Do not copy fixed counts into user-facing docs. To inspect the current distribution, generate it from the index:
18
+
19
+ ```bash
20
+ node - <<'NODE'
21
+ const fs = require('fs');
22
+ const skills = JSON.parse(fs.readFileSync('skills_index.json', 'utf8'));
23
+ const counts = new Map();
24
+ for (const skill of skills) {
25
+ const category = skill.category || 'uncategorized';
26
+ counts.set(category, (counts.get(category) || 0) + 1);
27
+ }
28
+ console.log(`skills=${skills.length} categories=${counts.size}`);
29
+ for (const [category, count] of [...counts.entries()].sort((a, b) => b[1] - a[1]).slice(0, 12)) {
30
+ console.log(`${category}: ${count}`);
31
+ }
32
+ NODE
33
+ ```
32
34
 
33
35
  ## How It Works
34
36
 
@@ -91,20 +93,17 @@ Sample changes:
91
93
 
92
94
  **After:**
93
95
  - Categories sorted by skill count (most first, "uncategorized" last)
94
- - Shows count: "Backend (164)" "Web Development (107)"
96
+ - Shows counts from the generated index instead of hard-coded documentation numbers
95
97
  - Much easier to browse
96
98
 
97
99
  ### Example Dropdowns
98
100
 
99
101
  **Sorted Order:**
100
102
  1. All Categories
101
- 2. Backend (164)
102
- 3. Web Development (107)
103
- 4. Automation (103)
104
- 5. DevOps (83)
105
- 6. AI/ML (79)
106
- 7. ... more categories ...
107
- 8. Uncategorized (126) ← at the end
103
+ 2. Highest-count generated category
104
+ 3. Next generated category
105
+ 4. ... more generated categories ...
106
+ 5. Uncategorized, if present, at the end
108
107
 
109
108
  ## For Skill Creators
110
109
 
@@ -1061,4 +1061,4 @@ Found a skill that should be in a bundle? Or want to create a new bundle? [Open
1061
1061
 
1062
1062
  ---
1063
1063
 
1064
- _Last updated: June 2026 | Total Skills: 1,684+ | Total Bundles: 59_
1064
+ _Last updated: June 2026 | Total Skills: 1,693+ | Total Bundles: 59_
@@ -12,7 +12,7 @@ Install the library into Claude Code, then invoke focused skills directly in the
12
12
 
13
13
  ## Why use this repo for Claude Code
14
14
 
15
- - It includes 1,684+ skills instead of a narrow single-domain starter pack.
15
+ - It includes 1,693+ skills instead of a narrow single-domain starter pack.
16
16
  - It supports the standard `.claude/skills/` path and the Claude Code plugin marketplace flow.
17
17
  - It also ships generated bundle plugins so teams can install focused packs like `Essentials` or `Security Developer` from the marketplace metadata.
18
18
  - It includes onboarding docs, bundles, and workflows so new users do not need to guess where to begin.
@@ -103,11 +103,11 @@ No. The public site is a static GitHub Pages deploy.
103
103
 
104
104
  We classify skills so you know what you're running. These values map directly to the `risk:` field in every `SKILL.md` frontmatter:
105
105
 
106
- - 🔵 **`none`**: Pure reference or planning content no shell commands, no mutations, no network access.
107
- - **`safe`**: Community skills that are non-destructive (read-only, planning, code review, analysis).
108
- - 🔴 **`critical`**: Skills that modify files, drop data, use network scanners, or perform destructive actions. **Use with caution.**
109
- - 🟣 **`offensive`**: Security-focused offensive techniques (pentesting, exploitation). **Authorized use only** always confirm the target is in scope.
110
- - **`unknown`**: Legacy or unclassified content. Review the skill manually before use.
106
+ - **`unknown`**: Legacy or unclassified content. Review the skill manually before use.
107
+ - 🟢 **`none`**: Pure reference or planning content no shell commands, no mutations, no network access.
108
+ - 🔵 **`safe`**: Non-destructive guidance such as read-only commands, planning, code review, and analysis.
109
+ - 🟠 **`critical`**: Skills that modify files, drop data, use network scanners, or perform destructive actions. **Use with caution.**
110
+ - 🔴 **`offensive`**: Security-focused offensive techniques (pentesting, exploitation). **Authorized use only** — always confirm the target is in scope.
111
111
 
112
112
  ### Can these skills hack my computer?
113
113
 
@@ -12,7 +12,7 @@ Install into the Gemini skills path, then ask Gemini to apply one skill at a tim
12
12
 
13
13
  - It installs directly into the expected Gemini skills path.
14
14
  - It includes both core software engineering skills and deeper agent/LLM-oriented skills.
15
- - It helps new users get started with bundles and workflows rather than forcing a cold start from 1,684+ files.
15
+ - It helps new users get started with bundles and workflows rather than forcing a cold start from 1,693+ files.
16
16
  - It is useful whether you want a broad internal skill library or a single repo to test many workflows quickly.
17
17
 
18
18
  ## Install Gemini CLI Skills
@@ -1,4 +1,4 @@
1
- # Getting Started with Antigravity Awesome Skills (V13.2.0)
1
+ # Getting Started with Antigravity Awesome Skills (V13.4.0)
2
2
 
3
3
  **New here? This guide will help you supercharge your AI Agent in 5 minutes.**
4
4
 
@@ -18,7 +18,7 @@ Kiro is AWS's agentic AI IDE that combines:
18
18
 
19
19
  Kiro's agentic capabilities are enhanced by skills that provide:
20
20
 
21
- - **Domain expertise** across 1,684+ specialized areas
21
+ - **Domain expertise** across 1,693+ specialized areas
22
22
  - **Best practices** from Anthropic, OpenAI, Google, Microsoft, and AWS
23
23
  - **Workflow automation** for common development tasks
24
24
  - **AWS-specific patterns** for serverless, infrastructure, and cloud architecture
@@ -1,7 +1,7 @@
1
- # Local Skills Configuration
1
+ # Local Skills Configuration Snapshot
2
2
 
3
- > **Current Status**: All 96 skills are available in the repository.
4
- > **This Document**: Recommends 35 high-priority skills for typical usage.
3
+ > **Historical snapshot**: This page preserves an older 35-skill local configuration recommendation from 2026-01-16. It is not the current repository catalog.
4
+ > **Current catalog**: Use [`../../skills_index.json`](../../skills_index.json), [`../../CATALOG.md`](../../CATALOG.md), or the installer filters in the README for the active 1,684+ skill library.
5
5
 
6
6
  ## 📊 Recommended High-Priority Skills (35)
7
7
 
@@ -67,17 +67,17 @@ Skills actively used for your specific projects:
67
67
 
68
68
  ---
69
69
 
70
- ## 🗂️ Repository Structure
70
+ ## 🗂️ Snapshot Structure
71
71
 
72
72
  ```
73
- skills/
74
- ├── [96 active skills] ← All skills available
75
- └── [4 symlinks] ← docx, pdf, pptx, xlsx → official versions
73
+ local snapshot/
74
+ ├── [96 active skills in this snapshot]
75
+ └── [4 symlinks in this snapshot]
76
76
  ```
77
77
 
78
78
  ---
79
79
 
80
- ## 📚 Other Available Skills (61)
80
+ ## 📚 Other Snapshot Skills (61)
81
81
 
82
82
  All other skills in the repository are available for use as needed. Some notable categories:
83
83
 
@@ -140,13 +140,13 @@ Miscellaneous:
140
140
  ## 🎯 Benefits of This Recommendation
141
141
 
142
142
  ✅ **Focused Guidance** - 35 high-priority skills for common workflows
143
- ✅ **Full Availability** - All 96 skills accessible when needed
143
+ ✅ **Snapshot Availability** - All 96 skills from this older local set were accessible when needed
144
144
  ✅ **Balanced Coverage** - Core dev + AI/automation + frontend excellence
145
145
  ✅ **Easy Discovery** - Categorized list of all other available skills
146
146
 
147
147
  ---
148
148
 
149
- **Last Updated**: 2026-01-16
149
+ **Snapshot Date**: 2026-01-16
150
150
  **Recommended Skills**: 35 high-priority
151
- **Total Available**: 96 skills + 4 symlinks = 100 total
151
+ **Snapshot Total**: 96 skills + 4 symlinks = 100 total
152
152
  **Recent Additions to Recommendations**: `senior-fullstack`, `concise-planning`, `address-github-comments`, `javascript-mastery`, `workflow-automation`, `llm-app-patterns`, `autonomous-agent-patterns`, `prompt-library`
@@ -17,9 +17,9 @@ That makes specialized plugins the better default product shape. A root plugin c
17
17
 
18
18
  ## Selection Method
19
19
 
20
- This pass evaluated the full local catalog in `data/skills_index.json`:
20
+ This snapshot pass evaluated the then-current local catalog. For current catalog checks, use the canonical root `skills_index.json` and treat `data/skills_index.json` only as the compatibility mirror:
21
21
 
22
- - Total skills evaluated: 1,678.
22
+ - Total skills evaluated in this snapshot: 1,678.
23
23
  - Broadest categories: development, cloud, AI/ML, security, business, workflow, content, marketing, automation, and web development.
24
24
  - Existing editorial bundles are all small and mostly plugin-compatible, which makes them a good starting point.
25
25
  - The stronger opportunity is to turn the best bundles into first-class product plugins with sharper names, richer descriptions, and optional app/MCP extensions.
@@ -71,7 +71,7 @@ These are promising and should be hardened after Tier 1.
71
71
  3. Rename or reframe bundle plugins as product plugins where the job is clear.
72
72
  4. Add richer `interface` metadata to the strongest plugin manifests: display name, short description, brand color, and default prompt.
73
73
  5. Add per-plugin quality gates:
74
- - every skill exists in `data/skills_index.json`;
74
+ - every skill exists in canonical `skills_index.json`;
75
75
  - every skill is Codex-supported before Codex publication;
76
76
  - every skill is Claude-supported before Claude publication;
77
77
  - every plugin has a 5-10 skill target range unless it has a concrete reason to be larger;
@@ -14,7 +14,7 @@ If you came in through a **Claude Code** or **Codex** plugin instead of a full l
14
14
 
15
15
  When you ran `npx antigravity-awesome-skills` or cloned the repository, you:
16
16
 
17
- ✅ **Downloaded 1,684+ skill files** to your computer (default: `~/.agents/skills/`; or a custom path like `~/.agent/skills/` if you used `--path`)
17
+ ✅ **Downloaded 1,693+ skill files** to your computer (default: `~/.agents/skills/`; or a custom path like `~/.agent/skills/` if you used `--path`)
18
18
  ✅ **Made them available** to your AI assistant
19
19
  ❌ **Did NOT enable them all automatically** (they're just sitting there, waiting)
20
20
 
@@ -34,7 +34,7 @@ Bundles are **curated groups** of skills organized by role. They help you decide
34
34
 
35
35
  **Analogy:**
36
36
 
37
- - You installed a toolbox with 1,684+ tools (✅ done)
37
+ - You installed a toolbox with 1,693+ tools (✅ done)
38
38
  - Bundles are like **labeled organizer trays** saying: "If you're a carpenter, start with these 10 tools"
39
39
  - You can either **pick skills from the tray** or install that tray as a focused marketplace bundle plugin
40
40
 
@@ -212,7 +212,7 @@ Let's actually use a skill right now. Follow these steps:
212
212
 
213
213
  ## Step 5: Picking Your First Skills (Practical Advice)
214
214
 
215
- Don't try to use all 1,684+ skills at once. Here's a sensible approach:
215
+ Don't try to use all 1,693+ skills at once. Here's a sensible approach:
216
216
 
217
217
  If you want a tool-specific starting point before choosing skills, use:
218
218
 
@@ -343,7 +343,7 @@ Usually no, but if your AI doesn't recognize a skill:
343
343
 
344
344
  ### "Can I load all skills into the model at once?"
345
345
 
346
- No. Even though you have 1,684+ skills installed locally, you should **not** concatenate every `SKILL.md` into a single system prompt or context block.
346
+ No. Even though you have 1,693+ skills installed locally, you should **not** concatenate every `SKILL.md` into a single system prompt or context block.
347
347
 
348
348
  The intended pattern is:
349
349
 
@@ -34,7 +34,7 @@ antigravity-awesome-skills/
34
34
  ├── 📄 CONTRIBUTING.md ← Contributor workflow
35
35
  ├── 📄 CATALOG.md ← Full generated catalog
36
36
 
37
- ├── 📁 skills/ ← 1,684+ skills live here
37
+ ├── 📁 skills/ ← 1,693+ skills live here
38
38
  │ │
39
39
  │ ├── 📁 brainstorming/
40
40
  │ │ └── 📄 SKILL.md ← Skill definition
@@ -47,7 +47,7 @@ antigravity-awesome-skills/
47
47
  │ │ └── 📁 2d-games/
48
48
  │ │ └── 📄 SKILL.md ← Nested skills also supported
49
49
  │ │
50
- │ └── ... (1,684+ total)
50
+ │ └── ... (1,693+ total)
51
51
 
52
52
  ├── 📁 apps/
53
53
  │ └── 📁 web-app/ ← Interactive browser
@@ -100,7 +100,7 @@ antigravity-awesome-skills/
100
100
 
101
101
  ```
102
102
  ┌─────────────────────────┐
103
- │ 1,684+ SKILLS │
103
+ │ 1,693+ SKILLS │
104
104
  └────────────┬────────────┘
105
105
 
106
106
  ┌────────────────────────┼────────────────────────┐
@@ -201,7 +201,7 @@ If you want a workspace-style manual install instead, cloning into `.agent/skill
201
201
  │ ├── 📁 brainstorming/ │
202
202
  │ ├── 📁 stripe-integration/ │
203
203
  │ ├── 📁 react-best-practices/ │
204
- │ └── ... (1,684+ total) │
204
+ │ └── ... (1,693+ total) │
205
205
  └─────────────────────────────────────────┘
206
206
  ```
207
207
 
@@ -121,4 +121,4 @@ _Để tạo ra những trải nghiệm hoàn hảo đến từng pixel._
121
121
 
122
122
  ---
123
123
 
124
- _Để sử dụng một gói kỹ năng, chỉ cần copy tên các skill vào thư mục `.agent/skills` của bạn hoặc yêu cầu trợ lý AI sử dụng chúng._
124
+ _Để sử dụng một gói kỹ năng, hãy cài repository một lần bằng `npx antigravity-awesome-skills`, rồi yêu cầu trợ lý AI sử dụng các skill được liệt kê trong gói._
@@ -1,15 +1,15 @@
1
- # 🤝 Hướng dẫn Đóng góp - Phiên bản V3 Enterprise
1
+ # 🤝 Hướng dẫn Đóng góp
2
2
 
3
3
  **Cảm ơn bạn đã muốn làm cho repository này trở nên tốt hơn!** Hướng dẫn này sẽ chỉ cho bạn chính xác cách thức đóng góp, ngay cả khi bạn là người mới đối với mã nguồn mở.
4
- Với phiên bản V3, chúng tôi đã nâng cao các tiêu chuẩn về chất lượng. Vui lòng đọc kỹ **Tiêu chuẩn Chất lượng mới** bên dưới.
4
+ Chúng tôi duy trì tiêu chuẩn chất lượng tự động cho skill tài liệu. Vui lòng đọc kỹ **Quality Bar** bên dưới.
5
5
 
6
6
  ---
7
7
 
8
- ## 🧐 "Quy chuẩn Chất lượng" (Quality Bar - Tiêu chuẩn V3)
8
+ ## 🧐 "Quy chuẩn Chất lượng" (Quality Bar)
9
9
 
10
- **Quan trọng đối với các skill mới:** Mỗi skill được gửi đi phải vượt qua **5 bước Kiểm tra Chất lượng** (xem `docs/vietnamese/QUALITY_BAR.md` để biết chi tiết):
10
+ **Quan trọng đối với các skill mới:** Mỗi skill được gửi đi phải vượt qua **5 bước Kiểm tra Chất lượng** (xem `docs/vietnamese/QUALITY_BAR.vi.md` để biết chi tiết):
11
11
 
12
- 1. **Siêu dữ liệu (Metadata)**: Phần Frontmatter chính xác (`name`, `description`).
12
+ 1. **Siêu dữ liệu (Metadata)**: Phần frontmatter chính xác (`name`, `description`, `category`, `risk`, `source`, `date_added`; thêm `source_repo` và `source_type` cho skill bắt nguồn từ GitHub bên ngoài).
13
13
  2. **An toàn (Safety)**: Không chứa các lệnh gây hại mà không có nhãn rủi ro ("Risk").
14
14
  3. **Rõ ràng (Clarity)**: Có phần "Khi nào nên dùng" (When to use) rõ ràng.
15
15
  4. **Ví dụ (Examples)**: Ít nhất một ví dụ sử dụng có thể sao chép và dùng được ngay.
@@ -81,6 +81,9 @@ Mỗi kỹ năng đều cần cấu trúc cơ bản này. **Hãy sao chép mẫu
81
81
  ---
82
82
  name: my-awesome-skill
83
83
  description: "Mô tả ngắn gọn về chức năng của skill này"
84
+ risk: safe
85
+ source: community
86
+ date_added: 2026-06-25
84
87
  ---
85
88
 
86
89
  # Tiêu đề Skill
@@ -112,16 +115,16 @@ code ví dụ ở đây
112
115
  - ❌ Không nên làm điều này
113
116
  ```
114
117
 
115
- #### Bước 4: Xác thực (BƯỚC V3 QUAN TRỌNG)
118
+ #### Bước 4: Xác thực
116
119
 
117
120
  Chạy script xác thực (validation) tại máy của bạn. **Chúng tôi sẽ không chấp nhận các Pull Request (PR) thất bại ở bước kiểm tra này.**
118
121
 
119
122
  ```bash
120
- # Chế độ nhẹ (chỉ cảnh báo)
121
- python3 scripts/validate_skills.py
123
+ # Chế độ thông thường
124
+ npm run validate
122
125
 
123
126
  # Chế độ nghiêm ngặt (chế độ mà hệ thống CI sẽ chạy)
124
- python3 scripts/validate_skills.py --strict
127
+ npm run validate:strict
125
128
  ```
126
129
 
127
130
  Bước này sẽ kiểm tra:
@@ -149,6 +152,9 @@ Tiết kiệm thời gian! Hãy sao chép bản mẫu này:
149
152
  ---
150
153
  name: your-skill-name
151
154
  description: "Mô tả trong một câu về chức năng của skill và khi nào cần dùng"
155
+ risk: safe
156
+ source: community
157
+ date_added: 2026-06-25
152
158
  ---
153
159
 
154
160
  # Tên Kỹ năng của bạn