aminet-emulator
FS-UAE emulator configuration and launch: hardware profiles, ROM management, WHDLoad integration, config generation, and state snapshots. Use when configuring…
Aminet search and browse: full-text search, category tree navigation, architecture filtering, package detail, and curated collections. Use when searching, browsing, or managing package collections.
$ npx -y skills add Tibsfox/gsd-skill-creator --skill aminet-browser --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/aminet-browserContext preview
The summary Claude sees to decide when to auto-load this skill.
Aminet search and browse: full-text search, category tree navigation, architecture filtering, package detail, and curated collections. Use when searching, browsing, or managing package collections.
name: aminet-browser
description: "Aminet search and browse: full-text search, category tree navigation, architecture filtering, package detail, and curated collections. Use when searching, browsing, or managing package collections."
metadata:
extensions:
gsd-skill-creator:
triggers:
intents:
- "aminet.*search"
- "aminet.*browse"
- "aminet.*collection"
- "package.*detail"
files:
- "src/aminet/search.ts"
- "src/aminet/category-browser.ts"
- "src/aminet/package-detail.ts"
- "src/aminet/collection.ts"
- "src/aminet/collection-manager.ts"
contexts:
- "aminet search"
- "package browsing"
- "aminet collections"
threshold: 0.7
token_budget: "1.0%"
version: 1
enabled: true
plan_origin: "242-aminet-integration"
phase_origin: "242"Provides search, browse, and collection management for the Aminet package archive. Supports full-text search with relevance scoring, hierarchical category tree navigation, architecture and OS version filtering, unified package detail views combining INDEX + readme + mirror state, and curated YAML-based collections with CRUD operations.
| Module | Purpose | |--------|---------| | `src/aminet/search.ts` | Full-text search with relevance scoring (name=3, desc=2, author=1) | | `src/aminet/category-browser.ts` | Category tree construction, architecture and OS version filtering | | `src/aminet/package-detail.ts` | Unified package detail merging INDEX + readme + mirror state | | `src/aminet/collection.ts` | Collection manifest Zod schema, YAML import/export, starter collections | | `src/aminet/collection-manager.ts` | CRUD operations with atomic persistence, slugified filenames |
**Search packages:**
import { searchPackages } from './search.js';
const results = searchPackages(indexEntries, 'deluxe paint');
// Sorted by relevance score, name matches weighted 3x**Browse by category:**
import { buildCategoryTree, listPackages } from './category-browser.js';
const tree = buildCategoryTree(indexEntries);
const gfxPackages = listPackages(indexEntries, 'gfx/edit');**Get package detail:**
import { buildPackageDetail } from './package-detail.js';
const detail = buildPackageDetail(indexEntry, readmeData, mirrorState);
// Unified view with all metadata sources**Manage collections:**
import { CollectionManager } from './collection-manager.js';
const mgr = new CollectionManager({ collectionsDir: './collections' });
await mgr.create({ name: 'My Games', packages: ['game/misc/Lemmings.lha'] });
const paths = mgr.getCollectionPaths('my-games');1.0% budget reflects the 5 modules covering search, browse, detail, and collection management. The search scoring algorithm and collection YAML round-trip are well-contained and require moderate context for correct usage.
An adaptive learning and coprocessor architecture for Claude Code, built as an extension to GSD (open-gsd)
Repo: Tibsfox/gsd-skill-creator
FS-UAE emulator configuration and launch: hardware profiles, ROM management, WHDLoad integration, config generation, and state snapshots. Use when configuring…
Manages Aminet INDEX infrastructure: fetch, parse, cache, and incremental update of ~84,000-entry package database. Use when managing INDEX data, checking…
Aminet package installation: LhA/LZX extraction, Amiga filesystem mapping, dependency detection, install tracking, and scan gate enforcement. Use when…
Selective Aminet package mirroring: single-package fetch, integrity verification, mirror state tracking, bulk download, and sync detection. Use when…
Multi-layer virus scanning for Aminet packages. Signature-based detection, heuristic hunk analysis, boot block scanning, quarantine management, and scan…
Domain knowledge for 10 applied subjects: computer science, data science, world languages, psychology, environmental science, nutrition, economics, creative…