Run the full repository compatibility pass: scanner score, startup path, validation loop, and docs reliability.
Orchestrate continual learning by delegating transcript mining and CLAUDE.md updates to `agents-memory-updater`.
Create a new Claude Code plugin scaffold with component directories, an optional manifest, and marketplace wiring. Use when starting a new plugin or adding a plugin to a multi-plugin marketplace repository.
Audit a Claude Code plugin for marketplace readiness. Use when validating the manifest, component placement, frontmatter, discovery paths, and submission quality before publishing.
Keep imports at the top of the module and avoid inline imports in function bodies, type annotations, or interface fields. Apply when writing, reviewing, or refactoring JavaScript or TypeScript, and whenever a dynamic `import()` or inline `import(...)` type…
Require exhaustive switch handling over TypeScript discriminated unions and enums by adding a `never` check in the default case. Apply when writing or reviewing a `switch` over a union or enum, and when adding a new variant to an existing union or enum.
Extract durable working preferences from recent chats and convert them into skills, rules, or workflow docs. Use when asked to learn preferences, mine feedback, personalize workflows, or generate team/person-specific agent guidance.
How and when to fan a large goal out across parallel worker agents using the `/orchestrate:orchestrate` workflow — planner, isolated workers, independent verifiers, one reconciled report. Use when a task is too large for one agent's context, when the same…