opencode-skills-collection 4.0.33 → 4.0.35

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-08-16T00:33:58.296Z",
3
+ "updatedAt": "2026-08-18T00:32:25.352Z",
4
4
  "entries": [
5
5
  "00-andruia-consultant",
6
6
  "007",
@@ -39,6 +39,9 @@
39
39
  "agent-orchestration-improve-agent",
40
40
  "agent-orchestration-multi-agent-optimize",
41
41
  "agent-orchestrator",
42
+ "agent-qa-authoring",
43
+ "agent-qa-debug-fix",
44
+ "agent-qa-result-triage",
42
45
  "agent-self-scheduling",
43
46
  "agent-squad",
44
47
  "agent-squad/alex",
@@ -479,6 +482,7 @@
479
482
  "competitor-analysis",
480
483
  "competitor-profiling",
481
484
  "competitor-tracking",
485
+ "compile-knowledge",
482
486
  "complexity-cuts",
483
487
  "composition-patterns",
484
488
  "comprehensive-review-full-review",
@@ -0,0 +1,93 @@
1
+ ---
2
+ name: agent-qa-authoring
3
+ description: "Create, edit, validate, and run Agent QA tests, suites, and hooks through MCP or CLI while preserving canonical IDs and schema contracts."
4
+ category: testing
5
+ risk: critical
6
+ source: https://github.com/vostride/agent-qa/tree/main/skills/agent-qa-authoring
7
+ source_repo: vostride/agent-qa
8
+ source_type: official
9
+ date_added: "2026-08-16"
10
+ author: Vostride
11
+ tags: [testing, qa, mcp, web-testing, mobile-testing]
12
+ tools: [claude, cursor, gemini, codex]
13
+ license: FSL-1.1-ALv2
14
+ license_source: https://github.com/vostride/agent-qa/blob/main/LICENSE.md
15
+ ---
16
+
17
+ # Agent QA Authoring
18
+
19
+ ## Overview
20
+
21
+ Author Agent QA tests, suites, and hooks without inventing schema fields or identifiers. Prefer Agent QA's MCP tools, use the bundled contract reference for exact fields, and validate every definition before saving or running it.
22
+
23
+ ## When to Use
24
+
25
+ - Creating or editing an Agent QA test, suite, or hook.
26
+ - Validating Agent QA YAML or canonical IDs.
27
+ - Running a newly authored Agent QA definition through MCP or CLI.
28
+ - Investigating which Agent QA configuration fields or workspace patterns apply.
29
+
30
+ ## Preconditions and Approval Boundary
31
+
32
+ - Work only in a configured Agent QA workspace that the user has authorized.
33
+ - Inspect the requested scope before any create, update, delete, or test-run operation.
34
+ - Obtain explicit confirmation before deleting a definition or running a test that can change external application state.
35
+ - Keep credentials out of definitions and output; use the workspace's configured secret handling.
36
+
37
+ ## Workflow
38
+
39
+ 1. Discover the local surface with `agent_qa_discover`.
40
+ 2. Inspect active config with `agent_qa_get_config`, especially targets, devices, providers, and `services.mcp`.
41
+ 3. Load `references/agent-qa-contracts.json` when exact schema fields or ID contracts are needed.
42
+ 4. Generate every new ID with Agent QA tooling:
43
+ - MCP: `agent_qa_generate_id`
44
+ - CLI fallback: `agent-qa ids generate <test|suite|hook|run|observation>`
45
+ - Package fallback: `npx --yes agent-qa ids generate <type>`
46
+ 5. Never hand-write IDs. Validate existing IDs with `agent_qa_validate_id` or `agent-qa ids validate <type> <id> --json`.
47
+ 6. Validate definitions before saving:
48
+ - Tests: `agent_qa_validate_test` or `agent_qa_validate_definition` with `kind: "test"`
49
+ - Suites: `agent_qa_validate_suite` or `agent_qa_validate_definition` with `kind: "suite"`
50
+ - Hooks: `agent_qa_validate_definition` with `kind: "hooks"`
51
+ 7. Prefer MCP authoring mutations:
52
+ - Tests: `agent_qa_create_test`, `agent_qa_update_test`, `agent_qa_delete_test`
53
+ - Suites: `agent_qa_create_suite`, `agent_qa_update_suite`, `agent_qa_delete_suite`
54
+ - Hooks: `agent_qa_create_hook`, `agent_qa_update_hook`, `agent_qa_delete_hook`
55
+ 8. Use CLI or YAML fallback only when MCP is unavailable. Keep file paths matched by `workspace.testMatch` or `workspace.suiteMatch`.
56
+
57
+ ## Required ID Contracts
58
+
59
+ - Test IDs: `t_` plus 10 id-agent words.
60
+ - Suite IDs: `s_` plus 10 id-agent words.
61
+ - Hook IDs: `h_` plus 10 id-agent words.
62
+ - Run IDs: `r_` plus 10 id-agent words.
63
+ - Observation IDs: `obs_` plus 10 id-agent words.
64
+
65
+ ## Before Running
66
+
67
+ - Validate YAML first.
68
+ - Prefer `agent_qa_enqueue_test_run` and `agent_qa_enqueue_suite_run` over shelling out.
69
+ - If using the CLI fallback, run only after validation succeeds.
70
+ - Reconfirm the target and environment when a test may mutate real data or trigger external actions.
71
+
72
+ ## Example
73
+
74
+ ```text
75
+ User: Add an Agent QA checkout test for the staging target and validate it, but do not run it yet.
76
+
77
+ Expected handling: discover the workspace, inspect the staging target, generate the test ID,
78
+ create the smallest valid definition, validate it, and stop before enqueueing a run.
79
+ ```
80
+
81
+ ## Limitations
82
+
83
+ - Requires an installed and configured Agent QA workspace plus any browser, mobile, model-provider, or application dependencies used by the selected target.
84
+ - Does not infer undocumented config keys, selectors, UI states, credentials, or test data.
85
+ - MCP availability and permissions vary by workspace; state which CLI or YAML fallback was used.
86
+ - Validation proves schema compatibility, not that the application behavior or external environment is safe to exercise.
87
+
88
+ ## Do Not
89
+
90
+ - Do not invent config keys or use legacy root config buckets.
91
+ - Do not hand-write IDs.
92
+ - Do not mutate files outside configured workspace patterns.
93
+ - Do not run destructive or production-facing scenarios without the user's explicit scope and confirmation.
@@ -0,0 +1,31 @@
1
+ {
2
+ "version": 1,
3
+ "source": "packages/mcp/references/agent-qa-contracts.json",
4
+ "ids": {
5
+ "instruction": "Generate IDs with agent_qa_generate_id or `agent-qa ids generate <type>`; never hand-write IDs.",
6
+ "contracts": [
7
+ { "type": "test", "prefix": "t", "prefixWithSeparator": "t_", "words": 10 },
8
+ { "type": "suite", "prefix": "s", "prefixWithSeparator": "s_", "words": 10 },
9
+ { "type": "hook", "prefix": "h", "prefixWithSeparator": "h_", "words": 10 },
10
+ { "type": "observation", "prefix": "obs", "prefixWithSeparator": "obs_", "words": 10 },
11
+ { "type": "run", "prefix": "r", "prefixWithSeparator": "r_", "words": 10 }
12
+ ]
13
+ },
14
+ "config": {
15
+ "rootKeys": ["workspace", "services", "registry", "use", "analytics"],
16
+ "mcpFields": ["enabled", "transport", "host", "port", "path"]
17
+ },
18
+ "test": {
19
+ "requiredKeys": ["test-id", "name", "target", "steps"],
20
+ "optionalKeys": ["context", "use", "meta", "setup", "teardown"]
21
+ },
22
+ "suite": {
23
+ "requiredKeys": ["name", "target", "tests"],
24
+ "optionalKeys": ["suite-id", "context", "setup", "teardown", "use"],
25
+ "testEntryKeys": ["test", "id"]
26
+ },
27
+ "hooks": {
28
+ "rootKeys": ["hooks"],
29
+ "hookKeys": ["id", "name", "runtime", "file", "deps", "packageFile", "timeout", "network"]
30
+ }
31
+ }
@@ -0,0 +1,77 @@
1
+ ---
2
+ name: agent-qa-debug-fix
3
+ description: "Debug, patch, and verify failed Agent QA runs from MCP evidence, artifacts, logs, and local code without hiding product or infrastructure defects."
4
+ category: testing
5
+ risk: critical
6
+ source: https://github.com/vostride/agent-qa/tree/main/skills/agent-qa-debug-fix
7
+ source_repo: vostride/agent-qa
8
+ source_type: official
9
+ date_added: "2026-08-16"
10
+ author: Vostride
11
+ tags: [testing, qa, debugging, mcp, self-healing]
12
+ tools: [claude, cursor, gemini, codex]
13
+ license: FSL-1.1-ALv2
14
+ license_source: https://github.com/vostride/agent-qa/blob/main/LICENSE.md
15
+ ---
16
+
17
+ # Agent QA Debug Fix
18
+
19
+ ## Overview
20
+
21
+ Repair a failed Agent QA run from recorded evidence and the relevant local source. Treat the classifier as a hypothesis, make the smallest justified change, and verify the narrowest affected behavior without rewriting a test merely to conceal a real defect.
22
+
23
+ ## When to Use
24
+
25
+ - A failed Agent QA run has already been triaged and now requires a code or YAML repair.
26
+ - Artifacts and logs point to a test, hook, product, runtime, or agent-behavior defect.
27
+ - A proposed fix must be verified with the narrowest Agent QA or unit-test rerun.
28
+ - The user asks to self-heal or update a stale Agent QA definition from evidence.
29
+
30
+ ## Preconditions and Approval Boundary
31
+
32
+ - Confirm the repository, workspace, target environment, and files the user authorizes you to modify.
33
+ - Inspect the planned test's external side effects before rerunning it; obtain explicit confirmation for production-facing, destructive, or irreversible actions.
34
+ - Preserve unrelated user changes and keep the patch limited to the evidenced failure.
35
+ - Do not expose credentials or sensitive application data from artifacts and logs.
36
+
37
+ ## Workflow
38
+
39
+ 1. Start with evidence collection:
40
+ - `agent_qa_get_run`
41
+ - `agent_qa_get_run_steps`
42
+ - `agent_qa_get_run_artifact`
43
+ - `agent_qa_get_run_logs`
44
+ - `agent_qa_get_run_execution_logs`
45
+ 2. Call `agent_qa_classify_failure` and treat its category as a hypothesis, not a verdict.
46
+ 3. Identify the failing surface: test definition, hook, application under test, runtime infrastructure, or agent behavior.
47
+ 4. Inspect the relevant local files directly. Do not infer patches from artifacts alone.
48
+ 5. Explain the evidence-to-change link, then apply the smallest code or YAML change that accounts for the evidence.
49
+ 6. Validate any changed Agent QA definition before execution.
50
+ 7. Re-run the narrowest affected Agent QA test, suite, hook, or unit test within the approved environment.
51
+ 8. Report the root cause, changed files, verification command or MCP action, result, and remaining risk.
52
+
53
+ ## Fix Rules
54
+
55
+ - Do not invent selectors, screen states, screenshots, logs, or source files.
56
+ - Do not rewrite a test merely to make it pass when the artifact shows a product or runtime defect.
57
+ - Preserve canonical Agent QA IDs when editing tests, suites, hooks, or memory files.
58
+ - Prefer `agent_qa_validate_test`, `agent_qa_validate_suite`, and `agent_qa_validate_definition` before rerunning edited YAML.
59
+ - When MCP is unavailable, use dashboard REST APIs or local `.agent-qa` artifacts and state that MCP evidence was unavailable.
60
+ - Stop and report the blocker when evidence cannot distinguish between materially different fixes.
61
+
62
+ ## Example
63
+
64
+ ```text
65
+ User: Fix the failed staging checkout run, but do not touch production.
66
+
67
+ Expected handling: collect the failed run evidence, classify it, inspect the implicated local
68
+ definition and application code, patch only the evidenced cause, validate, rerun the single
69
+ staging test, and report changed files plus remaining uncertainty.
70
+ ```
71
+
72
+ ## Limitations
73
+
74
+ - Requires access to the relevant run evidence and local source; artifacts alone may not establish root cause.
75
+ - Cannot guarantee that an intermittent browser, device, network, or provider failure is fixed after one successful rerun.
76
+ - Does not authorize production changes, data mutation, dependency installation, or broader refactoring beyond the user's approved scope.
77
+ - A passing narrow rerun does not replace the repository's normal test suite or human review.
@@ -0,0 +1,81 @@
1
+ ---
2
+ name: agent-qa-result-triage
3
+ description: "Triage failed Agent QA runs with MCP evidence, artifacts, logs, fixed failure categories, confidence, and actionable next steps."
4
+ category: testing
5
+ risk: safe
6
+ source: https://github.com/vostride/agent-qa/tree/main/skills/agent-qa-result-triage
7
+ source_repo: vostride/agent-qa
8
+ source_type: official
9
+ date_added: "2026-08-16"
10
+ author: Vostride
11
+ tags: [testing, qa, triage, mcp, debugging]
12
+ tools: [claude, cursor, gemini, codex]
13
+ license: FSL-1.1-ALv2
14
+ license_source: https://github.com/vostride/agent-qa/blob/main/LICENSE.md
15
+ ---
16
+
17
+ # Agent QA Result Triage
18
+
19
+ ## Overview
20
+
21
+ Classify a failed Agent QA run from its recorded evidence instead of guessing. Inspect the run, steps, artifacts, and logs; choose one fixed category; and return confidence, likely ownership, and the next evidence-backed action.
22
+
23
+ ## When to Use
24
+
25
+ - Investigating a failed or interrupted Agent QA run.
26
+ - Inspecting run artifacts, step results, or execution logs.
27
+ - Comparing recent related runs for recurring failure patterns.
28
+ - Deciding whether a failure belongs to a test, product, hook, browser/mobile runtime, or infrastructure owner.
29
+
30
+ ## Workflow
31
+
32
+ 1. Start with `agent_qa_get_run` for run status, suite child context, steps, and attempts.
33
+ 2. Fetch evidence before deciding:
34
+ - `agent_qa_get_run_artifact`
35
+ - `agent_qa_get_run_steps`
36
+ - `agent_qa_get_run_logs`
37
+ - `agent_qa_get_run_execution_logs`
38
+ 3. Call `agent_qa_classify_failure` and use its category as the default classification unless stronger evidence contradicts it.
39
+ 4. Compare recent related runs when they are available in the classifier output.
40
+ 5. Return a concise triage result: category, confidence, evidence, likely fix area, and next action.
41
+ 6. For code changes, switch to `agent-qa-debug-fix` after triage is complete.
42
+
43
+ ## Categories
44
+
45
+ Use exactly one category from `references/triage-categories.md`:
46
+
47
+ - `timeout`
48
+ - `appium_startup`
49
+ - `browser_disconnect`
50
+ - `element_not_found`
51
+ - `assertion_failure`
52
+ - `hook_failure`
53
+ - `infrastructure`
54
+ - `unknown_failure`
55
+
56
+ ## Evidence Rules
57
+
58
+ - Quote or summarize concrete artifact, log, or step evidence.
59
+ - Mention missing artifact sections when they limit confidence.
60
+ - Do not invent screenshots, videos, logs, or memory context that MCP did not return.
61
+ - If MCP is unavailable, use dashboard REST APIs or Agent QA CLI output as a fallback and state which evidence was unavailable.
62
+ - Redact credentials, session tokens, personal data, and unrelated application content from the report.
63
+
64
+ ## Example
65
+
66
+ ```json
67
+ {
68
+ "category": "element_not_found",
69
+ "confidence": "high",
70
+ "evidence": ["Step 4 could not resolve the described checkout button"],
71
+ "likely_fix_area": "test definition or changed product UI",
72
+ "next_action": "Inspect the captured UI context, then compare the current checkout screen"
73
+ }
74
+ ```
75
+
76
+ ## Limitations
77
+
78
+ - Classification is only as reliable as the retained run artifacts and logs.
79
+ - A failure category identifies the most likely failure surface; it does not prove root cause.
80
+ - Missing screenshots, DOM/accessibility context, device logs, or prior runs must lower confidence.
81
+ - This skill does not modify tests or application code; use `agent-qa-debug-fix` for an authorized repair.
@@ -0,0 +1,16 @@
1
+ # Agent QA Triage Categories
2
+
3
+ Use exactly one category.
4
+
5
+ | Category | Use When | First Checks |
6
+ |---|---|---|
7
+ | `timeout` | The run or step exceeded timeout. | Run failure summary, step duration, logs. |
8
+ | `appium_startup` | Appium failed to start or acquire a mobile session. | Failure summary, execution logs, artifact runtime errors. |
9
+ | `browser_disconnect` | Browser, page, or context closed unexpectedly. | Error logs containing browser closed or target closed. |
10
+ | `element_not_found` | Locator, element, selector, or UI description was unavailable. | Failed step error, observation, screenshot, DOM/accessibility context. |
11
+ | `assertion_failure` | The app was reachable but expected content or state did not match. | Failed assert/verify step, observation, screenshot. |
12
+ | `hook_failure` | Setup, teardown, or hook execution blocked the run. | Hook logs, hook artifact sections, hook registry errors. |
13
+ | `infrastructure` | Network, Docker, farm, device, filesystem, or service dependency failed. | Execution logs, stderr, artifact runtime errors. |
14
+ | `unknown_failure` | Evidence is insufficient for a stronger category. | Missing sections and next evidence to collect. |
15
+
16
+ Always include evidence and a next action.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: cohesivity
3
- description: "Provision backend infra through Cohesivity (cohesivity.ai): Postgres, hosting, auth, storage, and AI model APIs over one HTTP API. Use when a .cohesivity file exists or a project needs a backend."
3
+ description: "Provision headless backend services for AI agents through Cohesivity: hosting, databases, storage, LLMs, and third-party APIs over one HTTP API. Use when a trusted .cohesivity file exists or the user approves a new backend."
4
4
  category: backend
5
5
  risk: critical
6
6
  source: https://github.com/cohesivity-org/cohesivity-skill
@@ -0,0 +1,185 @@
1
+ ---
2
+ name: compile-knowledge
3
+ description: "Compile durable, non-obvious findings into an interlinked markdown knowledge store — atomic files, [[wiki-links]], a maintained index — so an agent gets smarter across sessions instead of relearning the same facts."
4
+ category: productivity
5
+ risk: safe
6
+ source: https://github.com/5dive-ai/skills/tree/main/compile-knowledge
7
+ source_repo: 5dive-ai/skills
8
+ source_type: community
9
+ date_added: "2026-08-16"
10
+ author: 5dive-ai
11
+ tags: [knowledge-management, memory, documentation, wiki, notes]
12
+ tools: [claude, cursor, gemini]
13
+ license: "MIT"
14
+ license_source: "https://github.com/5dive-ai/skills/blob/main/LICENSE"
15
+ ---
16
+
17
+ # Compile Knowledge
18
+
19
+ ## Overview
20
+
21
+ Durable knowledge is worth keeping as many small, interlinked markdown files compiled over
22
+ time and surfaced through an index — not as one giant doc, a chat log, or a one-off
23
+ `notes.md` that rots. This skill makes compiling consistent, so what an agent learns in one
24
+ session is retrievable in the next one instead of being re-derived from scratch.
25
+
26
+ The shape is deliberately boring: one fact per file, a one-line `description` that recall
27
+ matches against, `[[slug]]` links between related files, and a single index line per entry.
28
+ The hard part is not the format — it is the discipline of writing only what is durable, and
29
+ of updating an existing file instead of creating a near-duplicate.
30
+
31
+ ## When to Use This Skill
32
+
33
+ - Use when you have just produced research, competitive intel, a digest, or an
34
+ investigation result, and are about to close the task — compile before you close.
35
+ - Use when you learn a non-obvious fact the hard way (a tool that fails silently, a
36
+ measurement that contradicts the docs, a constraint nobody wrote down).
37
+ - Use when the user says "save this", "write this to the wiki", "update the memory",
38
+ "log this finding", "structure this knowledge", or "follow the karpathy method".
39
+ - Do **not** use it for routine work. A deploy, a restart, or a one-line fix usually
40
+ produces nothing durable, and filler pollutes recall.
41
+
42
+ ## How It Works
43
+
44
+ ### Step 1: Pick the store
45
+
46
+ - **Agent memory** — the per-agent folder your harness already loads (`memory/` with an
47
+ index file such as `MEMORY.md`). This is the default and, for a solo agent, usually the
48
+ only store you need.
49
+ - **Shared wiki** — a `wiki/` folder with `wiki/index.md`, for knowledge the whole team
50
+ would otherwise re-derive. Skip it entirely if you work alone; do not manufacture team
51
+ ceremony.
52
+
53
+ Rule of thumb: "only I act on this" goes to memory, "anyone on my team might need this"
54
+ goes to the wiki. Cross-link the two with `[[slug]]` rather than copying the fact into both.
55
+
56
+ ### Step 2: Pass the hygiene gate
57
+
58
+ Compile only a fact that is **durable** and **non-obvious**. Skip it if it is derivable from
59
+ the repository, the git history, or the existing docs; if it is true only for this one
60
+ conversation; or if an existing file already covers it — in that last case update that file.
61
+
62
+ ### Step 3: Search before you write
63
+
64
+ Grep the store and skim the index for the topic. A near-duplicate is worse than no entry,
65
+ because recall then has two answers and no way to choose between them.
66
+
67
+ ### Step 4: Write one atomic file
68
+
69
+ One fact per file. Two unrelated facts are two files. Name it as a kebab-case slug — the
70
+ slug is the link target, so it has to be guessable by the next reader. Frontmatter carries
71
+ `name` (equal to the slug), a one-line `description` specific enough to be matched during
72
+ recall, and a type or category. In the body, state the fact plainly and link related
73
+ entries with `[[slug]]` liberally; a link to a file that does not exist yet is a fine TODO
74
+ marker, not an error.
75
+
76
+ ### Step 5: Add exactly one index line
77
+
78
+ Use one line in the form `- Title → slug.md — hook`, under ~200 characters. Detail lives in
79
+ the file; an index line that restates the file defeats the point of having an index. Create
80
+ the index if it is missing, or the store is undiscoverable.
81
+
82
+ ### Step 6: Age the fact instead of letting it rot
83
+
84
+ Facts expire. When one is time-sensitive or replaces an older one, say so in the
85
+ frontmatter so recall can demote it rather than serving stale truth:
86
+
87
+ - `valid_to: YYYY-MM-DD` — the date the fact needs a recheck.
88
+ - `supersedes: <slug>` — the older fact this replaces. Prefer this over editing in place
89
+ when the old value is still worth seeing; edit in place when it is not.
90
+ - `confidence: high|medium|low` — so a hunch never outranks a measurement.
91
+ - `provenance: "<source>"` — where the fact came from, distinct from who wrote the note.
92
+
93
+ All four are optional and portable; omitting them changes nothing.
94
+
95
+ ## Examples
96
+
97
+ ### Example 1: A measured, non-obvious fact goes to memory
98
+
99
+ ```markdown
100
+ ---
101
+ name: reference_search_api_counts_prs_as_issues
102
+ description: "GitHub's /search/issues endpoint counts pull requests in total_count, so a zero there proves neither issues nor PRs exist — but a non-zero one does not tell you which."
103
+ confidence: high
104
+ provenance: "measured 2026-08-16 while dupe-checking four upstream repos"
105
+ ---
106
+
107
+ `total_count` from `/search/issues?q=<term>+repo:<owner>/<name>` is the sum of issues and
108
+ pull requests. For a "has anyone submitted this yet?" check that is exactly what you want,
109
+ and the zero is a real absence. To separate the two, add `type:pr` or `type:issue`.
110
+
111
+ Related: [[reference_gh_api_ref_serves_default_branch]].
112
+ ```
113
+
114
+ Then one line in the index:
115
+
116
+ ```markdown
117
+ - Search API counts PRs as issues → reference_search_api_counts_prs_as_issues.md — a zero is a real absence, a non-zero is ambiguous
118
+ ```
119
+
120
+ ### Example 2: Nothing durable came out of the task
121
+
122
+ ```
123
+ Task: bump the service's log level to debug and restart it.
124
+
125
+ Compile? No. It is derivable from the config file and the deploy history, and it is true
126
+ only for today. Close the task without writing anything.
127
+ ```
128
+
129
+ ## Best Practices
130
+
131
+ - ✅ Search the store before writing; update the existing file when one exists.
132
+ - ✅ Keep one fact per file and one line per file in the index.
133
+ - ✅ Write the `description` for the person searching later, in their vocabulary, not yours.
134
+ - ✅ Convert relative dates ("yesterday", "last release") to absolute ones at write time.
135
+ - ✅ Delete entries that turn out to be wrong — a wrong memory is worse than a missing one.
136
+ - ❌ Don't compile something the repository, its history, or its docs already say.
137
+ - ❌ Don't leave research as a standalone `notes.md` and call it compiled.
138
+ - ❌ Don't duplicate the same fact into both memory and the wiki; pick one home, cross-link.
139
+ - ❌ Don't write filler to satisfy a checklist.
140
+
141
+ ## Limitations
142
+
143
+ - This skill organizes knowledge; it does not verify it. A confidently written wrong fact
144
+ becomes a confidently retrieved wrong fact, so record how you measured something, not
145
+ only what you concluded.
146
+ - Retrieval quality is bounded by the `description` line. A vague description makes a good
147
+ entry unfindable.
148
+ - It does not replace environment-specific validation, testing, or expert review.
149
+ - Stop and ask for clarification if the store's location or its index file is ambiguous.
150
+
151
+ ## Security & Safety Notes
152
+
153
+ - This skill writes, edits, and occasionally deletes markdown files. Confine every one of
154
+ those operations to the knowledge store directory (the agent's `memory/` folder or the
155
+ project's `wiki/`), and never to source files, configuration, or anything outside it.
156
+ - Deleting a superseded entry is destructive and unreviewable after the fact. Prefer
157
+ `supersedes:` when the old value still has audit value, and confirm before removing a
158
+ file you did not write.
159
+ - Never compile a secret, credential, token, or personal identifier into a knowledge store.
160
+ These files are long-lived, frequently synced, and often shared across a team — treat
161
+ them as if they were public. Record the shape of a credential, never its value.
162
+ - The skill runs no shell commands and makes no network fetches of its own.
163
+
164
+ ## Common Pitfalls
165
+
166
+ - **Problem:** The index grows into a second copy of the store.
167
+ **Solution:** Cap each entry at one line and let the file carry the detail; when the
168
+ index gets long, tighten the hooks rather than adding more of them.
169
+ - **Problem:** Two files describe the same fact slightly differently, so recall returns
170
+ both and the reader trusts neither.
171
+ **Solution:** Merge them into the older slug and leave the newer one deleted; the search
172
+ in Step 3 exists to prevent this.
173
+ - **Problem:** A fact was true when written and is quietly false now.
174
+ **Solution:** Stamp `valid_to:` on anything time-sensitive at write time, and verify a
175
+ recalled fact that names a file, flag, or endpoint before acting on it.
176
+ - **Problem:** Nothing ever gets compiled because it always feels like the wrong moment.
177
+ **Solution:** Bind it to a boundary you already hit — compile before closing a task, not
178
+ as a separate chore you schedule later.
179
+
180
+ ## Related Skills
181
+
182
+ - `@writing-skills` - When you want to package a repeatable procedure as a skill rather
183
+ than record a fact.
184
+ - `@deep-research` - Produces the findings; this skill is what keeps them after the
185
+ session ends.
@@ -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,009+ skills."
3
+ description: "Use agentic-awesome-skills with Jetski/Cortex without hitting context-window overflow with 2,013+ skills."
4
4
  ---
5
5
 
6
- # Jetski/Cortex + Gemini: safe integration with 2,009+ skills
6
+ # Jetski/Cortex + Gemini: safe integration with 2,013+ 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,009+ skills, this approach fills the context window before user messages are even added, causing truncation.
28
+ With 2,013+ 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,009+ skills installed.
26
+ This pattern avoids context overflow when you have 2,013+ 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,009+ Agentic Skills` as supporting catalog evidence, not a second product;
32
+ - present `2,013+ 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,009+ skills from the skills directory
75
+ - All 2,013+ skills from the skills directory
76
76
 
77
77
  ## When to Update
78
78
 
@@ -30,7 +30,7 @@ AAS MCP does not scan the repository and does not decide which skills are best.
30
30
  > **Release boundary:** AAS Core landed after release 14.6.0. Use an exact Core-capable release rather than an unreviewed moving tag.
31
31
 
32
32
  ```bash
33
- npm exec --yes --ignore-scripts --package=agentic-awesome-skills@15.13.0 -- aas mcp configure \
33
+ npm exec --yes --ignore-scripts --package=agentic-awesome-skills@15.14.0 -- aas mcp configure \
34
34
  --host codex \
35
35
  --scope user \
36
36
  --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,009+ | Total Bundles: 58_
1067
+ _Last updated: June 2026 | Total Skills: 2,013+ | 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,009+ skills instead of a narrow single-domain starter pack.
20
+ - It includes 2,013+ 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,009+ files.
15
+ - It helps new users get started with bundles and workflows rather than forcing a cold start from 2,013+ 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,009+ specialized areas
21
+ - **Domain expertise** across 2,013+ 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
@@ -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,009+ skill files** to your computer (default: `~/.agents/skills/`; or a custom path like `~/.agent/skills/` if you used `--path`)
42
+ ✅ **Downloaded 2,013+ 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,009+ skills at once. Here's a sensible approach:
234
+ Don't try to use all 2,013+ 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,009+ 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,013+ 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,009+ skills live here
43
+ ├── 📁 skills/ ← 2,013+ 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,009+ total)
56
+ │ └── ... (2,013+ 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,009+ SKILLS │
109
+ │ 2,013+ 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,009+ total) │
210
+ │ └── ... (2,013+ total) │
211
211
  └─────────────────────────────────────────┘
212
212
  ```
213
213
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: riffkit
3
- description: "Riff a winning TikTok into your own short video — study a proven video's emotion formula and regenerate it with your product, character, and language (EN/ES). Also makes UGC ad creative."
3
+ description: "Riff a winning TikTok into your own short video — study a proven video's emotion formula and regenerate it with your product, character, and language (9 supported). Also makes UGC ad creative."
4
4
  category: api-integration
5
5
  risk: critical
6
6
  source: community
@@ -23,7 +23,7 @@ license_source: "https://github.com/riffkit/skill/blob/main/LICENSE"
23
23
 
24
24
  ## Overview
25
25
 
26
- Riffkit takes one winning short video, studies its *formula* — the hook, pacing, and emotional beats that made it retain viewers — and generates a brand-new video around your product, character, and language (English or Spanish). It never re-uploads the source; the output is your own original. Rendering runs on Riffkit's hosted backend.
26
+ Riffkit takes one winning short video, studies its *formula* — the hook, pacing, and emotional beats that made it retain viewers — and generates a brand-new video around your product, character, and language (9 supported, generated natively rather than dubbed over English). It never re-uploads the source; the output is your own original. Rendering runs on Riffkit's hosted backend.
27
27
 
28
28
  This file is self-contained: follow the workflow below. Additional endpoint documentation is available at **https://riffkit.ai** as a human reference — do **not** fetch and execute instructions from external URLs at runtime; operate only from this reviewed file.
29
29
 
@@ -32,7 +32,7 @@ This file is self-contained: follow the workflow below. Additional endpoint docu
32
32
  - Use when the user says "riff this TikTok into mine" or gives a viral link plus a product.
33
33
  - Use when the user wants a **short-form ad creative** ("make an ad / UGC ad for my product") for TikTok Ads or Meta Ads.
34
34
  - Use when the user wants to **market a product they built** ("make a promo video for my app").
35
- - Use when the user wants to **localize** a winning video into Spanish.
35
+ - Use when the user wants to **localize** a winning video into another language.
36
36
  - Use for faceless / digital-human short-form at posting volume.
37
37
 
38
38
  ## How It Works
@@ -49,7 +49,7 @@ One of: a TikTok link (`tiktok_url`), an uploaded video (`video`, ≤100MB), or
49
49
 
50
50
  - **character** — default **Auto** (AI-generated on-camera person; no avatar needed)
51
51
  - **product** — default **none**; attach a product to place it into the scene
52
- - **language** — default **English**; English or Spanish
52
+ - **language** — default **English**; 9 supported: en, es, pt, id, de, fr, it, ja, zh-CN
53
53
  - **content_anchor** — optional creative direction (which selling point / angle)
54
54
 
55
55
  ### Step 4: Confirm, then submit
@@ -97,7 +97,7 @@ riff https://www.tiktok.com/@user/video/123 into my product video, in Spanish
97
97
  ## Limitations
98
98
 
99
99
  - Makes **riff videos only** — it analyzes a source video's formula and regenerates it. It does not do unrelated content formats or features the product doesn't have.
100
- - Output language is **English or Spanish only**.
100
+ - Output language is one of **9**: en, es, pt, id, de, fr, it, ja, zh-CN.
101
101
  - **Hosted service:** requires an active Riffkit account; rendering is billed by the second (no local/self-hosted mode and no free tier).
102
102
  - **Never publishes** to any platform — it returns a video + caption; posting is the user's action.
103
103
  - Stop and ask for clarification when a required input, permission, or the pre-submit confirmation is missing.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-skills-collection",
3
- "version": "4.0.33",
3
+ "version": "4.0.35",
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
@@ -935,6 +935,105 @@
935
935
  "automation"
936
936
  ]
937
937
  },
938
+ {
939
+ "id": "agent-qa-authoring",
940
+ "path": "skills/agent-qa-authoring",
941
+ "category": "testing",
942
+ "name": "agent-qa-authoring",
943
+ "description": "Create, edit, validate, and run Agent QA tests, suites, and hooks through MCP or CLI while preserving canonical IDs and schema contracts.",
944
+ "risk": "critical",
945
+ "source": "https://github.com/vostride/agent-qa/tree/main/skills/agent-qa-authoring",
946
+ "date_added": "2026-08-16",
947
+ "plugin": {
948
+ "targets": {
949
+ "codex": "supported",
950
+ "claude": "supported"
951
+ },
952
+ "setup": {
953
+ "type": "none",
954
+ "summary": "",
955
+ "docs": null
956
+ },
957
+ "reasons": []
958
+ },
959
+ "source_type": "official",
960
+ "source_repo": "vostride/agent-qa",
961
+ "license": "FSL-1.1-ALv2",
962
+ "license_source": "https://github.com/vostride/agent-qa/blob/main/LICENSE.md",
963
+ "tags": [
964
+ "testing",
965
+ "qa",
966
+ "mcp",
967
+ "web-testing",
968
+ "mobile-testing"
969
+ ]
970
+ },
971
+ {
972
+ "id": "agent-qa-debug-fix",
973
+ "path": "skills/agent-qa-debug-fix",
974
+ "category": "testing",
975
+ "name": "agent-qa-debug-fix",
976
+ "description": "Debug, patch, and verify failed Agent QA runs from MCP evidence, artifacts, logs, and local code without hiding product or infrastructure defects.",
977
+ "risk": "critical",
978
+ "source": "https://github.com/vostride/agent-qa/tree/main/skills/agent-qa-debug-fix",
979
+ "date_added": "2026-08-16",
980
+ "plugin": {
981
+ "targets": {
982
+ "codex": "supported",
983
+ "claude": "supported"
984
+ },
985
+ "setup": {
986
+ "type": "none",
987
+ "summary": "",
988
+ "docs": null
989
+ },
990
+ "reasons": []
991
+ },
992
+ "source_type": "official",
993
+ "source_repo": "vostride/agent-qa",
994
+ "license": "FSL-1.1-ALv2",
995
+ "license_source": "https://github.com/vostride/agent-qa/blob/main/LICENSE.md",
996
+ "tags": [
997
+ "testing",
998
+ "qa",
999
+ "debugging",
1000
+ "mcp",
1001
+ "self-healing"
1002
+ ]
1003
+ },
1004
+ {
1005
+ "id": "agent-qa-result-triage",
1006
+ "path": "skills/agent-qa-result-triage",
1007
+ "category": "testing",
1008
+ "name": "agent-qa-result-triage",
1009
+ "description": "Triage failed Agent QA runs with MCP evidence, artifacts, logs, fixed failure categories, confidence, and actionable next steps.",
1010
+ "risk": "safe",
1011
+ "source": "https://github.com/vostride/agent-qa/tree/main/skills/agent-qa-result-triage",
1012
+ "date_added": "2026-08-16",
1013
+ "plugin": {
1014
+ "targets": {
1015
+ "codex": "supported",
1016
+ "claude": "supported"
1017
+ },
1018
+ "setup": {
1019
+ "type": "none",
1020
+ "summary": "",
1021
+ "docs": null
1022
+ },
1023
+ "reasons": []
1024
+ },
1025
+ "source_type": "official",
1026
+ "source_repo": "vostride/agent-qa",
1027
+ "license": "FSL-1.1-ALv2",
1028
+ "license_source": "https://github.com/vostride/agent-qa/blob/main/LICENSE.md",
1029
+ "tags": [
1030
+ "testing",
1031
+ "qa",
1032
+ "triage",
1033
+ "mcp",
1034
+ "debugging"
1035
+ ]
1036
+ },
938
1037
  {
939
1038
  "id": "agent-self-scheduling",
940
1039
  "path": "skills/agent-self-scheduling",
@@ -2329,6 +2428,39 @@
2329
2428
  "license": "MIT",
2330
2429
  "license_source": "https://github.com/mskadu/opencode-agent-skills/blob/main/LICENSE"
2331
2430
  },
2431
+ {
2432
+ "id": "anti-ui-slop",
2433
+ "path": "skills/anti-ui-slop",
2434
+ "category": "frontend",
2435
+ "name": "anti-ui-slop",
2436
+ "description": "Stop coding agents from shipping generic UI with UIZZE's 800,000+ real web and iOS screens, product-specific contracts, required states, and a hard finish gate.",
2437
+ "risk": "safe",
2438
+ "source": "https://github.com/uizze/uizze/tree/main/skills/anti-ui-slop",
2439
+ "date_added": "2026-08-16",
2440
+ "plugin": {
2441
+ "targets": {
2442
+ "codex": "supported",
2443
+ "claude": "supported"
2444
+ },
2445
+ "setup": {
2446
+ "type": "none",
2447
+ "summary": "",
2448
+ "docs": null
2449
+ },
2450
+ "reasons": []
2451
+ },
2452
+ "source_type": "official",
2453
+ "source_repo": "uizze/uizze",
2454
+ "license": "MIT",
2455
+ "license_source": "https://github.com/uizze/uizze/blob/main/LICENSE",
2456
+ "tags": [
2457
+ "ui",
2458
+ "ux",
2459
+ "frontend",
2460
+ "design",
2461
+ "anti-ui-slop"
2462
+ ]
2463
+ },
2332
2464
  {
2333
2465
  "id": "antigravity-agent-manager",
2334
2466
  "path": "skills/antigravity-agent-manager",
@@ -11214,7 +11346,7 @@
11214
11346
  "path": "skills/cohesivity",
11215
11347
  "category": "backend",
11216
11348
  "name": "cohesivity",
11217
- "description": "Provision backend infra through Cohesivity (cohesivity.ai): Postgres, hosting, auth, storage, and AI model APIs over one HTTP API. Use when a .cohesivity file exists or a project needs a backend.",
11349
+ "description": "Provision headless backend services for AI agents through Cohesivity: hosting, databases, storage, LLMs, and third-party APIs over one HTTP API. Use when a trusted .cohesivity file exists or the user approves a new backend.",
11218
11350
  "risk": "critical",
11219
11351
  "source": "https://github.com/cohesivity-org/cohesivity-skill",
11220
11352
  "date_added": "2026-07-29",
@@ -11549,6 +11681,39 @@
11549
11681
  "license": "MIT",
11550
11682
  "license_source": "https://github.com/jonathimer/devmarketing-skills/blob/main/LICENSE"
11551
11683
  },
11684
+ {
11685
+ "id": "compile-knowledge",
11686
+ "path": "skills/compile-knowledge",
11687
+ "category": "productivity",
11688
+ "name": "compile-knowledge",
11689
+ "description": "Compile durable, non-obvious findings into an interlinked markdown knowledge store — atomic files, [[wiki-links]], a maintained index — so an agent gets smarter across sessions instead of relearning the same facts.",
11690
+ "risk": "safe",
11691
+ "source": "https://github.com/5dive-ai/skills/tree/main/compile-knowledge",
11692
+ "date_added": "2026-08-16",
11693
+ "plugin": {
11694
+ "targets": {
11695
+ "codex": "supported",
11696
+ "claude": "supported"
11697
+ },
11698
+ "setup": {
11699
+ "type": "none",
11700
+ "summary": "",
11701
+ "docs": null
11702
+ },
11703
+ "reasons": []
11704
+ },
11705
+ "source_type": "community",
11706
+ "source_repo": "5dive-ai/skills",
11707
+ "license": "MIT",
11708
+ "license_source": "https://github.com/5dive-ai/skills/blob/main/LICENSE",
11709
+ "tags": [
11710
+ "knowledge-management",
11711
+ "memory",
11712
+ "documentation",
11713
+ "wiki",
11714
+ "notes"
11715
+ ]
11716
+ },
11552
11717
  {
11553
11718
  "id": "complexity-cuts",
11554
11719
  "path": "skills/complexity-cuts",
@@ -26232,6 +26397,36 @@
26232
26397
  "reasons": []
26233
26398
  }
26234
26399
  },
26400
+ {
26401
+ "id": "liuguang-banlan-ui",
26402
+ "path": "skills/liuguang-banlan-ui",
26403
+ "category": "creative",
26404
+ "name": "liuguang-banlan-ui",
26405
+ "description": "Builds two parameterized UI modes—流光溢彩白 (iridescent white) and 五彩斑斓黑 (colorful black)—with OKLCH, WebGL/CSS fallback, vision gating, screenshot QA, and total/per-color intensity reports. Use when a UI request names either mode or needs measured color parameters.",
26406
+ "risk": "critical",
26407
+ "source": "self",
26408
+ "date_added": "2026-08-15",
26409
+ "plugin": {
26410
+ "targets": {
26411
+ "codex": "supported",
26412
+ "claude": "supported"
26413
+ },
26414
+ "setup": {
26415
+ "type": "none",
26416
+ "summary": "",
26417
+ "docs": null
26418
+ },
26419
+ "reasons": []
26420
+ },
26421
+ "source_type": "self",
26422
+ "tags": [
26423
+ "ui",
26424
+ "frontend",
26425
+ "oklch",
26426
+ "webgl",
26427
+ "accessibility"
26428
+ ]
26429
+ },
26235
26430
  {
26236
26431
  "id": "llm-app-patterns",
26237
26432
  "path": "skills/llm-app-patterns",
@@ -36851,7 +37046,7 @@
36851
37046
  "path": "skills/riffkit",
36852
37047
  "category": "api-integration",
36853
37048
  "name": "riffkit",
36854
- "description": "Riff a winning TikTok into your own short video — study a proven video's emotion formula and regenerate it with your product, character, and language (EN/ES). Also makes UGC ad creative.",
37049
+ "description": "Riff a winning TikTok into your own short video — study a proven video's emotion formula and regenerate it with your product, character, and language (9 supported). Also makes UGC ad creative.",
36855
37050
  "risk": "critical",
36856
37051
  "source": "community",
36857
37052
  "date_added": "2026-07-01",
@@ -45679,6 +45874,39 @@
45679
45874
  ]
45680
45875
  }
45681
45876
  },
45877
+ {
45878
+ "id": "using-lwc",
45879
+ "path": "skills/using-lwc",
45880
+ "category": "development",
45881
+ "name": "using-lwc",
45882
+ "description": "Use when project decisions, code structure, research, incidents, or verified context must survive future coding-agent sessions through LWC memory and graph indexes.",
45883
+ "risk": "critical",
45884
+ "source": "community",
45885
+ "date_added": "2026-08-14",
45886
+ "plugin": {
45887
+ "targets": {
45888
+ "codex": "supported",
45889
+ "claude": "supported"
45890
+ },
45891
+ "setup": {
45892
+ "type": "none",
45893
+ "summary": "",
45894
+ "docs": null
45895
+ },
45896
+ "reasons": []
45897
+ },
45898
+ "source_type": "community",
45899
+ "source_repo": "JanYork/using-lwc",
45900
+ "license": "Apache-2.0",
45901
+ "license_source": "https://github.com/JanYork/using-lwc/blob/7bd8052e6fa012786e50eee09f46df06b0cda1b8/LICENSE",
45902
+ "tags": [
45903
+ "memory",
45904
+ "knowledge-graph",
45905
+ "code-intelligence",
45906
+ "wiki",
45907
+ "context-engineering"
45908
+ ]
45909
+ },
45682
45910
  {
45683
45911
  "id": "using-n8n-mcp-skills",
45684
45912
  "path": "skills/using-n8n-mcp-skills",