nx-integration
Skill: Nx Integration
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Skill: Nx Integration
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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