Auto-discovered marketplace from fahimtran/claude-plugins
npx claudepluginhub fahimtran/claude-pluginsGlobal agents and orchestrator configuration for Claude Code
Personal Claude Code plugin — 14 specialized agents with an orchestrator-first workflow.
claude --plugin-dir ./claude-plugins
Requires a marketplace. See Plugin marketplaces to self-host one, then:
claude plugin install plugins@fahimtran
/reload-plugins
When the plugin is active, settings.json sets orchestrator as the main agent. The orchestrator breaks down tasks and delegates to the appropriate specialized agent. Simple questions are answered directly without delegation.
| Agent | Model | Role |
|---|---|---|
| orchestrator | inherited | Workflow coordinator — delegates to other agents |
| architect | inherited | System design and implementation planning |
| ask | inherited | Read-only Q&A and explanations |
| code | sonnet | Hands-on implementation (default workhorse) |
| code-reviewer | sonnet | Pre-commit code review |
| db | sonnet | Database schema, migrations, queries |
| debug | sonnet | Bug investigation and root cause analysis |
| devops | sonnet | Docker, CI/CD, infrastructure |
| docs | sonnet | Documentation writer |
| pr-writer | inherited | PR titles and descriptions |
| refactor | sonnet | Code restructuring without behavior changes |
| researcher | inherited | External research via web search |
| security | inherited | Security auditing (read-only) |
| tester | sonnet | Test writing |
"Inherited" means the agent uses whatever model is active in your Claude Code session.
settings.json activates the orchestrator as the main thread for all non-trivial tasks.ask, architect, code-reviewer, pr-writer, researcher, security) use permissionMode: plan to prevent accidental writes.claude-plugins/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
├── agents/ # 14 agent definitions
├── settings.json # Activates orchestrator as main agent
└── README.md