Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/nrwl/nx/gh-issue-plangit clone --depth 1 https://github.com/nrwl/nxWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.00857 |
| Opus 5 | $0.00000 | $0.00428 |
| Sonnet 5 | $0.00000 | $0.00171 |
| Haiku 4.5 | $0.00000 | $0.00086 |
Grade A, and why
gh-issue-plan scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 156 lines — stays where its author put it; the contents beside it link to each section on GitHub.
GitHub Issue Planning and Resolution
This command provides guidance for both automated and manual GitHub issue workflows.
Automated Workflow (GitHub Actions)
The automated workflow consists of two phases:
Phase 1: Planning (@claude plan or claude:plan label)
- Claude analyzes the issue and creates a detailed implementation plan
- Plan is posted as a comment on the issue
- Issue is labeled with
claude:planned
Phase 2: Implementation (@claude implement or claude:implement label)
- Claude implements the solution based on the plan
- Runs validation tests and creates a feature branch
- Suggests opening a PR with proper formatting
Planning Phase Template
When creating a plan (either automated or manual), include these sections:
Problem Analysis
- Root cause identification
- Impact assessment
- Related components or systems affected
Proposed Solution
- High-level approach
- Alternative solutions considered
- Trade-offs and rationale
Implementation Details
- Files that need to be modified
- Key changes required
- Dependencies or prerequisites
Testing Strategy
- Unit tests to add/modify
- Integration tests needed
- E2E test considerations
Validation Steps
# Test specific affected projects
nx run-many -t test,build,lint -p PROJECT_NAME
# Test all affected projects
nx affected -t build,test,lint
# Run affected e2e tests
nx affected -t e2e-local
# Format code
npx oxfmt FILES
# Final validation
pnpm nx prepush
Risks and Considerations
- Breaking changes
- Performance implications
- Migration requirements
Manual Workflow
When working on a GitHub issue manually, follow this systematic approach:
1. Get Issue Details
# Get issue details using GitHub CLI (replace ISSUE_NUMBER with actual number)
gh issue view ISSUE_NUMBER
When cloning reproduction repos, please clone within ./tmp/claude/repro-ISSUE_NUMBER
2. Analyze the Plan
- Look for a plan or implementation details in the issue description
- Check comments for additional context or clarification
- Identify affected projects and components
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 156 lines · 0 tokens per session scan A 3dcbe3d04fb5
gh-issue-plan is a command published in the GitHub repository nrwl/nx (29,291 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 857 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
migrate-example
Migra un ejemplo de Web Worker al dominio neutral y lo renderiza en los 5 themes (pipeline punta a punta con loop de design-review).
index
All commands extend BaseCommand (src/cli/base-command.ts).
Review Code Structure
Audit class responsibilities, package boundaries, duplication, and rule compliance across Issues.
Fix Sonar Issues
Run local static analysis and fix findings with conservative, behavior-preserving changes.
epic-plan
Run /epic-plan — see .claude/commands/epic-plan.md for the authoritative spec.
upgrade-controlflow
Execute the Angular 17 control flow migration converting structural directives to built-in control flow.