一键导入
package-filter
Run commands in specific workspace packages using pnpm filters. Use to execute commands in specific packages within the monorepo.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run commands in specific workspace packages using pnpm filters. Use to execute commands in specific packages within the monorepo.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Run the test suite for the Cartridge Controller monorepo. Use when validating changes, before committing, or when asked to run tests.
Clean all build artifacts and rebuild from scratch. Use when experiencing stale build artifacts, Turbo cache issues, mysterious build failures, or after dependency updates.
Review code changes for quality, correctness, and best practices. Use when asked to review a PR, review changes, or assess code quality before merge.
Regenerate GraphQL types from API schema. Use when API schema has changed, GraphQL queries/mutations added or modified, or type errors in API calls.
Dispatch a release using GitHub Actions. Use when asked to create a release, publish to npm, or start the release process.
Run all pre-commit checks before committing changes. Use to manually verify changes pass all quality gates before committing.
| name | package-filter |
| description | Run commands in specific workspace packages using pnpm filters. Use to execute commands in specific packages within the monorepo. |
Run commands in specific workspace packages using pnpm filters.
Execute commands in specific packages within the monorepo.
@cartridge/controller - Main SDK package@cartridge/keychain - Keychain UI application@cartridge/connector - Connector package@cartridge/profile - Profile application# Run tests in specific package
pnpm --filter @cartridge/keychain test
# Build specific package
pnpm --filter @cartridge/controller build:deps
# Run dev server for keychain only
pnpm --filter @cartridge/keychain dev
# Install dependency to specific package
pnpm --filter @cartridge/controller add <package-name>
pnpm --filter <package-name> <command>pnpm -r for recursive commands across all packages