feat(skills): Import curated Apple workflow skills

Add fourteen skills from Dimillian/Skills, integrate the merged Snowflake and WordPress updates into the maintainer sync, and refresh registry metadata, attributions, walkthrough notes, and the 8.9.0 release notes while keeping validation warnings within budget.
This commit is contained in:
sickn33
2026-03-25 11:53:08 +01:00
parent 0d425400d6
commit d2be634870
110 changed files with 7118 additions and 35 deletions

View File

@@ -4,6 +4,8 @@
> These packs are curated starter recommendations for humans. Generated bundle ids in `data/bundles.json` are broader catalog/workflow groupings and do not need to map 1:1 to the editorial packs below.
> **Important:** bundles are not invokable mega-skills such as `@web-wizard` or `/essentials-bundle`. Use the individual skills listed in the pack, or use the activation scripts if you want only that bundle's skills active in your live Antigravity directory.
## Quick Start
1. **Install the repository:**
@@ -22,6 +24,12 @@
- Gemini CLI: `Use skill-name...`
- Codex CLI: `Use skill-name...`
If you want a bundle to behave like a focused active subset instead of a reading list, use:
- macOS/Linux: `./scripts/activate-skills.sh --clear Essentials`
- macOS/Linux: `./scripts/activate-skills.sh --clear "Web Wizard"`
- Windows: `.\scripts\activate-skills.bat --clear Essentials`
---
## Essentials & Core
@@ -579,4 +587,4 @@ Found a skill that should be in a bundle? Or want to create a new bundle? [Open
---
_Last updated: March 2026 | Total Skills: 1,311+ | Total Bundles: 36_
_Last updated: March 2026 | Total Skills: 1,326+ | Total Bundles: 36_

View File

@@ -6,7 +6,7 @@ Antigravity Awesome Skills gives Claude Code users an installable library of `SK
## Why use this repo for Claude Code
- It includes 1,311+ skills instead of a narrow single-domain starter pack.
- It includes 1,326+ skills instead of a narrow single-domain starter pack.
- It supports the standard `.claude/skills/` path and the Claude Code plugin marketplace flow.
- It includes onboarding docs, bundles, and workflows so new users do not need to guess where to begin.
- It covers both everyday engineering tasks and specialized work like security reviews, infrastructure, product planning, and documentation.

View File

@@ -162,6 +162,26 @@ If Antigravity becomes unstable only when the full skills library is active, swi
That guide shows how to run `scripts/activate-skills.sh` from a cloned copy of this repository so only the bundles or skill ids you need stay active in `~/.gemini/antigravity/skills`.
### Gemini CLI hangs after a few turns or says "This is taking a bit longer, we're still on it". What should I do?
Start with a quick isolation check:
1. Start a brand-new Gemini CLI conversation.
2. Try one prompt with no skills at all.
3. Try the same task again with only one small skill such as `brainstorming`.
4. Temporarily reduce your active skill set to 2-5 skills and retry.
How to interpret the result:
- If plain Gemini CLI hangs even without skills, the problem is likely on the Gemini CLI/runtime side rather than this repository.
- If plain Gemini works, but hangs only when skills are present or after several turns, the likely cause is conversation/context growth.
In that case:
- keep a much smaller active set
- start fresh conversations more often
- use the overload guide: [agent-overload-recovery.md](agent-overload-recovery.md)
### How do I update skills?
Navigate to your skills directory and pull the latest changes:
@@ -185,6 +205,22 @@ Use the `@` symbol followed by the skill name:
@brainstorming help me design a todo app
```
### Can I invoke a whole bundle like `@Essentials` or `/web-wizard`?
No. Bundles are curated lists of skills, not standalone invokable mega-skills.
Use them in one of these two ways:
- pick individual skills from the bundle and invoke those directly
- use the activation scripts if you want only that bundle's skills active in Antigravity
Examples:
```bash
./scripts/activate-skills.sh --clear Essentials
./scripts/activate-skills.sh --clear "Web Wizard"
```
### Can I use multiple skills at once?
**Yes!** You can invoke multiple skills:

View File

@@ -8,7 +8,7 @@ Antigravity Awesome Skills supports Gemini CLI through the `.gemini/skills/` pat
- It installs directly into the expected Gemini skills path.
- It includes both core software engineering skills and deeper agent/LLM-oriented skills.
- It helps new users get started with bundles and workflows rather than forcing a cold start from 1,311+ files.
- It helps new users get started with bundles and workflows rather than forcing a cold start from 1,326+ files.
- It is useful whether you want a broad internal skill library or a single repo to test many workflows quickly.
## Install Gemini CLI Skills

View File

@@ -18,7 +18,7 @@ Kiro is AWS's agentic AI IDE that combines:
Kiro's agentic capabilities are enhanced by skills that provide:
- **Domain expertise** across 1,311+ specialized areas
- **Domain expertise** across 1,326+ specialized areas
- **Best practices** from Anthropic, OpenAI, Google, Microsoft, and AWS
- **Workflow automation** for common development tasks
- **AWS-specific patterns** for serverless, infrastructure, and cloud architecture

View File

@@ -12,7 +12,7 @@ Great question! Here's what just happened and what to do next:
When you ran `npx antigravity-awesome-skills` or cloned the repository, you:
**Downloaded 1,311+ skill files** to your computer (default: `~/.gemini/antigravity/skills/`; or a custom path like `~/.agent/skills/` if you used `--path`)
**Downloaded 1,326+ skill files** to your computer (default: `~/.gemini/antigravity/skills/`; or a custom path like `~/.agent/skills/` if you used `--path`)
**Made them available** to your AI assistant
**Did NOT enable them all automatically** (they're just sitting there, waiting)
@@ -32,7 +32,7 @@ Bundles are **recommended lists** of skills grouped by role. They help you decid
**Analogy:**
- You installed a toolbox with 1,311+ tools (✅ done)
- You installed a toolbox with 1,326+ tools (✅ done)
- Bundles are like **labeled organizer trays** saying: "If you're a carpenter, start with these 10 tools"
- You don't install bundles—you **pick skills from them**
@@ -41,6 +41,7 @@ Bundles are **recommended lists** of skills grouped by role. They help you decid
❌ Separate installations
❌ Different download commands
❌ Something most users need to activate during normal install
❌ Invokable mega-skills like `@essentials` or `/web-wizard`
### Example: The "Web Wizard" Bundle
@@ -53,6 +54,13 @@ When you see the [Web Wizard bundle](bundles.md#-the-web-wizard-pack), it lists:
These are **recommendations** for which skills a web developer should try first. They're already installed—you just need to **use them in your prompts**.
If you want only one bundle active at a time in Antigravity, use the activation scripts instead of trying to invoke the bundle name directly:
```bash
./scripts/activate-skills.sh --clear Essentials
./scripts/activate-skills.sh --clear "Web Wizard"
```
---
## Step 2: How to Actually Execute/Use a Skill
@@ -88,6 +96,8 @@ The exact syntax varies by tool, but it's always simple:
Use the brainstorming skill to help me plan my app
```
If Gemini CLI starts hanging after a few turns, try a fresh conversation and temporarily reduce the active set to just 2-5 skills to rule out context growth.
#### Codex CLI
```bash
@@ -192,7 +202,7 @@ Let's actually use a skill right now. Follow these steps:
## Step 5: Picking Your First Skills (Practical Advice)
Don't try to use all 1,311+ skills at once. Here's a sensible approach:
Don't try to use all 1,326+ skills at once. Here's a sensible approach:
If you want a tool-specific starting point before choosing skills, use:
@@ -323,7 +333,7 @@ Usually no, but if your AI doesn't recognize a skill:
### "Can I load all skills into the model at once?"
No. Even though you have 1,311+ skills installed locally, you should **not** concatenate every `SKILL.md` into a single system prompt or context block.
No. Even though you have 1,326+ skills installed locally, you should **not** concatenate every `SKILL.md` into a single system prompt or context block.
The intended pattern is:

View File

@@ -34,7 +34,7 @@ antigravity-awesome-skills/
├── 📄 CONTRIBUTING.md ← Contributor workflow
├── 📄 CATALOG.md ← Full generated catalog
├── 📁 skills/ ← 1,311+ skills live here
├── 📁 skills/ ← 1,326+ skills live here
│ │
│ ├── 📁 brainstorming/
│ │ └── 📄 SKILL.md ← Skill definition
@@ -47,7 +47,7 @@ antigravity-awesome-skills/
│ │ └── 📁 2d-games/
│ │ └── 📄 SKILL.md ← Nested skills also supported
│ │
│ └── ... (1,311+ total)
│ └── ... (1,326+ total)
├── 📁 apps/
│ └── 📁 web-app/ ← Interactive browser
@@ -100,7 +100,7 @@ antigravity-awesome-skills/
```
┌─────────────────────────┐
│ 1,311+ SKILLS │
│ 1,326+ SKILLS │
└────────────┬────────────┘
┌────────────────────────┼────────────────────────┐
@@ -201,7 +201,7 @@ If you want a workspace-style manual install instead, cloning into `.agent/skill
│ ├── 📁 brainstorming/ │
│ ├── 📁 stripe-integration/ │
│ ├── 📁 react-best-practices/ │
│ └── ... (1,311+ total) │
│ └── ... (1,326+ total) │
└─────────────────────────────────────────┘
```