opencode-skills-collection 4.0.1 → 4.0.2

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-07-15T01:13:33.382Z",
3
+ "updatedAt": "2026-07-16T01:22:28.705Z",
4
4
  "entries": [
5
5
  "00-andruia-consultant",
6
6
  "007",
@@ -104,6 +104,7 @@
104
104
  "antigravity-design-expert",
105
105
  "antigravity-skill-orchestrator",
106
106
  "antigravity-workflows",
107
+ "anywrite",
107
108
  "aomi-transact",
108
109
  "api-analyzer",
109
110
  "api-and-interface-design",
@@ -676,6 +677,7 @@
676
677
  "distribute-skill-to-all-agents",
677
678
  "distributed-debugging-debug-trace",
678
679
  "distributed-tracing",
680
+ "ditto",
679
681
  "django-access-review",
680
682
  "django-perf-review",
681
683
  "django-pro",
@@ -1308,6 +1310,7 @@
1308
1310
  "openapi-spec-generation",
1309
1311
  "openapi-spec-generator",
1310
1312
  "openclaw-github-repo-commander",
1313
+ "optim-agent",
1311
1314
  "options-flow-analyzer",
1312
1315
  "oral-health-analyzer",
1313
1316
  "orchestrate-batch-refactor",
@@ -1663,6 +1666,7 @@
1663
1666
  "sred-project-organizer",
1664
1667
  "sred-work-summary",
1665
1668
  "ssh-penetration-testing",
1669
+ "sshepherd",
1666
1670
  "stability-ai",
1667
1671
  "startup-analyst",
1668
1672
  "startup-business-analyst-business-case",
@@ -0,0 +1,106 @@
1
+ ---
2
+ name: anywrite
3
+ description: "Compiled CLI covering all 52 endpoints of the Anytype local API — objects, properties, tags, search, chat, files — one binary, no MCP server needed."
4
+ category: productivity
5
+ risk: critical
6
+ source: community
7
+ source_repo: Antheurus/anywrite
8
+ source_type: community
9
+ date_added: "2026-07-15"
10
+ author: Antheurus
11
+ tags: [anytype, cli, pkm, notes, api-integration, productivity, knowledge-management]
12
+ tools: [claude, cursor, gemini, codex]
13
+ license: "MIT"
14
+ license_source: "https://github.com/Antheurus/anywrite/blob/main/LICENSE"
15
+ ---
16
+
17
+ # anywrite
18
+
19
+ ## Overview
20
+
21
+ `anywrite` is a single compiled Bun/TypeScript CLI for the [Anytype](https://anytype.io) desktop app's local HTTP API — **all 52 endpoints** across spaces, objects, properties, tags, types, templates, lists, chat, files, members, search, and auth — as one binary with zero runtime dependencies. It exists as a low-context alternative to Anytype's official MCP server: rather than exposing 52 always-loaded tools to every agent session, `anywrite` is a normal CLI wired as a skill that costs zero context until it's actually invoked, and is equally usable from a terminal or any script.
22
+
23
+ ## When to Use This Skill
24
+
25
+ - Use when the user mentions Anytype or asks to create, update, search, or organize notes, tasks, or PKM objects.
26
+ - Use when working with Anytype spaces, properties, tags, types, templates, or lists (sets and collections).
27
+ - Use when the user asks to upload files to a space, chat inside a space, or read/write structured objects programmatically.
28
+
29
+ ## How It Works
30
+
31
+ ### Step 1: Ensure Anytype desktop is running and authenticated
32
+
33
+ The Anytype desktop app must be running locally (default `http://localhost:31009`). Authenticate once:
34
+
35
+ ```bash
36
+ ./dist/anywrite auth --status # shows configured yes/no and where the key came from
37
+ ./dist/anywrite auth # challenge flow — a 4-digit code appears in the app
38
+ ./dist/anywrite auth --code 1234 # non-interactive form of the same exchange
39
+ ```
40
+
41
+ The key is written to `~/.anywrite/config.json` and is never printed by any command.
42
+
43
+ ### Step 2: Invoke a resource + action
44
+
45
+ ```
46
+ anywrite <resource> <action> [positionals] [--flag value]
47
+ ```
48
+
49
+ Resources: `spaces`, `objects`, `properties`, `tags`, `types`, `templates`, `lists`, `files`, `members`, `search`, `chat`, `auth`. Output is JSON by default; add `--pretty` for a human view, `--json` as an escape hatch for anything the typed flags don't model yet. `space`/`type`/`property` positionals accept a name or an id — names are resolved to ids automatically.
50
+
51
+ ## Examples
52
+
53
+ ### Example 1: Create and update an object
54
+
55
+ ```bash
56
+ ./dist/anywrite objects create <space> --type task --name "Buy milk"
57
+ ./dist/anywrite objects update <space> <object_id> --status "Done"
58
+ ```
59
+
60
+ ### Example 2: Search and upload a file
61
+
62
+ ```bash
63
+ ./dist/anywrite search global --query "task" --types task
64
+ ./dist/anywrite files upload <space> --file ./image.png
65
+ ```
66
+
67
+ ### Example 3: Read chat messages
68
+
69
+ ```bash
70
+ ./dist/anywrite chat messages <space> <chat_id> --all
71
+ ```
72
+
73
+ ## Best Practices
74
+
75
+ - ✅ Pass names for `space`/`type`/`property` and let the CLI resolve them to ids.
76
+ - ✅ Use default JSON output for scripting and `--pretty` for human review.
77
+ - ✅ Reach for `--json` when a brand-new API field isn't yet covered by a typed flag.
78
+ - ❌ Don't set an empty-string emoji `--icon`; omit the flag entirely instead.
79
+ - ❌ Don't expect `lists add`/`remove` to work on sets — they only apply to collections.
80
+
81
+ ## Limitations
82
+
83
+ - This skill does not replace environment-specific validation, testing, or expert review.
84
+ - Stop and ask for clarification if required inputs, permissions, or safety boundaries are missing.
85
+ - Bounded by the Anytype local API itself: no block-level editing (body is whole-markdown replace only), no member invite/role management, no template create/update/delete, no space deletion.
86
+ - The object body field is named `--body` on create but `--markdown` on update.
87
+
88
+ ## Security & Safety Notes
89
+
90
+ - The API key is stored locally in `~/.anywrite/config.json` and is never printed by any command, including `auth --status`.
91
+ - Config precedence at runtime: `ANYTYPE_API_KEY` env var, then `~/.anywrite/config.json`, then a read-only fallback to an existing `~/.anytype-cli/config.yaml`.
92
+ - All operations target a locally-running Anytype desktop instance; no data is sent to third-party servers.
93
+ - Delete is a soft archive everywhere and is idempotent — a repeated delete stays `200`, never `410`.
94
+
95
+ ## Common Pitfalls
96
+
97
+ - **Problem:** `lists add`/`remove` silently does nothing on a set.
98
+ **Solution:** These only work on collections, not sets.
99
+ - **Problem:** Re-uploading an identical file returns an existing object id instead of a new one.
100
+ **Solution:** This is intentional — file upload dedupes by content hash.
101
+ - **Problem:** Chat messages don't paginate like everything else.
102
+ **Solution:** Chat paginates by cursor; every other resource paginates by offset.
103
+
104
+ ## Related Skills
105
+
106
+ - `@docx` - When the deliverable is a Word document rather than an Anytype object.
@@ -0,0 +1,173 @@
1
+ ---
2
+ name: ditto
3
+ description: "Use when a user asks to mine or update a private, evidence-backed work profile from local Claude Code, Codex, Copilot CLI, or OpenCode sessions."
4
+ category: agent-behavior
5
+ risk: critical
6
+ source: community
7
+ source_repo: ohad6k/ditto
8
+ source_type: community
9
+ date_added: "2026-07-14"
10
+ author: ohad6k
11
+ tags: [personalization, context-engineering, session-mining, agent-memory]
12
+ tools: [claude, cursor, gemini, codex-cli]
13
+ license: "MIT"
14
+ license_source: "https://github.com/ohad6k/ditto/blob/v0.3.6/LICENSE"
15
+ ---
16
+
17
+ # Ditto
18
+
19
+ ## Overview
20
+
21
+ Ditto mines only the user's words from real local coding-agent session logs and
22
+ turns repeated, supported patterns into private work, design, and writing
23
+ profiles. It keeps dated session receipts, rejects authored rules and memory as
24
+ source evidence, and requires approval before model-backed mining begins.
25
+
26
+ This standalone skill routes a compatible, already-installed Ditto runtime.
27
+ Native namespaced routing is available through the upstream Ditto plugin.
28
+
29
+ ## When to Use This Skill
30
+
31
+ - Use when the user explicitly asks to set up, run, update, re-mine, or deepen Ditto.
32
+ - Use when the user wants an agent profile derived from real coding-session history rather than a questionnaire or rules file.
33
+ - Use when native `ditto:mine` is unavailable and the user already has a compatible Ditto runtime installed.
34
+
35
+ Do not trigger this skill merely because personalization might be useful. Mining
36
+ requires an explicit user request.
37
+
38
+ ## How It Works
39
+
40
+ ### 1. Resolve an installed runtime
41
+
42
+ Ask the user for the path to an existing, trusted Ditto runtime, or use the
43
+ native upstream plugin when it is already installed. Retain the exact Python 3
44
+ executable path as `PYTHON3`, the runtime path as `DITTO_PY`, and its matching
45
+ `MINING_PROMPT.md` path. Confirm the installed version and source before use.
46
+
47
+ Do not download or install executable code as part of this skill. If Ditto is
48
+ not installed, stop and direct the user to the upstream installation guidance;
49
+ installation is a separate, explicit decision.
50
+
51
+ ### 2. Show the read-only mining plan
52
+
53
+ Mine only real user-authored sessions. Never synthesize a profile from
54
+ `AGENTS.md`, `CLAUDE.md`, memory files, rules files, or a typed self-description.
55
+
56
+ Run the full-history quality-default preflight:
57
+
58
+ ```bash
59
+ "$PYTHON3" "$DITTO_PY" plugin preflight
60
+ ```
61
+
62
+ Show the user the valid session count, post-dedupe source tokens, selected source
63
+ tokens, cache hits, planned worker calls, and planned reducer calls. Wait for
64
+ explicit approval of this displayed plan before any model-backed work.
65
+
66
+ If the user explicitly asks for a quick preview, add `--preview` and say exactly:
67
+
68
+ > Quick preview creates a starter profile from selected history, not the full profile.
69
+
70
+ Never present preview as the default or as equivalent to the full-history result.
71
+
72
+ ### 3. Prepare the approved run
73
+
74
+ Retain the displayed `approval_hash`, then prepare with the exact approved mode.
75
+ For the full-history plan, run:
76
+
77
+ ```bash
78
+ "$PYTHON3" "$DITTO_PY" plugin prepare --approved-plan-hash HASH
79
+ ```
80
+
81
+ For an approved quick-preview plan, preserve preview mode explicitly:
82
+
83
+ ```bash
84
+ "$PYTHON3" "$DITTO_PY" plugin prepare --preview --approved-plan-hash HASH
85
+ ```
86
+
87
+ If the hash changes, show the new plan and obtain approval again. Retain the
88
+ returned `run_id`, assigned segment and report paths, and `pack_path`.
89
+
90
+ ### 4. Mine and validate evidence
91
+
92
+ For every uncached selected segment, run one worker over only that segment and
93
+ the per-segment contract in the resolved `MINING_PROMPT.md`. Cache each JSON
94
+ report with `plugin cache-report` and stop on rejection.
95
+
96
+ Run one strongest-available reducer over only the validated reports and reducer
97
+ contract. Write the complete pack to `pack_path`, validate it, and activate only
98
+ the validated pack with `plugin activate`.
99
+
100
+ ### 5. Verify and report
101
+
102
+ Run `plugin status`, render the profile card, and report:
103
+
104
+ - active version and core profile path
105
+ - active and inactive domains
106
+ - selected source tokens and actual worker/reducer passes
107
+ - cache reuse
108
+ - card path
109
+ - any exact targeted-deepen instruction
110
+
111
+ If the current host already has the native Ditto plugin, do not create a
112
+ competing direct profile installation.
113
+
114
+ ## Examples
115
+
116
+ ### Full-history setup
117
+
118
+ ```text
119
+ User: run ditto on my coding history
120
+ Agent: resolves the pinned runtime, shows the read-only full-history plan, and
121
+ waits for explicit cost approval before starting any mining workers.
122
+ ```
123
+
124
+ ### Explicit quick preview
125
+
126
+ ```text
127
+ User: give me a cheap ditto preview first
128
+ Agent: runs preflight with --preview, labels it as a starter profile, and waits
129
+ for approval of the displayed preview plan.
130
+ ```
131
+
132
+ ## Best Practices
133
+
134
+ - Keep raw sessions, caches, receipts, and generated profiles private by default.
135
+ - Report exact observed counts and paths; never estimate provider billing or coverage.
136
+ - Preserve the approval hash and mode through the complete run.
137
+ - Stop on validation failure instead of activating a partial profile.
138
+ - Share the card or a short trait, not the full private profile or receipt appendix.
139
+
140
+ ## Limitations
141
+
142
+ - Ditto models working behavior; it does not make the underlying model smarter.
143
+ - Sparse or repetitive histories can leave design or writing domains inactive.
144
+ - Provider system prompts, tool traffic, and billing overhead are outside Ditto's exact token accounting.
145
+ - Quick preview has lower recall than the full-history quality default.
146
+ - Automatic work, design, and writing routing requires the upstream native plugin.
147
+
148
+ ## Security & Safety Notes
149
+
150
+ - This skill does not download executable code; it requires an existing trusted Ditto installation.
151
+ - Extraction, redaction, caches, and generated profiles stay local. Selected redacted text is processed by the model provider the user chooses.
152
+ - Redaction is best-effort. Tell the user to inspect private output before sharing it.
153
+ - Never upload session logs or full profiles to a third party without explicit user approval.
154
+ - Installation itself schedules no mining model calls; every prepared mining mode still requires approval of its displayed plan.
155
+
156
+ ## Common Pitfalls
157
+
158
+ - **Problem:** No eligible sessions are found.
159
+
160
+ **Solution:** Report the supported source locations that were checked and ask whether the user has retained or exported session history.
161
+
162
+ - **Problem:** The approval hash changed.
163
+
164
+ **Solution:** Do not reuse the old approval. Show the updated plan and obtain approval again.
165
+
166
+ - **Problem:** A cached or reduced report fails validation.
167
+
168
+ **Solution:** Stop, preserve the failure evidence, and never activate the incomplete pack.
169
+
170
+ ## Related Skills
171
+
172
+ - `@agenttrace-session-audit` - Use for cost, latency, failure, and health analysis of coding-agent sessions.
173
+ - `@agent-memory` - Use for explicit persistent knowledge storage rather than evidence-based profile mining.
@@ -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 1,958+ skills."
3
+ description: "Use agentic-awesome-skills with Jetski/Cortex without hitting context-window overflow with 1,962+ skills."
4
4
  ---
5
5
 
6
- # Jetski/Cortex + Gemini: safe integration with 1,958+ skills
6
+ # Jetski/Cortex + Gemini: safe integration with 1,962+ skills
7
7
 
8
8
  This guide shows how to integrate the `agentic-awesome-skills` repository with an agent based on **Jetski/Cortex + Gemini** (or similar frameworks) **without exceeding the model context window**.
9
9
 
@@ -23,7 +23,7 @@ Never do:
23
23
  - concatenate all `SKILL.md` content into a single system prompt;
24
24
  - re-inject the entire library for **every** request.
25
25
 
26
- With 1,958+ skills, this approach fills the context window before user messages are even added, causing truncation.
26
+ With 1,962+ skills, this approach fills the context window before user messages are even added, causing truncation.
27
27
 
28
28
  ---
29
29
 
@@ -21,7 +21,7 @@ This example shows one way to integrate **agentic-awesome-skills** with a Jetski
21
21
  - How to enforce a **maximum number of skills per turn** via `maxSkillsPerTurn`.
22
22
  - How to choose whether to **truncate or error** when too many skills are requested via `overflowBehavior`.
23
23
 
24
- This pattern avoids context overflow when you have 1,958+ skills installed.
24
+ This pattern avoids context overflow when you have 1,962+ skills installed.
25
25
 
26
26
  Manifest contract references:
27
27
 
@@ -6,7 +6,7 @@ This document keeps the repository's GitHub-facing discovery copy aligned with t
6
6
 
7
7
  Preferred positioning:
8
8
 
9
- > Installable GitHub library of 1,958+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and other AI coding assistants.
9
+ > Installable GitHub library of 1,962+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and other AI coding assistants.
10
10
 
11
11
  Key framing:
12
12
 
@@ -20,7 +20,7 @@ Key framing:
20
20
 
21
21
  Preferred description:
22
22
 
23
- > Installable GitHub library of 1,958+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.
23
+ > Installable GitHub library of 1,962+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.
24
24
 
25
25
  Preferred homepage:
26
26
 
@@ -28,7 +28,7 @@ Preferred homepage:
28
28
 
29
29
  Preferred social preview:
30
30
 
31
- - use a clean preview image that says `1,958+ Agentic Skills`;
31
+ - use a clean preview image that says `1,962+ Agentic Skills`;
32
32
  - mention Claude Code, Cursor, Codex CLI, and Gemini CLI;
33
33
  - avoid dense text and tiny logos that disappear in social cards.
34
34
 
@@ -72,7 +72,7 @@ The update process refreshes:
72
72
  - Canonical skills index (`skills_index.json`)
73
73
  - Compatibility mirror (`data/skills_index.json`)
74
74
  - Web app skills data (`apps\web-app\public\skills.json`)
75
- - All 1,958+ skills from the skills directory
75
+ - All 1,962+ skills from the skills directory
76
76
 
77
77
  ## When to Update
78
78
 
@@ -1060,4 +1060,4 @@ Found a skill that should be in a bundle? Or want to create a new bundle? [Open
1060
1060
 
1061
1061
  ---
1062
1062
 
1063
- _Last updated: June 2026 | Total Skills: 1,958+ | Total Bundles: 58_
1063
+ _Last updated: June 2026 | Total Skills: 1,962+ | Total Bundles: 58_
@@ -12,7 +12,7 @@ Install the library into Claude Code, then invoke focused skills directly in the
12
12
 
13
13
  ## Why use this repo for Claude Code
14
14
 
15
- - It includes 1,958+ skills instead of a narrow single-domain starter pack.
15
+ - It includes 1,962+ skills instead of a narrow single-domain starter pack.
16
16
  - It supports the standard `.claude/skills/` path and the Claude Code plugin marketplace flow.
17
17
  - It also ships generated bundle plugins so teams can install focused packs like `Essentials` or `Security Developer` from the marketplace metadata.
18
18
  - It includes onboarding docs, bundles, and workflows so new users do not need to guess where to begin.
@@ -12,7 +12,7 @@ Install into the Gemini skills path, then ask Gemini to apply one skill at a tim
12
12
 
13
13
  - It installs directly into the expected Gemini skills path.
14
14
  - It includes both core software engineering skills and deeper agent/LLM-oriented skills.
15
- - It helps new users get started with bundles and workflows rather than forcing a cold start from 1,958+ files.
15
+ - It helps new users get started with bundles and workflows rather than forcing a cold start from 1,962+ files.
16
16
  - It is useful whether you want a broad internal skill library or a single repo to test many workflows quickly.
17
17
 
18
18
  ## Install Gemini CLI Skills
@@ -1,4 +1,4 @@
1
- # Getting Started with Agentic Awesome Skills (V14.4.0)
1
+ # Getting Started with Agentic Awesome Skills (V14.5.0)
2
2
 
3
3
  **New here? This guide will help you supercharge your AI Agent in 5 minutes.**
4
4
 
@@ -18,7 +18,7 @@ Kiro is AWS's agentic AI IDE that combines:
18
18
 
19
19
  Kiro's agentic capabilities are enhanced by skills that provide:
20
20
 
21
- - **Domain expertise** across 1,958+ specialized areas
21
+ - **Domain expertise** across 1,962+ 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
@@ -14,7 +14,7 @@ If you came in through a **Claude Code** or **Codex** plugin instead of a full l
14
14
 
15
15
  When you ran `npx agentic-awesome-skills` or cloned the repository, you:
16
16
 
17
- ✅ **Downloaded 1,958+ skill files** to your computer (default: `~/.agents/skills/`; or a custom path like `~/.agent/skills/` if you used `--path`)
17
+ ✅ **Downloaded 1,962+ skill files** to your computer (default: `~/.agents/skills/`; or a custom path like `~/.agent/skills/` if you used `--path`)
18
18
  ✅ **Made them available** to your AI assistant
19
19
  ❌ **Did NOT enable them all automatically** (they're just sitting there, waiting)
20
20
 
@@ -34,7 +34,7 @@ Bundles are **curated groups** of skills organized by role. They help you decide
34
34
 
35
35
  **Analogy:**
36
36
 
37
- - You installed a toolbox with 1,958+ tools (✅ done)
37
+ - You installed a toolbox with 1,962+ tools (✅ done)
38
38
  - Bundles are like **labeled organizer trays** saying: "If you're a carpenter, start with these 10 tools"
39
39
  - You can either **pick skills from the tray** or install that tray as a focused marketplace bundle plugin
40
40
 
@@ -212,7 +212,7 @@ Let's actually use a skill right now. Follow these steps:
212
212
 
213
213
  ## Step 5: Picking Your First Skills (Practical Advice)
214
214
 
215
- Don't try to use all 1,958+ skills at once. Here's a sensible approach:
215
+ Don't try to use all 1,962+ skills at once. Here's a sensible approach:
216
216
 
217
217
  If you want a tool-specific starting point before choosing skills, use:
218
218
 
@@ -343,7 +343,7 @@ Usually no, but if your AI doesn't recognize a skill:
343
343
 
344
344
  ### "Can I load all skills into the model at once?"
345
345
 
346
- No. Even though you have 1,958+ skills installed locally, you should **not** concatenate every `SKILL.md` into a single system prompt or context block.
346
+ No. Even though you have 1,962+ skills installed locally, you should **not** concatenate every `SKILL.md` into a single system prompt or context block.
347
347
 
348
348
  The intended pattern is:
349
349
 
@@ -34,7 +34,7 @@ agentic-awesome-skills/
34
34
  ├── 📄 CONTRIBUTING.md ← Contributor workflow
35
35
  ├── 📄 CATALOG.md ← Full generated catalog
36
36
 
37
- ├── 📁 skills/ ← 1,958+ skills live here
37
+ ├── 📁 skills/ ← 1,962+ skills live here
38
38
  │ │
39
39
  │ ├── 📁 brainstorming/
40
40
  │ │ └── 📄 SKILL.md ← Skill definition
@@ -47,7 +47,7 @@ agentic-awesome-skills/
47
47
  │ │ └── 📁 2d-games/
48
48
  │ │ └── 📄 SKILL.md ← Nested skills also supported
49
49
  │ │
50
- │ └── ... (1,958+ total)
50
+ │ └── ... (1,962+ total)
51
51
 
52
52
  ├── 📁 apps/
53
53
  │ └── 📁 web-app/ ← Interactive browser
@@ -100,7 +100,7 @@ agentic-awesome-skills/
100
100
 
101
101
  ```
102
102
  ┌─────────────────────────┐
103
- │ 1,958+ SKILLS │
103
+ │ 1,962+ SKILLS │
104
104
  └────────────┬────────────┘
105
105
 
106
106
  ┌────────────────────────┼────────────────────────┐
@@ -201,7 +201,7 @@ If you want a workspace-style manual install instead, cloning into `.agent/skill
201
201
  │ ├── 📁 brainstorming/ │
202
202
  │ ├── 📁 stripe-integration/ │
203
203
  │ ├── 📁 react-best-practices/ │
204
- │ └── ... (1,958+ total) │
204
+ │ └── ... (1,962+ total) │
205
205
  └─────────────────────────────────────────┘
206
206
  ```
207
207
 
@@ -0,0 +1,78 @@
1
+ ---
2
+ name: optim-agent
3
+ description: "Guide agent-driven parameter optimization for configurable systems with measurable objectives. Use for HPO, inference tuning, simulations, or RL/control experiments."
4
+ category: data
5
+ risk: safe
6
+ source: community
7
+ source_repo: Optim-Agent/optim-agent
8
+ source_type: community
9
+ date_added: "2026-07-15"
10
+ author: Optim-Agent
11
+ tags: [optimization, hyperparameter-optimization, experiments, tuning]
12
+ tools: [claude, cursor, gemini, codex]
13
+ license: MIT
14
+ license_source: "https://github.com/Optim-Agent/optim-agent/blob/main/LICENSE"
15
+ ---
16
+
17
+ # Optim Agent
18
+
19
+ ## Overview
20
+
21
+ Use this skill to optimize configurable systems against a measurable scalar objective. It helps an agent turn vague tuning requests into bounded experiments with a defined search space, budget, baseline, and evidence-backed recommendation.
22
+
23
+ ## When to Use This Skill
24
+
25
+ - Use when tuning hyperparameters, prompts, inference settings, simulation parameters, quantitative strategies, or RL/control policies.
26
+ - Use when the objective can be measured as a scalar score, loss, accuracy, cost, latency, reward, or risk-adjusted metric.
27
+ - Use when the user needs a small-budget optimization loop with trial history, comparisons, and stop criteria.
28
+
29
+ ## Do not use this skill when
30
+
31
+ - The objective is purely subjective and cannot be scored consistently.
32
+ - The user has not provided permission to run experiments or consume compute/API budget.
33
+ - The task is a one-shot implementation, debugging, or code review request with no configurable search space.
34
+
35
+ ## Instructions
36
+
37
+ 1. Define the optimization target in one sentence: maximize or minimize one scalar metric.
38
+ 2. List the tunable parameters, valid ranges, types, defaults, and any forbidden combinations.
39
+ 3. Establish at least one baseline before proposing agent-guided trials.
40
+ 4. Set the budget up front: number of trials, time, compute, money, or dataset subsample.
41
+ 5. Run or request trials one at a time unless the user explicitly approves parallel execution.
42
+ 6. Record every trial with parameters, metric value, notes, and failure status.
43
+ 7. Compare the best result against the baseline and a simple search strategy when possible.
44
+ 8. Stop when the budget is exhausted, the improvement plateaus, or the next trial cannot be justified from evidence.
45
+ 9. Report the recommended configuration, measured gain, tradeoffs, and any validation still needed before production use.
46
+
47
+ ## Examples
48
+
49
+ ### Example 1: Hyperparameter optimization
50
+
51
+ Tune learning rate, regularization, and tree depth for a credit-default model. Track validation AUC for each trial, compare against the default configuration, and recommend the best setting only if it improves the baseline under the agreed trial budget.
52
+
53
+ ### Example 2: Inference tuning
54
+
55
+ Tune retrieval depth, temperature, and reranker threshold for a RAG workflow. Optimize answer quality under a latency or cost ceiling, then report the best configuration with quality, latency, and cost tradeoffs.
56
+
57
+ ### Example 3: Simulation or control
58
+
59
+ Tune controller gains or environment parameters for a simulator. Optimize reward or error while logging failed trials separately so unstable configurations do not bias the recommendation.
60
+
61
+ ## Best Practices
62
+
63
+ - Keep the first run small; expand only after the loop produces useful signal.
64
+ - Prefer parameters with clear operational meaning over arbitrary knobs.
65
+ - Treat failed trials as data and record why they failed.
66
+ - Validate the final configuration on held-out data, a fresh seed, or a separate scenario before calling it robust.
67
+ - Ask before running expensive, long, or externally billed experiments.
68
+
69
+ ## Limitations
70
+
71
+ - This skill does not guarantee a global optimum.
72
+ - Results depend on objective quality, noise, search-space design, and experiment reproducibility.
73
+ - Use domain review before applying tuned configurations to production, financial, safety-critical, or user-impacting systems.
74
+
75
+ ## Additional Resources
76
+
77
+ - [Optim-Agent repository](https://github.com/Optim-Agent/optim-agent)
78
+ - [Optim-Agent documentation](https://optim-agent.github.io/optim-agent/)
@@ -0,0 +1,107 @@
1
+ ---
2
+ name: sshepherd
3
+ description: "Zero-knowledge SSH ops CLI — server health checks, docker/systemd control, log tailing, Postgres introspection, and declarative deploys, without ever exposing credentials to the agent."
4
+ category: devops
5
+ risk: critical
6
+ source: community
7
+ source_repo: Antheurus/sshepherd
8
+ source_type: community
9
+ date_added: "2026-07-15"
10
+ author: Antheurus
11
+ tags: [ssh, devops, cli, server-ops, postgres, deploy, zero-knowledge]
12
+ tools: [claude, cursor, gemini, codex]
13
+ license: "MIT"
14
+ license_source: "https://github.com/Antheurus/sshepherd/blob/main/LICENSE"
15
+ ---
16
+
17
+ # sshepherd
18
+
19
+ ## Overview
20
+
21
+ `sshepherd` is a compiled Bun/TypeScript CLI that lets an agent operate a real remote server over SSH — health checks, docker/systemd service control, log tailing, config file edits, read-only Postgres introspection, and declarative deploys — without ever seeing a password, private key, hostname, username, or port. Every operation shells out to the system `ssh` binary through a single transport path and returns the same typed `Envelope<T>` (`ok`, `alias`, `data`, `error`), never a raw terminal dump. The agent passes only a *name* — an ssh alias, a Postgres target, or a deploy recipe — that resolves entirely outside the process.
22
+
23
+ ## When to Use This Skill
24
+
25
+ - Use when you need to check a remote server's health (disk, memory, CPU, ports, OOM history) without handing the agent SSH credentials.
26
+ - Use when working with remote docker or systemd services — listing, inspecting, or restarting them — or tailing their logs.
27
+ - Use when the user asks to read or edit a remote config file, run a declarative deploy from a named recipe, introspect a remote Postgres database read-only, or audit SSH/security posture on a box.
28
+
29
+ ## How It Works
30
+
31
+ ### Step 1: Declare targets once, outside any prompt
32
+
33
+ Every connection detail is declared ahead of time and never appears on the command line: ssh aliases in `~/.ssh/config`, Postgres targets in `~/.config/sshepherd/targets.toml`, deploy recipes in recipe TOML files. OpenSSH resolves the real `HostName`/`User`/`Port`/`IdentityFile` internally.
34
+
35
+ ### Step 2: Invoke a group + action by name
36
+
37
+ ```
38
+ sshepherd <group> <action> [positionals...] [--flag value]
39
+ ```
40
+
41
+ Nine command groups — `hosts`, `check`, `logs`, `services`, `deploy`, `config`, `db`, `files`, `security` — 52 ops total. Output is JSON to stdout by default; add `--pretty` for a human-readable table/key-value view. The response only ever echoes back the `alias` it was given — there is no host/user/port/ip field anywhere in the response type, structurally.
42
+
43
+ ### Step 3: Discover the command surface
44
+
45
+ ```bash
46
+ ./dist/sshepherd --help # list groups
47
+ ./dist/sshepherd check --help # list actions + flags for one group
48
+ ```
49
+
50
+ ## Examples
51
+
52
+ ### Example 1: Server health overview
53
+
54
+ ```bash
55
+ ./dist/sshepherd check overview lms-server
56
+ ```
57
+
58
+ Returns a JSON envelope with disk, memory, CPU, listening ports, and OOM history for the host behind the `lms-server` alias — the agent never learns the host's address.
59
+
60
+ ### Example 2: Restart a docker service and tail its logs
61
+
62
+ ```bash
63
+ ./dist/sshepherd services restart lms-server --name api
64
+ ./dist/sshepherd logs tail lms-server --name api --lines 100
65
+ ```
66
+
67
+ ### Example 3: Read-only Postgres introspection
68
+
69
+ ```bash
70
+ ./dist/sshepherd db tables prod
71
+ ```
72
+
73
+ `prod` is a pg-target name that resolves to *how* to reach `psql` on a host — never a database password. `psql` runs inside the target container, authenticated by peer/trust/`.pgpass` already on the remote.
74
+
75
+ ## Best Practices
76
+
77
+ - ✅ Declare every alias/target/recipe ahead of time in `~/.ssh/config` / `targets.toml` / recipe TOML — never inline connection details.
78
+ - ✅ Pass only names (alias, pg-target, recipe) to the CLI; let OpenSSH own authentication.
79
+ - ✅ Use `--pretty` for human review and default JSON output for machine parsing.
80
+ - ❌ Don't try to inject a hostname, user, port, or password into a command — the CLI has no field for them.
81
+ - ❌ Don't reach for the `ssh2` npm library or hand-rolled SSH; the whole point is delegating to the trusted system `ssh` binary.
82
+
83
+ ## Limitations
84
+
85
+ - This skill does not replace environment-specific validation, testing, or expert review.
86
+ - Stop and ask for clarification if required inputs, permissions, or safety boundaries are missing.
87
+ - Requires the system OpenSSH client and pre-declared aliases/targets/recipes; it cannot connect to a host that has not been configured outside the agent.
88
+ - Postgres access is read-only introspection by design.
89
+
90
+ ## Security & Safety Notes
91
+
92
+ - **Zero-knowledge credential model:** the agent never sees a password, private key, hostname, username, or port. It only ever passes an ssh alias, a pg-target name, or a recipe name; the real connection tuple is resolved by OpenSSH outside the process, and every response echoes back only the alias.
93
+ - **Never reads private key material.** Authentication happens entirely inside OpenSSH's own trusted code path.
94
+ - **Confirmation gate on mutations:** destructive/mutating actions (service restart, config write, deploy) require an explicit `--yes` confirm flag.
95
+ - **Human-only credential entry:** the separate `setup ssh-alias install` action opens a one-shot local browser form that only a human can type a password into — the agent can trigger and wait on it but never sees, logs, or relays the password.
96
+ - Environment expectation: run against hosts you are authorized to operate.
97
+
98
+ ## Common Pitfalls
99
+
100
+ - **Problem:** Trying to pass a hostname or password directly to a command.
101
+ **Solution:** Register the target first (`setup ssh-alias register` / `setup db-target`), then reference it only by name.
102
+ - **Problem:** A mutating action returns without doing anything.
103
+ **Solution:** Add the `--yes` confirm flag — mutations are gated by design.
104
+
105
+ ## Related Skills
106
+
107
+ - `@devops-automation` - When you need broader CI/CD or infrastructure-as-code automation beyond SSH ops.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-skills-collection",
3
- "version": "4.0.1",
3
+ "version": "4.0.2",
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",
@@ -46,6 +46,6 @@
46
46
  "@types/bun": "*",
47
47
  "@types/node": "^26.0.0",
48
48
  "@types/strip-json-comments": "^3.0.0",
49
- "typescript": "^6.0.2"
49
+ "typescript": "^7.0.2"
50
50
  }
51
51
  }
package/skills_index.json CHANGED
@@ -2388,6 +2388,41 @@
2388
2388
  "reasons": []
2389
2389
  }
2390
2390
  },
2391
+ {
2392
+ "id": "anywrite",
2393
+ "path": "skills/anywrite",
2394
+ "category": "productivity",
2395
+ "name": "anywrite",
2396
+ "description": "Compiled CLI covering all 52 endpoints of the Anytype local API — objects, properties, tags, search, chat, files — one binary, no MCP server needed.",
2397
+ "risk": "critical",
2398
+ "source": "community",
2399
+ "date_added": "2026-07-15",
2400
+ "plugin": {
2401
+ "targets": {
2402
+ "codex": "supported",
2403
+ "claude": "supported"
2404
+ },
2405
+ "setup": {
2406
+ "type": "none",
2407
+ "summary": "",
2408
+ "docs": null
2409
+ },
2410
+ "reasons": []
2411
+ },
2412
+ "source_type": "community",
2413
+ "source_repo": "Antheurus/anywrite",
2414
+ "license": "MIT",
2415
+ "license_source": "https://github.com/Antheurus/anywrite/blob/main/LICENSE",
2416
+ "tags": [
2417
+ "anytype",
2418
+ "cli",
2419
+ "pkm",
2420
+ "notes",
2421
+ "api-integration",
2422
+ "productivity",
2423
+ "knowledge-management"
2424
+ ]
2425
+ },
2391
2426
  {
2392
2427
  "id": "aomi-transact",
2393
2428
  "path": "skills/aomi-transact",
@@ -15445,6 +15480,38 @@
15445
15480
  "reasons": []
15446
15481
  }
15447
15482
  },
15483
+ {
15484
+ "id": "ditto",
15485
+ "path": "skills/ditto",
15486
+ "category": "agent-behavior",
15487
+ "name": "ditto",
15488
+ "description": "Use when a user asks to mine or update a private, evidence-backed work profile from local Claude Code, Codex, Copilot CLI, or OpenCode sessions.",
15489
+ "risk": "critical",
15490
+ "source": "community",
15491
+ "date_added": "2026-07-14",
15492
+ "plugin": {
15493
+ "targets": {
15494
+ "codex": "supported",
15495
+ "claude": "supported"
15496
+ },
15497
+ "setup": {
15498
+ "type": "none",
15499
+ "summary": "",
15500
+ "docs": null
15501
+ },
15502
+ "reasons": []
15503
+ },
15504
+ "source_type": "community",
15505
+ "source_repo": "ohad6k/ditto",
15506
+ "license": "MIT",
15507
+ "license_source": "https://github.com/ohad6k/ditto/blob/v0.3.6/LICENSE",
15508
+ "tags": [
15509
+ "personalization",
15510
+ "context-engineering",
15511
+ "session-mining",
15512
+ "agent-memory"
15513
+ ]
15514
+ },
15448
15515
  {
15449
15516
  "id": "django-access-review",
15450
15517
  "path": "skills/django-access-review",
@@ -31098,6 +31165,38 @@
31098
31165
  "security"
31099
31166
  ]
31100
31167
  },
31168
+ {
31169
+ "id": "optim-agent",
31170
+ "path": "skills/optim-agent",
31171
+ "category": "data",
31172
+ "name": "optim-agent",
31173
+ "description": "Guide agent-driven parameter optimization for configurable systems with measurable objectives. Use for HPO, inference tuning, simulations, or RL/control experiments.",
31174
+ "risk": "safe",
31175
+ "source": "community",
31176
+ "date_added": "2026-07-15",
31177
+ "plugin": {
31178
+ "targets": {
31179
+ "codex": "supported",
31180
+ "claude": "supported"
31181
+ },
31182
+ "setup": {
31183
+ "type": "none",
31184
+ "summary": "",
31185
+ "docs": null
31186
+ },
31187
+ "reasons": []
31188
+ },
31189
+ "source_type": "community",
31190
+ "source_repo": "Optim-Agent/optim-agent",
31191
+ "license": "MIT",
31192
+ "license_source": "https://github.com/Optim-Agent/optim-agent/blob/main/LICENSE",
31193
+ "tags": [
31194
+ "optimization",
31195
+ "hyperparameter-optimization",
31196
+ "experiments",
31197
+ "tuning"
31198
+ ]
31199
+ },
31101
31200
  {
31102
31201
  "id": "options-flow-analyzer",
31103
31202
  "path": "skills/options-flow-analyzer",
@@ -40052,6 +40151,41 @@
40052
40151
  "reasons": []
40053
40152
  }
40054
40153
  },
40154
+ {
40155
+ "id": "sshepherd",
40156
+ "path": "skills/sshepherd",
40157
+ "category": "devops",
40158
+ "name": "sshepherd",
40159
+ "description": "Zero-knowledge SSH ops CLI — server health checks, docker/systemd control, log tailing, Postgres introspection, and declarative deploys, without ever exposing credentials to the agent.",
40160
+ "risk": "critical",
40161
+ "source": "community",
40162
+ "date_added": "2026-07-15",
40163
+ "plugin": {
40164
+ "targets": {
40165
+ "codex": "supported",
40166
+ "claude": "supported"
40167
+ },
40168
+ "setup": {
40169
+ "type": "none",
40170
+ "summary": "",
40171
+ "docs": null
40172
+ },
40173
+ "reasons": []
40174
+ },
40175
+ "source_type": "community",
40176
+ "source_repo": "Antheurus/sshepherd",
40177
+ "license": "MIT",
40178
+ "license_source": "https://github.com/Antheurus/sshepherd/blob/main/LICENSE",
40179
+ "tags": [
40180
+ "ssh",
40181
+ "devops",
40182
+ "cli",
40183
+ "server-ops",
40184
+ "postgres",
40185
+ "deploy",
40186
+ "zero-knowledge"
40187
+ ]
40188
+ },
40055
40189
  {
40056
40190
  "id": "stability-ai",
40057
40191
  "path": "skills/stability-ai",