agentic-awesome-skills 17.2.0 → 17.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/README.md +19 -12
- package/data/aas-v1/catalog-manifest.v1.json +1 -1
- package/data/aas-v1/skill-content-index.v1.json +1 -1
- package/data/aas-v1/skill-content.v1.ndjson +12 -9
- package/data/catalog.json +150 -46
- package/data/plugin-compatibility.json +60 -3
- package/data/skills_index.json +101 -8
- package/package.json +2 -2
- package/skills/antigravity-maintainer-batch-release/SKILL.md +1 -1
- package/skills/cv-generator/references/detailed-guide.md +0 -25
- package/skills/de-ai-writer/SKILL.md +144 -0
- package/skills/de-ai-writer/references/ai-patterns-zh.md +368 -0
- package/skills/seo-aeo-blog-writer/SKILL.md +140 -59
- package/skills/seo-aeo-content-cluster/SKILL.md +180 -61
- package/skills/seo-aeo-content-quality-auditor/SKILL.md +221 -64
- package/skills/seo-aeo-content-quality-auditor/references/seo-audit-checklist.md +63 -0
- package/skills/seo-aeo-internal-linking/SKILL.md +220 -59
- package/skills/seo-aeo-keyword-research/SKILL.md +297 -76
- package/skills/seo-aeo-landing-page-writer/SKILL.md +116 -83
- package/skills/seo-aeo-meta-description-generator/SKILL.md +316 -62
- package/skills/seo-aeo-orchestrator/SKILL.md +281 -0
- package/skills/seo-aeo-schema-generator/SKILL.md +302 -68
- package/skills/seo-aeo-schema-generator/references/aggregate-rating-schema.json +8 -0
- package/skills/seo-aeo-schema-generator/references/article-schema.json +10 -0
- package/skills/seo-aeo-schema-generator/references/breadcrumb-schema.json +5 -0
- package/skills/seo-aeo-schema-generator/references/faq-schema.json +5 -0
- package/skills/seo-aeo-schema-generator/references/howto-schema.json +7 -0
- package/skills/seo-aeo-schema-generator/references/organization-schema.json +7 -0
- package/skills/seo-aeo-schema-generator/references/product-schema.json +8 -0
- package/skills/seo-aeo-schema-generator/references/review-schema.json +8 -0
- package/skills/seo-aeo-schema-generator/references/webpage-schema.json +7 -0
- package/skills/seo-aeo-schema-generator/references/website-schema.json +7 -0
- package/skills/youtube-transcript-skills/SKILL.md +110 -0
- package/skills_index.json +101 -8
- package/tools/lib/workflow-contract.js +15 -2
package/README.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
<!-- registry-sync: version=17.
|
|
1
|
+
<!-- registry-sync: version=17.4.0; skills=2124; stars=46490; updated_at=2026-09-16T16:59:38+00:00 -->
|
|
2
2
|
# AAS Core — Agentic Awesome Skills
|
|
3
3
|
|
|
4
4
|
> **Find reusable instructions for your project, inspect their complete files, and keep an exact skill set you can review and reuse.**
|
|
5
5
|
|
|
6
|
-
**Current release: V17.
|
|
6
|
+
**Current release: V17.4.0.** This release includes AAS Core for complete local catalog search, agent-owned selection, manifest validation, planning, and diagnosis. Apply and recovery remain experimental and outside the supported preview path.
|
|
7
7
|
|
|
8
8
|
Codex or Claude inspects your project and chooses exact skills from the complete local AAS catalog. AAS Core does not rank or recommend them: its read-only `compose_stack` tool validates the agent-owned selection in memory, and a client or the `aas` CLI can persist it as `aas-stack.json` and produce an immutable plan before any target change.
|
|
9
9
|
|
|
10
|
-
**[Read the AAS Core preview guide →](https://github.com/sickn33/agentic-awesome-skills/blob/v17.
|
|
10
|
+
**[Read the AAS Core preview guide →](https://github.com/sickn33/agentic-awesome-skills/blob/v17.4.0/docs/users/aas-core.md)**
|
|
11
11
|
|
|
12
12
|
This README tracks `main`. Changes under [Unreleased](CHANGELOG.md#unreleased), including complete bundle inspection, Workbench evidence import and sparse installer retrieval, require a subsequent release; the linked versioned guide describes the published package.
|
|
13
13
|
|
|
@@ -54,7 +54,10 @@ You can also [support AAS on Buy Me a Coffee](https://buymeacoffee.com/sickn33).
|
|
|
54
54
|
<img src="assets/buy-me-a-coffee-banner.png" alt="Support Agentic Awesome Skills on Buy Me a Coffee" width="420" />
|
|
55
55
|
</a>
|
|
56
56
|
|
|
57
|
-
*Security tooling support: [Snyk](https://snyk.io/).*
|
|
57
|
+
*Security tooling support: [Snyk](https://snyk.io/).*
|
|
58
|
+
*AI compute & model credits: [Atlas Cloud](https://atlascloud.ai/) (supporting media generation workflows via [`atlas-cloud-media`](skills/atlas-cloud-media/SKILL.md)).*
|
|
59
|
+
|
|
60
|
+
[](https://www.atlascloud.ai/)
|
|
58
61
|
|
|
59
62
|
## AAS Core: Agent-First Preview
|
|
60
63
|
|
|
@@ -83,7 +86,7 @@ AAS Core gives the repository one product model:
|
|
|
83
86
|
| Apply and recovery | Experimental, explicit opt-in, outside the supported safety claim |
|
|
84
87
|
| Semantic suitability certification | Not provided |
|
|
85
88
|
|
|
86
|
-
Read the [AAS Core guide](https://github.com/sickn33/agentic-awesome-skills/blob/v17.
|
|
89
|
+
Read the [AAS Core guide](https://github.com/sickn33/agentic-awesome-skills/blob/v17.4.0/docs/users/aas-core.md) for the exact trust boundaries, current preview status, Codex/Claude setup model, and CLI lifecycle.
|
|
87
90
|
|
|
88
91
|
## Why This Repo
|
|
89
92
|
|
|
@@ -92,7 +95,7 @@ Read the [AAS Core guide](https://github.com/sickn33/agentic-awesome-skills/blob
|
|
|
92
95
|
- **Approval before writes**: the durable artifacts are an approved stack and immutable plan, not an opaque one-shot install.
|
|
93
96
|
- **Installable, not just inspirational**: use the compatible legacy installer or plugin distributions when direct delivery is the right path.
|
|
94
97
|
- **Built for major agent workflows**: Claude Code, Cursor, Codex CLI, Autohand Code, Gemini CLI, Antigravity, Kiro, OpenCode, Copilot, and more.
|
|
95
|
-
- **Broad coverage with real utility**: 2,
|
|
98
|
+
- **Broad coverage with real utility**: 2,124+ skills across development, testing, security, infrastructure, product, and marketing.
|
|
96
99
|
- **Inspect before installing**: the hosted [Skill Workbench](https://sickn33.github.io/agentic-awesome-skills/workbench) reviews agent-produced stack manifests and immutable plans without browser-side installation.
|
|
97
100
|
- **Focused delivery remains available**: specialized plugins package curated sets for web, security, data, docs, DevOps, QA, OSS, or agent/MCP workflows.
|
|
98
101
|
- **Useful whether you want breadth or curation**: install the full catalog, choose a specialized plugin, start with bundles, or compare alternatives before installing.
|
|
@@ -111,7 +114,7 @@ Direct file search can find candidate prose, but it leaves the result in the con
|
|
|
111
114
|
- [Choose Your Tool](#choose-your-tool)
|
|
112
115
|
- [Quick FAQ](#quick-faq)
|
|
113
116
|
- [Bundles & Workflows](#bundles--workflows)
|
|
114
|
-
- [Browse 2,
|
|
117
|
+
- [Browse 2,124+ Skills](#browse-2124-skills)
|
|
115
118
|
- [Troubleshooting](#troubleshooting)
|
|
116
119
|
- [Stable Skills Manifest v1](#stable-skills-manifest-v1)
|
|
117
120
|
- [Contributing](#contributing)
|
|
@@ -123,7 +126,7 @@ Direct file search can find candidate prose, but it leaves the result in the con
|
|
|
123
126
|
|
|
124
127
|
## Installation
|
|
125
128
|
|
|
126
|
-
For Codex and Claude, start with the [AAS Core guide](https://github.com/sickn33/agentic-awesome-skills/blob/v17.
|
|
129
|
+
For Codex and Claude, start with the [AAS Core guide](https://github.com/sickn33/agentic-awesome-skills/blob/v17.4.0/docs/users/aas-core.md): configure the local MCP, ask the agent to inspect the project and choose exact IDs from the full catalog, review the proposed `aas-stack.json`, then run CLI validation and planning. The MCP and validation are read-only. Planning writes only the requested plan artifact; it does not materialize skill payloads or AAS managed state in the target.
|
|
127
130
|
|
|
128
131
|
Use direct installation when your host does not yet have a native AAS Core adapter, when you already know the exact skill IDs, or when you deliberately prefer manual selection:
|
|
129
132
|
|
|
@@ -296,7 +299,7 @@ The supported path covers complete local catalog search and inspection, agent-ow
|
|
|
296
299
|
|
|
297
300
|
### How do I install it?
|
|
298
301
|
|
|
299
|
-
For AAS Core, follow the [preview guide](https://github.com/sickn33/agentic-awesome-skills/blob/v17.
|
|
302
|
+
For AAS Core, follow the [preview guide](https://github.com/sickn33/agentic-awesome-skills/blob/v17.4.0/docs/users/aas-core.md) and use only a package release whose notes explicitly state that it includes Core. Release 14.6.0 predates Core; Core-capable releases begin with the 15.x line.
|
|
300
303
|
|
|
301
304
|
For direct skill distribution, use a tool-specific flag such as `--codex`,
|
|
302
305
|
`--cursor`, `--gemini`, or `--claude` to place skills in the directory your
|
|
@@ -374,7 +377,7 @@ Remove `--dry-run` only after reviewing the install, update, and removal plan. U
|
|
|
374
377
|
|
|
375
378
|
The hosted [Skill Workbench](https://sickn33.github.io/agentic-awesome-skills/workbench) imports and reviews AAS Core stack manifests and immutable plans in browser memory. It does not access the filesystem, generate an approved plan, or install skills.
|
|
376
379
|
|
|
377
|
-
## Browse 2,
|
|
380
|
+
## Browse 2,124+ Skills
|
|
378
381
|
|
|
379
382
|
Use the root repo as a landing page, then jump into the deeper surface that matches your intent.
|
|
380
383
|
|
|
@@ -412,7 +415,7 @@ Use the root repo as a landing page, then jump into the deeper surface that matc
|
|
|
412
415
|
Keep the root README short; use the dedicated docs for recovery and platform-specific guidance.
|
|
413
416
|
|
|
414
417
|
- If you are confused after installation, start with the [Usage Guide](docs/users/usage.md).
|
|
415
|
-
- For Core setup, trust boundaries, stack manifests, and preview status, use the [AAS Core guide](https://github.com/sickn33/agentic-awesome-skills/blob/v17.
|
|
418
|
+
- For Core setup, trust boundaries, stack manifests, and preview status, use the [AAS Core guide](https://github.com/sickn33/agentic-awesome-skills/blob/v17.4.0/docs/users/aas-core.md).
|
|
416
419
|
- On native Windows, `AAS_ADAPTER_WINDOWS_ACL_FAILED` refers to the configuration path checked with PowerShell `Get-Acl`, not the cache and not `icacls`; do not approve until preview returns an approval digest.
|
|
417
420
|
- If you integrate agentic-awesome-skills into a host, read the discovery contract first: [Stable Skills Manifest v1](docs/users/discovery-manifest.md).
|
|
418
421
|
- For Windows truncation or context crash loops, use [docs/users/windows-truncation-recovery.md](docs/users/windows-truncation-recovery.md).
|
|
@@ -423,7 +426,7 @@ Keep the root README short; use the dedicated docs for recovery and platform-spe
|
|
|
423
426
|
|
|
424
427
|
## Stable Skills Manifest v1
|
|
425
428
|
|
|
426
|
-
This is the stable **direct-host discovery manifest** for integrations that load individual `SKILL.md` files. It is not `aas-stack.json`, the verified AAS Core catalog, or the Core composition contract. Core users should start with the [AAS Core guide](https://github.com/sickn33/agentic-awesome-skills/blob/v17.
|
|
429
|
+
This is the stable **direct-host discovery manifest** for integrations that load individual `SKILL.md` files. It is not `aas-stack.json`, the verified AAS Core catalog, or the Core composition contract. Core users should start with the [AAS Core guide](https://github.com/sickn33/agentic-awesome-skills/blob/v17.4.0/docs/users/aas-core.md); custom host integrations can continue using the manifest below.
|
|
427
430
|
|
|
428
431
|
Host integrations should use:
|
|
429
432
|
|
|
@@ -471,6 +474,7 @@ Key source families include:
|
|
|
471
474
|
|
|
472
475
|
### Official Sources
|
|
473
476
|
|
|
477
|
+
- **[Atlas Cloud](https://atlascloud.ai/)**: Official source for the [`atlas-cloud-media`](skills/atlas-cloud-media/SKILL.md) skill — asynchronous image and video generation through the Atlas Cloud API.
|
|
474
478
|
- **[sandbaseai/cli](https://github.com/sandbaseai/cli)**: Official source for the `sandbase-mcp` skill - discover, inspect, and invoke 2,000+ AI models and APIs through a local MCP bridge with explicit schema and cost checks (Apache-2.0).
|
|
475
479
|
- **[vostride/agent-qa](https://github.com/vostride/agent-qa)**: Official Agent QA skills for authoring natural-language web and mobile tests, evidence-backed run triage, and scoped debug/fix workflows (FSL-1.1-ALv2, Apache-2.0 after two years).
|
|
476
480
|
- **[uizze/uizze](https://github.com/uizze/uizze)**: Official UIZZE source for the free `anti-ui-slop` skill—product-specific UI references, design contracts, required states, and a hard finish gate grounded in 800,000+ real web and iOS screens (MIT).
|
|
@@ -517,6 +521,7 @@ Key source families include:
|
|
|
517
521
|
|
|
518
522
|
### Community Contributors
|
|
519
523
|
|
|
524
|
+
- **[tubeagentkit/youtube-transcript-skills](https://github.com/tubeagentkit/youtube-transcript-skills)**: Source for the `youtube-transcript-skills` skill - YouTube transcript fetching, video/channel search, channel browsing, and playlist extraction via the getyoutubetranscript.com API, free tier with no card required (MIT).
|
|
520
525
|
- **[Pranav-Nexus/antigravity-skill-porter](https://github.com/Pranav-Nexus/antigravity-skill-porter)**: MIT source for `skill-porter`, adapted for conservative local bundle previews and complete support-file copying.
|
|
521
526
|
- **[70v-Yoyo/md2video-audio-skill](https://github.com/70v-Yoyo/md2video-audio-skill)**: Apache-2.0 community source for `md2video-audio`, converting Markdown into narrated MP4 video with synchronized slides and narration.
|
|
522
527
|
- **[onkarbadve/agy-auto](https://github.com/onkarbadve/agy-auto)**: MIT community source for `agy-auto`, providing guarded Antigravity CLI permission automation with scoped approvals.
|
|
@@ -738,6 +743,8 @@ Key source families include:
|
|
|
738
743
|
- **[AntonioCardenas/generate-nanobanana](https://github.com/AntonioCardenas/generate-nanobanana)**: Source for the `generate-nanobanana` skill - image and video generation via Google's Gemini media models (Nano Banana 2 Lite/Standard/Pro, Gemini Omni Flash) with cost-approval gates before paid runs, real reference-image support, and a prompt/seed log beside every output (MIT).
|
|
739
744
|
- **[alfredtech2026/shopify-app-review-brief](https://github.com/alfredtech2026/shopify-app-review-brief)**: Source for the `shopify-review-triage` skill - public-data-only P0–P3 triage of low-star Shopify App Store reviews into a source-linked brief, with an explicit needs-human-read bucket and first-pass vs. human-checked labeling (MIT).
|
|
740
745
|
- **[unslothai/unsloth](https://github.com/unslothai/unsloth)**: Source for the `unsloth-finetuning` skill - single-GPU VRAM sizing, LoRA/QLoRA configuration, chat-template and loss-masking correctness, GRPO/DPO post-training, and GGUF/merged export paths (Apache-2.0).
|
|
746
|
+
- **[jiawood2006/hermes-skills](https://github.com/jiawood2006/hermes-skills)**: MIT source for the `de-ai-writer` skill - Chinese AI-smell detection and de-AI rewriting from a 35-pattern catalog, with a deterministic AI-smell index and a deletion-first edit procedure that preserves every source fact.
|
|
747
|
+
|
|
741
748
|
|
|
742
749
|
</details>
|
|
743
750
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"assets":[{"path":"data/aas-v1/skill-content-index.v1.json","sha256":"sha256-
|
|
1
|
+
{"assets":[{"path":"data/aas-v1/skill-content-index.v1.json","sha256":"sha256-36b4701a51d3a630598db4c7d24a372c5f65445200535242dc47565ad9428d7b","size":1410582},{"path":"data/aas-v1/skill-content.v1.ndjson","sha256":"sha256-0d590aa0b6f1e1a8ef16bbaafc19e3b900429ddf0bd820a8c9138de2b1ea4b9e","size":16255516},{"path":"data/catalog.json","sha256":"sha256-3425253ed2ff8a85815f168dea2d534d646acd1c42fa6e6ce59509fc59c91a52","size":1767758},{"path":"tools/lib/aas-v1/ontology.v1.json","sha256":"sha256-aaecc6a7e1b5fc7d1f8d5577b797982974aca2642e2d716e05fa2aab6a4fa885","size":7221}],"catalogDigest":"sha256-547e04c7d5e0ce16a8f374e3922b1977775702b946ba1db3fcc31427cf17f694","catalogSchemaVersion":"2.0.0","digestVersion":1,"package":"agentic-awesome-skills","packageVersion":"17.4.0","schemaVersion":1,"skillCount":2124}
|