nx-integration
Skill: Nx Integration
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Skill: Nx Integration
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Never run Docker containers as root. Enforce USER directive in Dockerfiles and user: in compose files. Database images are the only exception.
Handle packages migrating between pnpm workspaces. Clean stale root copies, update workspace configs, fix broken workspace:* references.
Recover lost source files from pi session history when files were deleted but never committed to git.
Improve the Hormuz clock model through new signal classes, schema changes, uncertainty modeling, and better rendering or branch logic
Revise fork-tax protocols so they assume concurrent agents by default in shared workspaces, forbid destructive repo-wide cleanup of unrelated dirt, and require path-scoped staging plus explicit blocker recording.
Persist the full working state into git (commit + tag + push + manifest artifacts) as a deterministic handoff snapshot. Use when the user requests Π / fork tax / full dump.
| name | nx-integration |
| description | Skill: Nx Integration |
Use Nx to detect affected projects and run targets across multiple submodules in the workspace.
nx affected to detect affected projects based on file changesnx affected --target=<target> for affected projectssrc/giga/generate-nx-projects.ts to create Nx configuration for submodulestools/nx-plugins/giga/bundle-plugin.ts to bundle Nx plugin--files <path> to limit to specific files--projects <project> to include/exclude specific projects# List affected projects
nx affected --target=test
# Build affected projects
nx affected --target=build
# Typecheck affected projects
nx affected --target=typecheck
# Lint affected projects
nx affected --target=lint
# Test only affected by specific files
nx affected --target=test --files src/some/file.ts
# Build only affected by specific files
nx affected --target=build --files src/some/file.ts
# Generate Nx configuration for all submodules
bun run src/giga/generate-nx-projects.ts
# Bundle Nx plugin
bun run tools/nx-plugins/giga/bundle-plugin.ts
nx.jsontools/nx-plugins/giga/src/giga/generate-nx-projects.tstools/nx-plugins/giga/bundle-plugin.tsnx.json to use Nxnx.json will be skippednx affected --target=test --build
> nx affected --target=test --build
orgs/riatzukiza/promethean
test: success
build: success
orgs/sst/opencode
test: success
build: success
nx affected --target=test --files to run affected tests