Nemotron CORTEXA
Description
Nemotron-CORTEXA is an open-source software engineering agent that fixes GitHub issues.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Nemotron-CORTEXA: Enhancing LLM Agents for Software Engineering Tasks via Improved Localization and Solution Diversity
This is the official codebase for the ICML 2025 paper: [Nemotron-CORTEXA: Enhancing LLM Agents for Software Engineering Tasks via Improved Localization and Solution Diversity](https://openreview.net/forum?id=k6p8UKRdH7). Please see this [blogpost](https://research.nvidia.com/labs/adlr/cortexa/) for a high-level overview.
Requirements:
- Python 3.11 or higher
Installation
Download the repo and install the repo with
pip install -e .
Localization Stage
There are two steps in code localization: file localization and entity localization.
File Localization
We have developed, NV-EmbedCode, a code embedding model that specializes in mapping bug descriptions to faulty codes. The model is available on [HuggingFace](https://huggingface.co/nvidia/NV-EmbedCode-7b-v1) and as a [NIM]((https://build.nvidia.com/nvidia/nv-embedcode-7b-v1)).
The following command runs the file localization using [NV-EmbedCode's NIM](https://build.nvidia.com/nvidia/nv-embedcode-7b-v1):
python -m cortexa.retrieval.embed_retrieve \
--model_name nvidia/nv-embedcode-7b-v1 \
--base_url https://integrate.api.nvidia.com/v1 \
--log_dir ./logs \
--repo_playground ./repos \
--batch_size 16 \
--max_length 450 \
--dataset_name_or_path princeton-nlp/SWE-bench_Verified \
--query_type llmsummary \
--instance_id astropy__astropy-12907
The instance_id argument accepts a comma-separated list of instances to run. To run the entire benchmark, omit the argument entirely.
You can measure the accuracy of retrieval by running:
python -m cortexa.retrieval.file_retrieval_eval \
--log_dir ./logs \
--dataset_name_or_path princeton-nlp/SWE-bench_Verified \
--query_type llmsummary
For SWE-bench Lite and Verified sets, we generated file localization results and mad
Related Skills
Epic Sync
Sync epic issue bodies, labels, and local coordination snapshots from GitHub.
Git 使用 Git Worktrees
创建孤立的 Git worktrees,带有智能目录选择与安全验证。
Git Claude skills github
[Building agent skills blog](https://www.anthropic.com/engineering/equipping-agents-for-the-real-world-with-ag
Git #148
, [#161](https://github.com/affaan-m/everything-claude-code/pull/161))
Git GitHub MCP
| Token | Repos, issues, PRs, workflows |
Git GitHub MCP Server
Official first-party server to read repos, manage issues/PRs, and automate workflows.
Git