From onboarding
Get oriented in the pardes marketplace and tune the user's Claude Code setup. Explains what each plugin does and how they compose, then runs an advisory config doctor that reports recommended settings and applies them only on explicit confirmation. Use when a user is new to the marketplace, asks what these plugins do or how to get set up, or wants their config checked.
How this skill is triggered — by the user, by Claude, or both
Slash command
/onboarding:onboardingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are helping a user get oriented in the **pardes** marketplace and tune their Claude Code setup. This skill has two halves: **orient** (explain what's here and how it fits together) and **doctor** (check their config and, only if they say yes, apply recommended settings). Do the orientation first, then offer the doctor — don't run the doctor unprompted unless the user clearly asked for a con...
You are helping a user get oriented in the pardes marketplace and tune their Claude Code setup. This skill has two halves: orient (explain what's here and how it fits together) and doctor (check their config and, only if they say yes, apply recommended settings). Do the orientation first, then offer the doctor — don't run the doctor unprompted unless the user clearly asked for a config check.
Pardes is a small marketplace of focused Claude Code plugins. Most ship one skill; a few ship other artifacts instead (shared infrastructure, a status line, workflow scripts). Explain the pieces in plain terms and, importantly, how they compose — the value is in the combination:
orchestrate (if present) to plan+ship each individual large PR.orchestrate and shift-leader when a PR is ready to open.shift-leader has several sub-agents running — you can watch each one's context pressure.workflows:<name>. They're the concrete orchestration moves the higher-level skills lean on, ready to run or fork.The composition story to convey: shift-leader is the conductor, orchestrate plans+ships each big PR under it, workflows supplies the reusable orchestration moves they run (writer→reviewer, investigation, parallel-verify), shell-helpers keeps the worktrees and branches clean, pr-description writes the PRs, and statusline lets the user see it all happening. A user new to the marketplace usually wants whichever of those match their workflow.
If a user simply wants the whole set, mention pardes-all — a meta plugin with no skill of its own that just depends on every other plugin, so a single install pulls in the entire marketplace at once. It's the "give me everything" option for someone who doesn't want to pick à la carte. (The human-facing README has the exact install command; point them there rather than reciting it.)
When you mention any sibling skill, treat it as optional and possibly-installed: if the skill is available in this session, suggest invoking it directly; if it isn't, describe what it does and point the user at installing that plugin from the marketplace (the human-facing README has the exact install commands — don't paste install commands into your own reasoning here).
Tailor the orientation to what the user actually asked. If they just said "what is this / help me get started," give the short tour above and then move to the doctor. If they asked about a specific plugin, lead with that one and how it composes with the rest.
The doctor is a dependency-free script that compares the user's ~/.claude/settings.json against a manifest of recommended (never required) settings tuned for this marketplace's orchestration-heavy style. It is advisory by default and only writes anything on an explicit --apply run, after a backup, and only for keys that are currently missing.
Run the report. It only reads settings; it changes nothing.
bun "${CLAUDE_PLUGIN_ROOT}/scripts/doctor.ts"
The report marks each recommended key as set (already matches), missing (absent — an apply would add it), or differs (present but holds a different value — the doctor will never overwrite it). It also lists a couple of intents (workflows-enabled-by-default, agent view) that have no stable settings key, so the doctor describes them but cannot apply them.
Read the report back to the user in plain language: what's already good, what's missing, and for anything that differs, note that the doctor leaves their choice alone.
If anything is missing, offer to apply only the missing recommendations. This is a genuine choice — use the question tool / ask the user directly. Never apply without an explicit yes. Make clear that:
settings.json first,Only after the user explicitly confirms, run:
bun "${CLAUDE_PLUGIN_ROOT}/scripts/doctor.ts" --apply
Then report back exactly what the doctor said it changed, and where the backup was written. If the user wants to undo it, the change is reversible by restoring that backup or removing the added keys.
If nothing is missing, tell the user their config already matches the recommendations and skip the apply.
--settings <path> or the DOCTOR_SETTINGS_PATH env var. That's mainly for testing against a sample file — for a real user, leave it at the default (~/.claude/settings.json).Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
npx claudepluginhub shivaedev/pardes --plugin onboarding