| layout | default |
|---|---|
| title | Chapter 1: Getting Started |
| nav_order | 1 |
| parent | Wshobson Agents Tutorial |
Welcome to Chapter 1: Getting Started. In this part of Wshobson Agents Tutorial: Pluginized Multi-Agent Workflows for Claude Code, you will build an intuitive mental model first, then move into concrete implementation details and practical production tradeoffs.
This chapter gets the marketplace connected and installs your first focused plugin set.
- add the marketplace to Claude Code
- install a minimal but useful first plugin portfolio
- verify slash-command discovery and invocation
- avoid over-installing plugins in early setup
/plugin marketplace add wshobson/agents
/plugin
/plugin install python-development
/plugin install code-review-aiAfter installation, re-run /plugin and verify new commands are available.
- pick one command workflow, for example test generation or review
- run a small target scope first
- validate output quality before adding more plugins
python-developmentjavascript-typescriptcode-review-aigit-pr-workflows
This set is enough for many day-one coding loops.
You now have a working baseline installation and first command surface.
Next: Chapter 2: Marketplace Architecture and Plugin Structure
Note:
wshobson/agentsis a collection of Claude Code plugin definitions (YAML/Markdown), not a traditional compiled library. The "source code" is the plugin manifest and prompt files themselves. The relevant files for this chapter are the plugin installation interface and marketplace metadata.
The marketplace metadata file at /.claude-plugin/marketplace.json defines the plugin catalog that /plugin marketplace add wshobson/agents installs. It lists available plugins, their categories, and discovery metadata — this is the entry point for the Getting Started workflow.
The Quick Start section of the README documents the exact /plugin commands used in this chapter and explains the intended first-session operating pattern.
flowchart TD
A[marketplace.json] -->|defines| B[plugin catalog]
B -->|/plugin marketplace add| C[Claude Code plugin install]
C -->|/plugin install python-development| D[plugin activated]
D --> E[slash commands available]