/00. Claude Plugins

A Claude Code plugin is a folder of skills, agents, hooks, and slash commands that Claude installs per project. 28 plugins, 68 skills here.

/plugin marketplace add aiocean/claude-plugins
/plugin install <plugin-name>@aiocean-plugins

Skills load when their description matches your message, hooks fire on tool-call events, agents spawn on the Agent tool. Idle plugins cost nothing — browse plugins or read the guides.

Folders

Articles

/02. aio-advisor

Curated decision-support reference for Claude Code — three independently-triggered knowledge bases behind one semantic-search shell. Each routes a problem to the most relevant entries, applies them, synthesizes an answer, and stress-tests it with a counter-frame.

Skills

SkillWhat it coversCorpus
aio-mental-modelsGeneral reasoning & decision-making — first principles, inversion, second-order thinking, opportunity cost, probabilistic thinking, …54 models in 4 volumes
aio-threat-modelsSecurity, privacy & AI/ML threat modeling — STRIDE, LINDDUN, PASTA, OCTAVE, Attack Trees, MITRE ATT&CK/ATLAS, Kill Chain, NIST AI RMF, OWASP LLM Top 10, K8s Threat Matrix27 frameworks in 7 volumes
aio-architect-advisorArchitecture decisions — a 5-step workflow that picks, applies, and stress-tests patterns for a system you're designing
aio-architect-referenceArchitecture lookup — semantic search over the pattern encyclopedia; read full articles, compare patterns, browse by volume137 patterns in 10 volumes

The aio-architect-* skills share the plugin-root scripts/ + volume-*/ corpus; aio-mental-models and aio-threat-models each carry their own self-contained scripts/ + volume-*/ inside their skill folder.

Install

/plugin install aio-advisor@aiocean-plugins
# or
npx skills add aiocean/claude-plugins -s aio-advisor

Semantic search setup

Each knowledge base ships a search-*.ts script that runs over a prebuilt embeddings.json. Where an embeddings file is gitignored, build it once with the skill's build-embeddings.ts before first search (see the individual SKILL.md).

Skills (4)

  • aio-architect-advisor — Architecture decision advisor — guides pattern selection, application, synthesis, and stress-testing for system design, scaling, resilience, and migration decis…
  • aio-architect-reference — Look up architecture patterns and concepts via semantic search — read the full article on demand, compare patterns side-by-side, or browse by volume.
  • aio-mental-models — Decision and reasoning advisor — picks 2-3 relevant mental models, walks through applying each, and synthesizes a recommendation. Use proactively when facing a…
  • aio-threat-models — Threat modeling framework advisor — selects the right framework(s) for the system (security, privacy, AI/ML, cloud, K8s), walks through application, and compose…

Articles