Community plugins for Claude Code.
aiclaudelib marketplace โ โโ analysis โ โโ reflect ยทยทยทยทยทยทยทยทยทยทยทยทยทยทยทยทยท autonomous self-review: question โ investigate โ fix โ โโ code-review ยทยทยทยทยทยทยทยทยทยทยทยทยท multi-agent PR review with confidence scoring โ โโ utility โ โโ ccode ยทยทยทยทยทยทยทยทยทยทยทยทยทยทยทยทยทยทยท plugin scaffolding, skills, agents, hooks, MCP โ โโ git ยทยทยทยทยทยทยทยทยทยทยทยทยทยทยทยทยทยทยทยทยท workflow commands, checkpoints, expert agent โ โโ aiclaudelib ยทยทยทยทยทยทยทยทยทยทยทยทยท interactive marketplace browser & installer โ โโ testing โ โโ playwright-cli ยทยทยทยทยทยทยทยทยทยท browser automation, screenshots, tracing, network mocking โ โโ development โโ nodejs-development ยทยทยทยทยทยท architecture, testing, security, API, TypeScript
Install:
/plugin marketplace add aiclaudelib/marketplacethen/aiclaudelib:installDirect:
/plugin install <name>@aiclaudelibโ where name is any of the above
Notes on Claude Code plugins. Gotchas, fixes, workarounds.
Skills with context: fork and agent: sometimes load inline into the main session instead of forking. The model tries to execute agent instructions directly in the chat โ everything breaks.
Fix โ add to CLAUDE.md:
# Plugin skill execution
When a plugin skill with `context: fork` and `agent:` is loaded inline instead of being forked automatically, you MUST manually spawn the specified agent using the Task tool. Pass the skill content as the prompt and use the agent specified in the frontmatter. Never process forked skill instructions inline โ always delegate to the correct subagent.CLAUDE.md instructions are loaded into the system prompt and override default behavior โ the model will delegate via Task tool even when auto-fork doesn't trigger.


