AI agent plugins by @neotherapper · pilitsoglou.com
A Claude Code plugin marketplace that also works with OpenAI Codex, OpenCode,
Google Antigravity, and AWS Kiro — plus Gemini CLI, GitHub Copilot, Cursor, and Windsurf.
One AGENTS.md drives the instructions layer for every tool; the skills are exposed to each tool
at the path it scans. See docs/platform/multi-tool-support.md
for the full settings/files matrix.
| Plugin | What it does |
|---|---|
| beacon | Map any site's API surface — systematically. Tech fingerprinting, endpoint probing, JS/source-map mining, OSINT, then a browser visit plan. |
| reframe | Turn any live site into a purpose-driven redesign brief for Claude Design. |
| namesmith | Find the right name for your project — brand interview, AI generation across 8 archetypes, live domain availability + pricing (Cloudflare / Porkbun). |
| draftloom | AI-powered blog post drafting. Write in your voice, optimised for virality. |
| idea-forge | Two-stage business idea pipeline: surface opportunity gaps and evaluate viability. |
| paidagogos | Structured AI-powered lessons for any topic, rendered in a local visual browser UI. |
| visual-kit | Shared local visual rendering for the plugins above — the vk-* component library, HTTP server, and SurfaceSpec JSON contract. |
Run one command and Beacon:
- Detects the tech stack and loads a framework-specific guide
- Probes all known public endpoints, sitemaps, feeds, and GraphQL schemas
- Analyses JS bundles and source maps for hidden API paths
- Runs OSINT (certificate transparency, Wayback Machine, GitHub code search, Google dorks)
- Compiles a browser visit plan — then executes it
- Writes
docs/sites/{site}/research/with INDEX, tech-stack, site-map, API surfaces, and an OpenAPI spec
In future sessions, ask questions about the site and Beacon routes directly to the pre-built research files.
/plugin marketplace add neotherapper/claude-plugins
/plugin install beacon@neotherapper-plugins
Skills, commands, agents, and hooks are auto-discovered per plugin. Install any of:
beacon, reframe, namesmith, draftloom, idea-forge, paidagogos, visual-kit
(all @neotherapper-plugins).
Codex reads this repo's root AGENTS.md automatically. The skills are exposed at .agents/skills/
(one of Codex's documented scan roots) as symlinks back into plugins/ — clone the repo and work
inside it (or add it as a git submodule), rather than copying files out: .agents/skills/ entries
only resolve when plugins/ is present alongside them. MCP servers go in ~/.codex/config.toml.
OpenCode reads the root AGENTS.md automatically and falls back to scanning .agents/skills/, so
cloning this repo (or adding it to your workspace) exposes every skill with no extra config.
MCP servers go in opencode.json under the mcp key.
Antigravity reads the root AGENTS.md, workspace rules from .agents/rules/, and workspace skills
from .agents/skills/ — all shipped here. Workspace MCP config is .agents/mcp_config.json.
Kiro reads the root AGENTS.md (always-included) plus steering in .kiro/steering/, and loads
skills from .kiro/skills/. MCP servers go in .kiro/settings/mcp.json. Open this repo as the
workspace, or import a skill folder via Kiro's "Agent Steering & Skills" panel.
# Install a skill for any agent
gh skill install neotherapper/claude-plugins site-recon --agent claude-code
gh skill install neotherapper/claude-plugins site-recon --agent opencode
# Pin to a specific version
gh skill install neotherapper/claude-plugins site-recon@v0.7.1
# Update all skills across all agents
gh skill update --allOther tools — Gemini CLI, GitHub Copilot, Cursor, Windsurf
Gemini CLI — full guide: docs/platform/gemini-cli.md
gemini skills install https://github.com/neotherapper/claude-plugins.git --path plugins/beacon/skillsGitHub Copilot — full guide: docs/platform/copilot.md
git clone https://github.com/neotherapper/claude-plugins.git
cp -r claude-plugins/plugins/beacon/skills/* .github/skills/
cp -r claude-plugins/plugins/beacon/agents/* .github/agents/Then in .github/copilot-instructions.md: Skills are available in .github/skills/. Follow them when they match the task.
Cursor — full guide: docs/platform/cursor.md
git clone https://github.com/neotherapper/claude-plugins.git
cp -r claude-plugins/plugins/beacon/skills/* .cursor/rules/Windsurf
git clone https://github.com/neotherapper/claude-plugins.git
cat claude-plugins/plugins/beacon/skills/site-recon/SKILL.md >> .windsurfrulesAGENTS.md(repo root) is the single source of cross-tool instructions — read natively by Claude Code, Codex, OpenCode, Antigravity, and Kiro.- Skills live once under
plugins/<plugin>/skills/<skill>/.scripts/sync-skills.shmirrors each one via symlink into.agents/skills/(Codex + Antigravity + OpenCode) and.kiro/skills/(Kiro) — so there's a single source of truth and no duplicated content. - Adding a skill? Run
scripts/sync-skills.sh; CI runsscripts/sync-skills.sh --checkto fail the build if a skill isn't exposed.
Full details, per-tool paths, and verification status: docs/platform/multi-tool-support.md.
See CONTRIBUTING.md for how to add a plugin, run the validators, and the skill/agent conventions. For Beacon tech packs specifically, see the Beacon contributing guide.
Built by @neotherapper · Articles at pilitsoglou.com