skills/manage-vercel-skills/SKILL.md
Manage which Vercel plugin skills are enabled or disabled. Use when the user wants to disable noisy Vercel skills, enable previously disabled skills, or see which skills are active. Invoked via /manage-vercel-skills.
npx skillsauth add co8/cc-plugins manage-vercel-skillsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Disable or enable individual skills from the Vercel plugin by managing the VERCEL_PLUGIN_SEEN_SKILLS env var in ~/.claude/settings.json.
The Vercel plugin uses VERCEL_PLUGIN_SEEN_SKILLS (comma-separated list) to track which skills have already been injected in a session. Skills in this list are skipped by the dedup system. By pre-populating this env var in settings.json, skills are permanently suppressed across all sessions.
When this skill is invoked, follow these steps:
Read ~/.claude/settings.json and extract the env.VERCEL_PLUGIN_SEEN_SKILLS value. Parse it as a comma-separated list of disabled skill names.
List all directories in the Vercel plugin skills folder:
~/.claude/plugins/cache/claude-plugins-official/vercel/*/skills/
Skip entries starting with _ (internal files like _chain-audit.md).
Display a table with ALL Vercel skills showing their status:
| # | Skill | Status |
|---|-------|--------|
| 1 | agent-browser | enabled |
| 2 | ai-sdk | DISABLED |
...
Ask the user which skills to enable or disable. Accept:
disable ai-sdk ai-elements chat-sdkdisable 3,5,8disable all, enable alltoggle ai-sdkEdit ~/.claude/settings.json to update the VERCEL_PLUGIN_SEEN_SKILLS value in the env object:
env key doesn't exist, create itVERCEL_PLUGIN_SEEN_SKILLS doesn't exist, create itShow the updated table and remind the user the changes take effect on the next session (or after /clear).
VERCEL_PLUGIN_SEEN_SKILLS.development
Multi-agent code review council. A parallel team of specialized read-only reviewers (architect, correctness, security, compliance, silent-failures, type/comment, simplification) audits a diff, a synthesis agent consolidates findings, and a debate-consensus pass resolves conflicts into a single ranked verdict. Use this skill when reviewing a PR, branch, or diff before merge — standalone, or as the review primitive invoked by swarm-protocol's review-repair phase. Triggers on: (1) `/council-review <PR URL | branch | diff>`, (2) `/council-review` (no args) to review current uncommitted changes, (3) requests to review code with multiple specialized lenses or to gate a merge.
development
Multi-agent development orchestration for complex projects. Use this skill when orchestrating parallel development workstreams, coordinating multiple agent tasks, managing project documentation structure, or executing `/swarm-protocol` commands. Triggers on: (1) `/swarm-protocol <project-name>` to initialize new projects with full planning, (2) `/swarm-protocol` (no args) to continue existing or start new project, (3) requests involving parallel agent coordination, milestone commits, or multi-phase development workflows.
tools
Development best practices and project patterns. Use when starting projects, setting up CLAUDE.md, coding TypeScript/Next.js/React/Supabase, implementing AI flows, data fetching, testing, deployment, git workflows, browser automation, centralized configuration, or Tailwind CSS v4.
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.