opencode-skills-collection 2.0.171 → 2.0.172
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundled-skills/.antigravity-install-manifest.json +1 -1
- package/bundled-skills/active-directory-attacks/SKILL.md +2 -0
- package/bundled-skills/docs/users/faq.md +19 -0
- package/bundled-skills/docs/users/getting-started.md +1 -1
- package/bundled-skills/environment-setup-guide/SKILL.md +2 -0
- package/bundled-skills/gitops-workflow/SKILL.md +2 -0
- package/package.json +1 -1
|
@@ -9,6 +9,8 @@ date_added: "2026-02-27"
|
|
|
9
9
|
|
|
10
10
|
> AUTHORIZED USE ONLY: Use this skill only for authorized security assessments, defensive validation, or controlled educational environments.
|
|
11
11
|
|
|
12
|
+
<!-- security-allowlist: credential-extraction, kerberos-attacks -->
|
|
13
|
+
|
|
12
14
|
# Active Directory Attacks
|
|
13
15
|
|
|
14
16
|
## Purpose
|
|
@@ -247,6 +247,25 @@ The filter rules are:
|
|
|
247
247
|
|
|
248
248
|
This keeps the installed skill set smaller and reduces the chance of context overload in OpenCode-style runtimes.
|
|
249
249
|
|
|
250
|
+
### OpenCode on Windows crashes with Bun or enters repeated compaction loops after adding many skills. What should I do?
|
|
251
|
+
|
|
252
|
+
Treat this as two separate problems:
|
|
253
|
+
|
|
254
|
+
- **Binary crash on startup (`bun.exe` segfault):** this is usually an OpenCode runtime issue, not a skill-content issue. Verify OpenCode can run without this repository loaded first.
|
|
255
|
+
- **Compaction/summary loops after loading many skills:** this is usually context overload from too many active skills at once.
|
|
256
|
+
|
|
257
|
+
Practical mitigation:
|
|
258
|
+
|
|
259
|
+
1. Start with a reduced install in `.agents/skills`:
|
|
260
|
+
|
|
261
|
+
```bash
|
|
262
|
+
npx antigravity-awesome-skills --path .agents/skills --category development,backend --risk safe,none
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
2. Avoid loading large autonomy/conductor-style skills until the base flow is stable.
|
|
266
|
+
3. Add skills incrementally and retest after each addition.
|
|
267
|
+
4. If loops continue, follow the overload recovery guide: [agent-overload-recovery.md](agent-overload-recovery.md)
|
|
268
|
+
|
|
250
269
|
### Gemini CLI hangs after a few turns or says "This is taking a bit longer, we're still on it". What should I do?
|
|
251
270
|
|
|
252
271
|
Start with a quick isolation check:
|
package/package.json
CHANGED