opencode-skills-collection 4.0.49 → 4.0.51

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "updatedAt": "2026-09-01T02:22:24.965Z",
3
+ "updatedAt": "2026-09-03T01:49:23.310Z",
4
4
  "entries": [
5
5
  "00-andruia-consultant",
6
6
  "007",
@@ -766,6 +766,7 @@
766
766
  "electron-development",
767
767
  "elixir-pro",
768
768
  "elon-musk",
769
+ "email-issue-fixer",
769
770
  "email-security",
770
771
  "email-sequence",
771
772
  "email-systems",
@@ -1,130 +1,217 @@
1
1
  ---
2
2
  name: agents-md
3
- description: This skill should be used when the user asks to "create AGENTS.md", "update AGENTS.md", "maintain agent docs", "set up CLAUDE.md", or needs to keep agent instructions concise. Enforces research-backed best practices for minimal, high-signal agent documentation.
3
+ description: Create, revise, or audit AGENTS.md files from repository evidence, verified commands, and correctly scoped instructions without overwriting maintainer intent.
4
+ category: development
4
5
  risk: critical
5
6
  source: community
7
+ date_added: "2026-03-06"
6
8
  ---
7
9
 
8
- # Maintaining AGENTS.md
10
+ # Maintain AGENTS.md from repository evidence
9
11
 
10
- AGENTS.md is the canonical agent-facing documentation. Keep it minimal—agents are capable and don't need hand-holding. Target under 60 lines; never exceed 100. Instruction-following quality degrades as document length increases.
12
+ ## Overview
11
13
 
12
- ## When to Use
13
- - The user asks to create, update, or audit `AGENTS.md` or `CLAUDE.md`.
14
- - The project needs concise, high-signal agent instructions derived from the actual toolchain and repo layout.
15
- - Existing agent documentation is too long, duplicated, or drifting away from real project conventions.
16
-
17
- ## File Setup
18
-
19
- 1. Create `AGENTS.md` at project root
20
- 2. Create symlink: `ln -s AGENTS.md CLAUDE.md`
21
-
22
- ## Before Writing
23
-
24
- Analyze the project to understand what belongs in the file:
14
+ Create or improve agent instructions that help a coding agent change the
15
+ repository correctly without rediscovering its workflow. Base every
16
+ repository-specific command, path, and rule on evidence in the current
17
+ checkout.
25
18
 
26
- 1. **Package manager** Check for lock files (`pnpm-lock.yaml`, `yarn.lock`, `package-lock.json`, `uv.lock`, `poetry.lock`)
27
- 2. **Linter/formatter configs** Look for `.eslintrc`, `biome.json`, `ruff.toml`, `.prettierrc`, etc. (don't duplicate these in AGENTS.md)
28
- 3. **CI/build commands** Check `Makefile`, `package.json` scripts, CI configs for canonical commands
29
- 4. **Monorepo indicators** — Check for `pnpm-workspace.yaml`, `nx.json`, Cargo workspace, or subdirectory `package.json` files
30
- 5. **Existing conventions** — Check for existing CONTRIBUTING.md, docs/, or README patterns
19
+ Prefer a focused diff over a wholesale rewrite. There is no universal line
20
+ limit, required section list, symlink layout, or commit-attribution policy;
21
+ follow the repository's own needs and maintainer intent.
31
22
 
32
- ## Writing Rules
33
-
34
- - **Headers + bullets** — No paragraphs
35
- - **Code blocks** — For commands and templates
36
- - **Reference, don't embed** — Point to existing docs: "See `CONTRIBUTING.md` for setup" or "Follow patterns in `src/api/routes/`"
37
- - **No filler** — No intros, conclusions, or pleasantries
38
- - **Trust capabilities** — Omit obvious context
39
- - **Prefer file-scoped commands** — Per-file test/lint/typecheck commands over project-wide builds
40
- - **Don't duplicate linters** — Code style lives in linter configs, not AGENTS.md
23
+ ## When to Use
41
24
 
42
- ## Required Sections
25
+ - The user asks to create, update, shorten, or audit `AGENTS.md`.
26
+ - A monorepo needs root instructions plus narrower package-level overrides.
27
+ - Existing agent instructions contain stale commands, duplicated policy, or
28
+ unsupported claims.
29
+ - The user wants to reconcile `AGENTS.md` with `CLAUDE.md`,
30
+ `.github/copilot-instructions.md`, or other repository instruction files.
31
+
32
+ Use `@agents-generator` instead when the task specifically calls for its
33
+ packaged generation modes, assets, or backup workflow. Use this skill when a
34
+ maintainer-readable, evidence-first edit is the primary goal.
35
+
36
+ ## How It Works
37
+
38
+ ### 1. Preserve existing intent
39
+
40
+ Before writing, read every instruction file that applies to the target path,
41
+ including existing `AGENTS.md` files and relevant tool-specific files such as
42
+ `CLAUDE.md`, `GEMINI.md`, `.github/copilot-instructions.md`, and
43
+ `.github/instructions/*.instructions.md`.
44
+
45
+ - Improve an existing `AGENTS.md` in place when possible.
46
+ - Preserve accurate maintainer-authored rules and repository-specific policy.
47
+ - Do not replace another tool's instruction file with a symlink unless the
48
+ user requests it and repository evidence shows identical content is desired.
49
+ - Do not silently choose between conflicting instructions. Follow the
50
+ higher-priority applicable rule, or ask when the intended policy cannot be
51
+ established from the repository.
52
+
53
+ ### 2. Build a bounded evidence map
54
+
55
+ Inspect only enough of the repository to establish how work is actually done:
56
+
57
+ 1. Read the project overview and contribution guidance, such as `README*`,
58
+ `CONTRIBUTING*`, and relevant docs.
59
+ 2. Read manifests, lockfiles, workspace files, task runners, and build config
60
+ to identify supported tools and exact commands.
61
+ 3. Read CI workflows to learn required checks. Do not assume every CI or
62
+ deployment job is safe or appropriate to run locally.
63
+ 4. Inspect representative source and test files for naming, layout, and test
64
+ conventions.
65
+ 5. Identify generated files, migrations, vendored code, large fixtures,
66
+ secrets boundaries, and production-only operations.
67
+
68
+ Prefer `rg --files` and `rg` for discovery when available. Track the source of
69
+ each non-obvious command or rule so unsupported claims do not enter the final
70
+ file.
71
+
72
+ ### 3. Choose the instruction scope
73
+
74
+ Use the root `AGENTS.md` for repository-wide guidance. Add or revise a nested
75
+ `AGENTS.md` only when a subtree has materially different commands,
76
+ architecture, conventions, or safety boundaries.
77
+
78
+ Keep shared rules at the root and only differences in nested files. For tools
79
+ that implement the public AGENTS.md convention, the nearest file in the
80
+ directory tree controls the working subtree. Do not copy the full root file
81
+ into every package.
82
+
83
+ ### 4. Write high-signal guidance
84
+
85
+ Choose headings that fit the repository instead of forcing a fixed template.
86
+ Include the following only when supported by evidence:
87
+
88
+ - **Repository map:** the few directories and boundaries an agent must know.
89
+ - **Setup and commands:** exact install, development, build, lint, type-check,
90
+ and test commands, with the working directory when it is not obvious.
91
+ - **Focused validation:** targeted checks for a small change and broader checks
92
+ required before handoff.
93
+ - **Change rules:** generated-file ownership, migrations, schemas, APIs,
94
+ dependencies, and cross-package coordination.
95
+ - **Safety boundaries:** secrets, production data, destructive commands,
96
+ deployments, and operations that require explicit authorization.
97
+ - **Contribution rules:** repository-specific naming, formatting, commit, or
98
+ pull-request requirements that affect implementation or handoff.
99
+
100
+ Write direct, testable statements. Prefer:
43
101
 
44
- ### Package Manager
45
- Which tool and key commands only:
46
102
  ```markdown
47
- ## Package Manager
48
- Use **pnpm**: `pnpm install`, `pnpm dev`, `pnpm test`
103
+ - From the repository root, run `npm test -- path/to/file.test.ts` for a focused test.
49
104
  ```
50
105
 
51
- ### File-Scoped Commands
52
- Per-file commands are faster and cheaper than full project builds. Always include when available:
53
- ```markdown
54
- ## File-Scoped Commands
55
- | Task | Command |
56
- |------|---------|
57
- | Typecheck | `pnpm tsc --noEmit path/to/file.ts` |
58
- | Lint | `pnpm eslint path/to/file.ts` |
59
- | Test | `pnpm jest path/to/file.test.ts` |
60
- ```
106
+ over:
61
107
 
62
- ### Commit Attribution
63
- Always include this section. Agents should use their own identity:
64
108
  ```markdown
65
- ## Commit Attribution
66
- AI commits MUST include:
67
- ```
68
- Co-Authored-By: (the agent model's name and attribution byline)
69
- ```
70
- Example: `Co-Authored-By: Claude Sonnet 4 <noreply@example.com>`
109
+ - Make sure tests pass and follow best practices.
71
110
  ```
72
111
 
73
- ### Key Conventions
74
- Project-specific patterns agents must follow. Keep brief.
112
+ Link to maintained documentation instead of copying it. Distinguish required
113
+ checks from optional, slow, privileged, or deployment-only checks.
75
114
 
76
- ## Optional Sections
115
+ ### 5. Validate before handoff
77
116
 
78
- Add only if truly needed:
79
- - API route patterns (show template, not explanation)
80
- - CLI commands (table format)
81
- - File naming conventions
82
- - Project structure hints (point to critical files, flag legacy code to avoid)
83
- - Monorepo overrides (subdirectory `AGENTS.md` files override root)
117
+ 1. Re-read each changed `AGENTS.md` completely.
118
+ 2. Remove contradictions, duplicate rules, placeholders, and stale claims.
119
+ 3. Confirm every mentioned file and directory exists.
120
+ 4. Cross-check commands against manifests or CI, and run safe, proportionate
121
+ checks when useful.
122
+ 5. If nested files changed, confirm each contains only subtree-specific rules
123
+ and does not conflict accidentally with the root.
124
+ 6. Review the diff as a maintainer: every added line should change an agent's
125
+ decision or prevent a realistic mistake.
84
126
 
85
- ## Anti-Patterns
127
+ Report the files changed, evidence used, checks actually run, and unresolved
128
+ uncertainty. Never say a command was tested when it was only read from config.
86
129
 
87
- Omit these:
88
- - "Welcome to..." or "This document explains..."
89
- - "You should..." or "Remember to..."
90
- - Linter/formatter rules already in config files (`.eslintrc`, `biome.json`, `ruff.toml`)
91
- - Listing installed skills or plugins (agents discover these automatically)
92
- - Full project-wide build commands when file-scoped alternatives exist
93
- - Obvious instructions ("run tests", "write clean code")
94
- - Explanations of why (just say what)
95
- - Long prose paragraphs
130
+ ## Examples
96
131
 
97
- ## Example Structure
132
+ ### Create a focused root file
98
133
 
99
- ```markdown
100
- # Agent Instructions
134
+ Evidence found:
101
135
 
102
- ## Package Manager
103
- Use **pnpm**: `pnpm install`, `pnpm dev`
136
+ - `package-lock.json` selects npm.
137
+ - `package.json` defines `lint`, `typecheck`, and `test` scripts.
138
+ - CI runs those three checks from the repository root.
139
+ - `src/generated/` is produced by `npm run generate`.
104
140
 
105
- ## Commit Attribution
106
- AI commits MUST include:
107
- ```
108
- Co-Authored-By: (the agent model's name and attribution byline)
109
- ```
141
+ A useful result might include:
110
142
 
111
- ## File-Scoped Commands
112
- | Task | Command |
113
- |------|---------|
114
- | Typecheck | `pnpm tsc --noEmit path/to/file.ts` |
115
- | Lint | `pnpm eslint path/to/file.ts` |
116
- | Test | `pnpm jest path/to/file.test.ts` |
143
+ ```markdown
144
+ # Agent instructions
117
145
 
118
- ## API Routes
119
- [Template code block]
146
+ ## Commands
147
+ - Run commands from the repository root.
148
+ - Install with `npm ci`.
149
+ - For handoff, run `npm run lint`, `npm run typecheck`, and `npm test`.
120
150
 
121
- ## CLI
122
- | Command | Description |
123
- |---------|-------------|
124
- | `pnpm cli sync` | Sync data |
151
+ ## Generated code
152
+ - Do not edit `src/generated/` directly; update its source and run `npm run generate`.
125
153
  ```
126
154
 
155
+ Do not add a package manager, command, or generated-file rule that the evidence
156
+ did not establish.
157
+
158
+ ### Revise without erasing policy
159
+
160
+ If an existing file has accurate release restrictions but a stale test
161
+ command, change only the stale command and any directly affected explanation.
162
+ Preserve the release restrictions, even when a shorter replacement would look
163
+ cleaner.
164
+
165
+ ## Best Practices
166
+
167
+ - Keep instructions concise enough to scan, but let repository complexity
168
+ determine length.
169
+ - Prefer repository-specific decisions over generic engineering advice.
170
+ - Include targeted commands when the project supports them; do not invent a
171
+ file-scoped invocation for a tool that only supports suite-level runs.
172
+ - State where commands run and whether they modify files.
173
+ - Reference formatter and linter config instead of restating every rule.
174
+ - Make tool-specific files additive when their semantics differ; do not assume
175
+ all agents interpret formats or precedence identically.
176
+
177
+ ## Security & Safety Notes
178
+
179
+ - Treat this as a state-changing skill because it may edit repository files.
180
+ Review the diff before handoff.
181
+ - Never include secrets, credentials, internal URLs, personal data, or local
182
+ environment values in agent instructions.
183
+ - Do not run deployment, publication, database mutation, history rewrite, or
184
+ other consequential commands merely to validate documentation.
185
+ - Preserve approval gates already present in repository policy.
186
+ - Do not upload private repository instructions to third-party services. Ask
187
+ for explicit consent before transmitting any repository content externally.
188
+
189
+ ## Common Pitfalls
190
+
191
+ - **Guessing commands:** infer tools from manifests and CI, not popularity.
192
+ - **Forcing one layout:** a symlink or a fixed section list may erase
193
+ tool-specific or maintainer-authored guidance.
194
+ - **Overwriting an existing file:** make the smallest evidence-backed change.
195
+ - **Copying the README:** include only information that changes agent behavior.
196
+ - **Duplicating nested files:** keep shared guidance at the root and local
197
+ differences near the relevant code.
198
+ - **Claiming validation that did not run:** distinguish inspection from
199
+ execution in the handoff.
200
+
127
201
  ## Limitations
128
- - Use this skill only when the task clearly matches the scope described above.
129
- - Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
130
- - Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
202
+
203
+ - Repository evidence can be incomplete or contradictory; ask when a material
204
+ policy choice cannot be resolved safely.
205
+ - A documented command may still require credentials, services, or operating
206
+ system support that are unavailable locally.
207
+ - AGENTS.md support and precedence vary across coding tools; verify the target
208
+ tool when interoperability matters.
209
+ - This skill improves instruction quality but cannot prove that every future
210
+ agent will follow the file correctly.
211
+
212
+ ## Related Skills and Tools
213
+
214
+ - `@agents-generator` - packaged generation, dry-run, update, and backup modes.
215
+ - `@folder-specific-claude-and-agents-md` - deeper guidance for scoped
216
+ Claude/AGENTS instruction layouts.
217
+ - [agents.md](https://agents.md/) - public format and scope guidance.
@@ -19,6 +19,7 @@
19
19
  - [`users/kiro-integration.md`](users/kiro-integration.md)
20
20
  - [`users/visual-guide.md`](users/visual-guide.md)
21
21
  - [`users/local-config.md`](users/local-config.md)
22
+ - [`users/skills-library-overview.md`](users/skills-library-overview.md)
22
23
 
23
24
  ## Contributors
24
25
 
@@ -1,9 +1,9 @@
1
1
  ---
2
2
  title: Jetski/Cortex + Gemini Integration Guide
3
- description: "Use agentic-awesome-skills with Jetski/Cortex without hitting context-window overflow with 2,107+ skills."
3
+ description: "Use agentic-awesome-skills with Jetski/Cortex without hitting context-window overflow with 2,108+ skills."
4
4
  ---
5
5
 
6
- # Jetski/Cortex + Gemini: safe integration with 2,107+ skills
6
+ # Jetski/Cortex + Gemini: safe integration with 2,108+ skills
7
7
 
8
8
  > **Custom-host integration:** This guide documents a low-level, direct-manifest lazy loader for Jetski/Cortex and similar hosts. For Codex or Claude Code, the recommended path is [AAS Core](../users/aas-core.md), which provides neutral, deterministic catalog retrieval and validates exact agent-selected IDs through a bounded, read-only MCP server.
9
9
 
@@ -25,7 +25,7 @@ Never do:
25
25
  - concatenate all `SKILL.md` content into a single system prompt;
26
26
  - re-inject the entire library for **every** request.
27
27
 
28
- With 2,107+ skills, this approach fills the context window before user messages are even added, causing truncation.
28
+ With 2,108+ skills, this approach fills the context window before user messages are even added, causing truncation.
29
29
 
30
30
  ---
31
31
 
@@ -23,7 +23,7 @@ This example shows one way to integrate **agentic-awesome-skills** with a Jetski
23
23
  - How to enforce a **maximum number of skills per turn** via `maxSkillsPerTurn`.
24
24
  - How to choose whether to **truncate or error** when too many skills are requested via `overflowBehavior`.
25
25
 
26
- This pattern avoids context overflow when you have 2,107+ skills installed.
26
+ This pattern avoids context overflow when you have 2,108+ skills installed.
27
27
 
28
28
  Manifest contract references:
29
29
 
@@ -29,7 +29,7 @@ Preferred homepage:
29
29
  Preferred social preview:
30
30
 
31
31
  - lead with `AAS Core` and the profile → stack → plan flow;
32
- - present `2,107+ Agentic Skills` as supporting catalog evidence, not a second product;
32
+ - present `2,108+ Agentic Skills` as supporting catalog evidence, not a second product;
33
33
  - mention Codex and Claude as the current Core agent path, with broader host compatibility as distribution support;
34
34
  - avoid dense text and tiny logos that disappear in social cards.
35
35
 
@@ -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 2,107+ skills from the skills directory
75
+ - All 2,108+ skills from the skills directory
76
76
 
77
77
  ## When to Update
78
78
 
@@ -31,7 +31,7 @@ AAS MCP does not scan the repository and does not decide which skills are best.
31
31
  > **Release boundary:** AAS Core landed after release 14.6.0. Use an exact Core-capable release rather than an unreviewed moving tag.
32
32
 
33
33
  ```bash
34
- npm exec --yes --ignore-scripts --package=agentic-awesome-skills@16.5.0 -- aas mcp configure \
34
+ npm exec --yes --ignore-scripts --package=agentic-awesome-skills@16.6.0 -- aas mcp configure \
35
35
  --host codex \
36
36
  --scope user \
37
37
  --config /absolute/path/to/codex/config.toml \
@@ -1064,4 +1064,4 @@ Found a skill that should be in a bundle? Or want to create a new bundle? [Open
1064
1064
 
1065
1065
  ---
1066
1066
 
1067
- _Last updated: June 2026 | Total Skills: 2,107+ | Total Bundles: 58_
1067
+ _Last updated: June 2026 | Total Skills: 2,108+ | Total Bundles: 58_
@@ -17,7 +17,7 @@ Configure AAS Core for Claude Code, describe the task and constraints, let Claud
17
17
  - It lets Claude search the verified local catalog without loading the full library into context.
18
18
  - It preserves Claude's exact selection without using metadata as an eligibility gate.
19
19
  - It keeps MCP discovery read-only and CLI changes approval-gated.
20
- - It includes 2,107+ skills instead of a narrow single-domain starter pack.
20
+ - It includes 2,108+ skills instead of a narrow single-domain starter pack.
21
21
  - It supports the standard `.claude/skills/` path and the Claude Code plugin marketplace flow.
22
22
  - It also ships generated bundle plugins so teams can install focused packs like `Essentials` or `Security Developer` from the marketplace metadata.
23
23
  - It includes onboarding docs, bundles, and workflows so new users do not need to guess where to begin.
@@ -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 2,107+ files.
15
+ - It helps new users get started with bundles and workflows rather than forcing a cold start from 2,108+ 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
@@ -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 2,107+ specialized areas
21
+ - **Domain expertise** across 2,108+ 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
@@ -0,0 +1,87 @@
1
+ # The Full Skill Library: At-a-Glance Overview
2
+
3
+ Agentic Awesome Skills ships a verified catalog of **2,107 skills** in `skills/<skill-id>/SKILL.md`. This page is a curated high-level map of the whole library: how skills are organized, the main capability areas and their approximate sizes, the risk labels you will encounter, and the authoritative surfaces to browse when you need the complete, current list.
4
+
5
+ The authoritative, machine-generated catalog is [`CATALOG.md`](../../CATALOG.md). This overview is a hand-maintained index; it can lag the catalog after a release, so treat `CATALOG.md` and `skills_index.json` as the source of truth for counts and exact skill lists.
6
+
7
+ ## How the library is organized
8
+
9
+ Every skill directory contains a `SKILL.md` whose frontmatter drives discovery:
10
+
11
+ | Field | Purpose |
12
+ | --- | --- |
13
+ | `name` | Canonical skill id, e.g. `email-issue-fixer` |
14
+ | `description` | Short purpose and trigger summary shown in search surfaces |
15
+ | `category` | Thin grouping used by UI/search (see notes below) |
16
+ | `tags` | Free-form keywords for search |
17
+ | `risk` | One of `none`, `safe`, `critical`, `offensive`, or `unknown` |
18
+ | `source` / `source_type` | Provenance of the skill content |
19
+ | `date_added` | When the skill entered the registry |
20
+
21
+ The full registry is exposed through three consistent surfaces:
22
+
23
+ - [`CATALOG.md`](../../CATALOG.md) — human-readable catalog grouped by category.
24
+ - `skills_index.json` — the legacy compatibility manifest (documented in [`discovery-manifest.md`](discovery-manifest.md)).
25
+ - `data/catalog.json` — structured catalog used by the catalog app and AAS Core.
26
+
27
+ > The `category` field is loose and historically fragmented (hundreds of skills are unclassified). Use `tags`, full-text search, and the AAS Core `search_skills` tool instead of relying on the category field as a taxonomy.
28
+
29
+ ## Capability areas
30
+
31
+ The table below groups the real catalog data into editorial capability areas so you can find the region of the library that matches your task. Counts are approximate and change as the catalog evolves.
32
+
33
+ | Capability area | Approx. skills | What you will find |
34
+ | --- | ---: | --- |
35
+ | Development & code quality | 480 | General, frontend, backend, mobile and fullstack development; language-specific guidance; code review and quality patterns |
36
+ | Other & uncategorized | 330 | Small, niche, or legacy skills without a clean category label |
37
+ | Cloud & infrastructure | 215 | Cloud platforms, DevOps, databases, operations, and ML infrastructure |
38
+ | AI, agents & ML | 205 | Agent workflows, orchestration, evaluation, prompt engineering, and voice agents |
39
+ | Automation, productivity & workflow | 190 | Task automation, workflows, browser automation, productivity, and collaboration |
40
+ | Content, writing & creative | 160 | Writing, design, graphics, media, video, and presentation skills |
41
+ | Business, product & research | 160 | Strategy, planning, product, project management, legal, finance, research, education, and health |
42
+ | Security & pentesting | 85 | Security engineering, offensive testing, and defensive hardening |
43
+ | Marketing, growth & SEO | 70 | Campaigns, analytics, SEO, growth, and app-store optimization |
44
+ | Data & document processing | 65 | Data science, engineering, spreadsheets, documents, and knowledge management |
45
+ | Testing & reliability | 55 | Test authoring, automation, reliability, and quality engineering |
46
+ | Meta, authoring & special | 35 | Meta skills, skill authoring, and general-purpose helper skills |
47
+ | API & integrations | 30 | Connectors and automation built around third-party APIs |
48
+ | Gaming & blockchain | 25 | Game development, blockchain, and cryptocurrency |
49
+
50
+ ## Risk labels
51
+
52
+ Every skill carries a `risk:` label in its frontmatter:
53
+
54
+ | Risk | Meaning |
55
+ | --- | --- |
56
+ | `none` | No elevated risk; plain productivity guidance |
57
+ | `safe` | Generally safe; local or low-impact operations |
58
+ | `critical` | Privileged, destructive, or high-impact operations (code execution, deployments, pipelines) |
59
+ | `offensive` | Offensive security / penetration-testing content; review the security guardrails before use |
60
+ | `unknown` | Legacy or unclassified content that predates the risk-labeling scheme |
61
+
62
+ Of the current catalog, roughly **1,090 are `critical`**, **850 are `safe`**, **100 are `none`**, and **60 are `offensive`**.
63
+
64
+ Read [`SECURITY_GUARDRAILS.md`](../../docs/SECURITY_GUARDRAILS.md) and the [`security-guardrails`](../../docs/contributors/security-guardrails.md) contributor guide before invoking anything marked `critical` or `offensive`.
65
+
66
+ ## How to find the right skill
67
+
68
+ 1. **Search the full catalog** — with AAS Core running, use `search_skills`/`get_skill`; see the [usage guide](usage.md).
69
+ 2. **Browse the generated catalog** — [`CATALOG.md`](../../CATALOG.md) lists every skill by category with description, risk, source, and tags.
70
+ 3. **Use bundles as editorial shortlists** — see [bundles](bundles.md) for curated packs like the Web Wizard.
71
+ 4. **Use the tool-specific guides** — [Claude Code](claude-code-skills.md), [Codex CLI](codex-cli-skills.md), [Cursor](cursor-skills.md), and [Gemini CLI](gemini-cli-skills.md) include starter picks.
72
+
73
+ ## Distribution surfaces
74
+
75
+ The same skills reach you through several channels, all backed by the same source tree:
76
+
77
+ - **Full library** — direct install of the complete catalog (`~/.agents/skills/` by default).
78
+ - **Plugins** — root and bundle plugins for Claude Code and Codex (see [plugins](plugins.md)).
79
+ - **AAS Core** — agent-owned, reproducible selection validated against the catalog.
80
+
81
+ ## Related pages
82
+
83
+ - [Usage guide](usage.md) — compose and use a skill stack.
84
+ - [AAS Core](aas-core.md) — agent-owned catalog search and selection.
85
+ - [Discovery manifest](discovery-manifest.md) — the machine-readable `skills_index.json` contract.
86
+ - [Bundles](bundles.md) — curated skill packs.
87
+ - [Security skills](security-skills.md) — guidance for security-relevant skills.
@@ -39,7 +39,7 @@ If you came in through a **Claude Code** or **Codex** plugin instead of AAS Core
39
39
 
40
40
  When you ran `npx agentic-awesome-skills` or cloned the repository, you:
41
41
 
42
- ✅ **Downloaded 2,107+ skill files** to your computer (default: `~/.agents/skills/`; or a custom path like `~/.agent/skills/` if you used `--path`)
42
+ ✅ **Downloaded 2,108+ skill files** to your computer (default: `~/.agents/skills/`; or a custom path like `~/.agent/skills/` if you used `--path`)
43
43
  ✅ **Made them available** to your AI assistant
44
44
  ❌ **Did NOT enable them all automatically** (they're just sitting there, waiting)
45
45
 
@@ -231,7 +231,7 @@ Let's actually use a skill right now. Follow these steps:
231
231
 
232
232
  ## Direct-install Step 5: Pick Skills Manually
233
233
 
234
- Don't try to use all 2,107+ skills at once. Here's a sensible approach:
234
+ Don't try to use all 2,108+ skills at once. Here's a sensible approach:
235
235
 
236
236
  If you want a tool-specific starting point before choosing skills, use:
237
237
 
@@ -362,7 +362,7 @@ Usually no, but if your AI doesn't recognize a skill:
362
362
 
363
363
  ### "Can I load all skills into the model at once?"
364
364
 
365
- No. Even though you have 2,107+ skills installed locally, you should **not** concatenate every `SKILL.md` into a single system prompt or context block.
365
+ No. Even though you have 2,108+ skills installed locally, you should **not** concatenate every `SKILL.md` into a single system prompt or context block.
366
366
 
367
367
  The intended pattern is:
368
368
 
@@ -40,7 +40,7 @@ agentic-awesome-skills/
40
40
  ├── 📄 CONTRIBUTING.md ← Contributor workflow
41
41
  ├── 📄 CATALOG.md ← Full generated catalog
42
42
 
43
- ├── 📁 skills/ ← 2,107+ skills live here
43
+ ├── 📁 skills/ ← 2,108+ skills live here
44
44
  │ │
45
45
  │ ├── 📁 brainstorming/
46
46
  │ │ └── 📄 SKILL.md ← Skill definition
@@ -53,7 +53,7 @@ agentic-awesome-skills/
53
53
  │ │ └── 📁 2d-games/
54
54
  │ │ └── 📄 SKILL.md ← Nested skills also supported
55
55
  │ │
56
- │ └── ... (2,107+ total)
56
+ │ └── ... (2,108+ total)
57
57
 
58
58
  ├── 📁 apps/
59
59
  │ └── 📁 web-app/ ← Interactive browser
@@ -106,7 +106,7 @@ agentic-awesome-skills/
106
106
 
107
107
  ```
108
108
  ┌─────────────────────────┐
109
- │ 2,107+ SKILLS │
109
+ │ 2,108+ SKILLS │
110
110
  └────────────┬────────────┘
111
111
 
112
112
  ┌────────────────────────┼────────────────────────┐
@@ -207,7 +207,7 @@ If you want a workspace-style manual install instead, cloning into `.agent/skill
207
207
  │ ├── 📁 brainstorming/ │
208
208
  │ ├── 📁 stripe-integration/ │
209
209
  │ ├── 📁 react-best-practices/ │
210
- │ └── ... (2,107+ total) │
210
+ │ └── ... (2,108+ total) │
211
211
  └─────────────────────────────────────────┘
212
212
  ```
213
213
 
@@ -0,0 +1,115 @@
1
+ ---
2
+ name: email-issue-fixer
3
+ description: "Fix small email mistakes without touching the writer's voice, and strip tracking parameters from links on request. Always returns the corrected draft plus a change list."
4
+ category: writing
5
+ risk: safe
6
+ source: self
7
+ source_type: self
8
+ date_added: "2026-09-01"
9
+ author: whoisabhishekadhikari
10
+ tags: [email, proofreading, grammar, links]
11
+ ---
12
+
13
+ # Email Issue Fixer
14
+
15
+ Fix the small mistakes that make an email look careless, without touching the writer's voice or what the email commits to. Always return the corrected draft plus a list of what changed.
16
+
17
+ ## When to Use
18
+
19
+ - Use when the user asks to "fix my email", "check the grammar before I send", "proofread this email", or any pre-send cleanup of a draft.
20
+ - Use when the user also asks to "clean the links" or remove tracking from the URLs in an email. Link cleaning is never automatic.
21
+ - Do not use for casual rewrites, tone makeovers, or structural restyling that the user did not ask for.
22
+
23
+ ## Pass 1: correctness only
24
+
25
+ Fix these:
26
+
27
+ - Duplicated words ("a a", "the the") and wrong articles. Choose a/an by sound, not spelling: "an hour", "a university", "a one-time offer".
28
+ - Subject-verb agreement ("the reports is done" becomes "the reports are done").
29
+ - Wrong-word slips: your/you're, its/it's, than/then, affect/effect, their/there.
30
+ - Capitalization, doubled spaces, missing or doubled punctuation.
31
+
32
+ Leave these alone. They are voice, not errors:
33
+
34
+ - Sentence fragments, contractions, one-line paragraphs.
35
+ - Lowercase greetings and sign-offs, informal phrasing, slang the writer chose.
36
+ - Repetition used for emphasis.
37
+
38
+ If you cannot tell whether something is a mistake or a choice, leave it and mention it in the summary instead of changing it.
39
+
40
+ Never change names, numbers, dates, quoted text, or anything that alters what the email promises or asks for.
41
+
42
+ ## Pass 2: links (only when the user asks)
43
+
44
+ Do not touch links during a normal proofread. Clean them only when the user asks for it.
45
+
46
+ When asked, remove only these unambiguous tracking keys:
47
+
48
+ - `utm_source`, `utm_medium`, `utm_campaign`, `utm_term`, `utm_content`, `mc_cid`, `mc_eid`, `fbclid`, `gclid`, `igshid`, `_hsenc`, `_hsmi`
49
+
50
+ Keep every other parameter. Values like `id`, `page`, `v`, `q`, or anything unfamiliar are often what makes the link work. When in doubt, keep it.
51
+
52
+ Treat `ref`, `ref_src`, and similarly generic keys as ambiguous: they are sometimes attribution, sometimes application state the link needs to work. Do not strip them automatically. Only remove them when context confirms they are attribution, or ask the writer first.
53
+
54
+ Do not delete whole links. Do not delete a link because it appears twice; signature links and repeated calls to action are usually deliberate.
55
+
56
+ Flag rather than fix: shortened links (bit.ly and similar), unfamiliar domains, and any query string that looks like a token, session ID, or credential. Point them out and let the writer decide.
57
+
58
+ If a query parameter looks like a credential, token, or session ID, do not echo its value anywhere in the output. Keep the link only by replacing the sensitive value with a placeholder such as `[REDACTED]` (for example `?auth=[REDACTED]`), list the redaction in "Changes made", and tell the writer to re-enter the real value before sending. If they prefer, advise rotating the leaked value first.
59
+
60
+ ## Always return
61
+
62
+ - The corrected email, in the same format and layout it arrived in.
63
+ - A "Changes made" list, one line per change.
64
+ - A "Left alone" list for anything you judged to be voice or an ambiguous link.
65
+ - If nothing needed fixing, say so plainly rather than inventing changes.
66
+
67
+ ## Never
68
+
69
+ - Send, schedule, or file the email. Hand the draft back for the writer to send.
70
+ - Repeat credentials, tokens, or personal details found inside links.
71
+ - Rewrite for tone, length, or structure unless asked. If the user wants that, ask what direction they want first.
72
+
73
+ ## Examples
74
+
75
+ ### Articles and agreement
76
+
77
+ Input:
78
+
79
+ ```text
80
+ Please find attached a a copy of the report. Our sales team achieved a amazing quarter.
81
+ ```
82
+
83
+ Output:
84
+
85
+ ```text
86
+ Please find attached a copy of the report. Our sales team achieved an amazing quarter.
87
+ ```
88
+
89
+ Changes made:
90
+
91
+ - a a to a (duplicated word)
92
+ - a amazing to an amazing (vowel sound)
93
+
94
+ ### Link cleaning
95
+
96
+ Input:
97
+
98
+ ```text
99
+ https://app.example.com/reports?utm_source=newsletter&utm_medium=email&id=123
100
+ ```
101
+
102
+ Output:
103
+
104
+ ```text
105
+ https://app.example.com/reports?id=123
106
+ ```
107
+
108
+ Changes made:
109
+
110
+ - Removed 2 tracking parameters (utm_source, utm_medium)
111
+ - Kept id=123, which the link needs to open the right report
112
+
113
+ ## Limitations
114
+
115
+ This reads and edits text only. It cannot judge whether the email's facts, tone, or timing are right. That stays with the writer.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-skills-collection",
3
- "version": "4.0.49",
3
+ "version": "4.0.51",
4
4
  "description": "OpenCode CLI plugin that automatically downloads and keeps skills up to date.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/skills_index.json CHANGED
@@ -1319,12 +1319,12 @@
1319
1319
  {
1320
1320
  "id": "agents-md",
1321
1321
  "path": "skills/agents-md",
1322
- "category": "ai-ml",
1322
+ "category": "development",
1323
1323
  "name": "agents-md",
1324
- "description": "This skill should be used when the user asks to \"create AGENTS.md\", \"update AGENTS.md\", \"maintain agent docs\", \"set up CLAUDE.md\", or needs to keep agent instructions concise. Enforces research-backed best practices for minimal, high-signal agent documentation.",
1324
+ "description": "Create, revise, or audit AGENTS.md files from repository evidence, verified commands, and correctly scoped instructions without overwriting maintainer intent.",
1325
1325
  "risk": "critical",
1326
1326
  "source": "community",
1327
- "date_added": null,
1327
+ "date_added": "2026-03-06",
1328
1328
  "plugin": {
1329
1329
  "targets": {
1330
1330
  "codex": "supported",
@@ -17901,6 +17901,35 @@
17901
17901
  "strategy"
17902
17902
  ]
17903
17903
  },
17904
+ {
17905
+ "id": "email-issue-fixer",
17906
+ "path": "skills/email-issue-fixer",
17907
+ "category": "writing",
17908
+ "name": "email-issue-fixer",
17909
+ "description": "Fix small email mistakes without touching the writer's voice, and strip tracking parameters from links on request. Always returns the corrected draft plus a change list.",
17910
+ "risk": "safe",
17911
+ "source": "self",
17912
+ "date_added": "2026-09-01",
17913
+ "plugin": {
17914
+ "targets": {
17915
+ "codex": "supported",
17916
+ "claude": "supported"
17917
+ },
17918
+ "setup": {
17919
+ "type": "none",
17920
+ "summary": "",
17921
+ "docs": null
17922
+ },
17923
+ "reasons": []
17924
+ },
17925
+ "source_type": "self",
17926
+ "tags": [
17927
+ "email",
17928
+ "proofreading",
17929
+ "grammar",
17930
+ "links"
17931
+ ]
17932
+ },
17904
17933
  {
17905
17934
  "id": "email-security",
17906
17935
  "path": "skills/email-security",