AI Skill Hub 推荐使用:NASDE AI编程智能体评测工具 是一款优质的AI工具。AI 综合评分 7.5 分,在同类工具中表现稳健。如果你正在寻找可靠的AI工具解决方案,这是一个值得深入了解的选择。
专业的MCP工具,为AI编程智能体提供基准测试与评估框架。支持在已有任务上进行性能评测,帮助开发者全面了解Claude Code等AI编程助手的能力和局限。适合AI研究者、评估师和编程工具开发者。
NASDE AI编程智能体评测工具 是一款基于 Python 开发的开源工具,专注于 智能体评测、基准测试、AI编程 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
专业的MCP工具,为AI编程智能体提供基准测试与评估框架。支持在已有任务上进行性能评测,帮助开发者全面了解Claude Code等AI编程助手的能力和局限。适合AI研究者、评估师和编程工具开发者。
NASDE AI编程智能体评测工具 是一款基于 Python 开发的开源工具,专注于 智能体评测、基准测试、AI编程 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 方式一:pip 安装(推荐)
pip install nasde-toolkit
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install nasde-toolkit
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/NoesisVision/nasde-toolkit
cd nasde-toolkit
pip install -e .
# 验证安装
python -c "import nasde_toolkit; print('安装成功')"
# 命令行使用
nasde-toolkit --help
# 基本用法
nasde-toolkit input_file -o output_file
# Python 代码中调用
import nasde_toolkit
# 示例
result = nasde_toolkit.process("input")
print(result)
# nasde-toolkit 配置文件示例(config.yml) app: name: "nasde-toolkit" debug: false log_level: "INFO" # 运行时指定配置文件 nasde-toolkit --config config.yml # 或通过环境变量配置 export NASDE_TOOLKIT_API_KEY="your-key" export NASDE_TOOLKIT_OUTPUT_DIR="./output"
<p>Run an AI coding agent on a task you already know the answer to. Score the result. Compare configurations.</p>
<a href="https://noesis.vision/nasde/"><img src="https://img.shields.io/badge/Product%20Page-Noesis%20Vision-0B6623?style=for-the-badge&logoColor=white" alt="Product Page"></a> <a href="https://discord.gg/QF5PMX4Dqg"><img src="https://img.shields.io/badge/Discord-Join%20Community-5865F2?style=for-the-badge&logo=discord&logoColor=white" alt="Join our Discord"></a> <br> <a href="https://github.com/NoesisVision/nasde-toolkit/actions/workflows/quality-gate.yml"><img src="https://img.shields.io/github/actions/workflow/status/NoesisVision/nasde-toolkit/quality-gate.yml?branch=main&style=flat-square&label=CI" alt="CI"></a> <a href="LICENSE"><img src="https://img.shields.io/badge/License-MIT-green?style=flat-square" alt="License: MIT"></a> </div>
---
@google/gemini-cli is installed automatically by Harbor)ANTHROPIC_API_KEY or CLAUDE_CODE_OAUTH_TOKENCODEX_API_KEY (API key) or codex login (ChatGPT subscription OAuth)GEMINI_API_KEY (API key), GOOGLE_API_KEY (Vertex AI), or gemini login (Google account OAuth)claude CLI by default (or codex if [evaluation] backend = "codex"). That CLI must be installed and authenticated (OAuth subscription or API key — whichever you already use interactively)uv tool install nasde-toolkit --python 3.13
nasde --version
This installs the latest stable release from PyPI.
Python version: We recommend--python 3.13(latest stable, broadest wheel availability).--python 3.12is also supported and tested if your environment standardizes on it. Python 3.14 is not currently supported — a transitive dependency (pyicebergviasupabase) hasn't yet released wheels for cp314. The cap will be lifted once upstream wheels land.
nasde install-skills
This copies the bundled nasde-benchmark-* skills into ~/.claude/skills/ so they're available in every Claude Code session. Use --scope project to install into the current project's .claude/skills/ instead, or --force to overwrite after a nasde upgrade.
Note: the authoring helpers are Claude Code skills. Codex and Gemini users can still run NASDE from the CLI — the skills just speed up creating benchmarks; they are not required to run them.
Open your own project in Claude Code and say something like:
"Create a NASDE benchmark with a single task, based on a recent piece of work from this repo — a commit, a range of commits, or a merged PR."
Start with one task. Point the skill at whatever unit of work feels self-contained in your workflow — a single commit, a range, a merged MR/PR, or an issue that was closed by a set of commits. The nasde-benchmark-from-history skill proposes a good candidate, and generates one task directory with instruction.md, a Dockerfile, test.sh, and a starter assessment_criteria.md. You review each file before it's written.
Then run it:
nasde run --all-variants -C path/to/generated-benchmark
--all-variants runs every variant the skill scaffolded, so you don't need to know their names yet. If you'd rather burn fewer tokens on the first run, pick just one with --variant NAME — you can run the others later.
The Quick start above uses uv tool install — recommended because it isolates nasde in its own environment and puts only the nasde command on PATH. Alternatives:
```bash
uv tool install git+https://github.com/NoesisVision/nasde-toolkit.git --python 3.13
[docker] base_image = "ubuntu:22.04" build_commands = []
[evaluation] backend = "claude" # "claude" (default) | "codex" model = "claude-opus-4-7" dimensions_file = "assessment_dimensions.json"
The fastest path from zero to a working benchmark built from your own git history:
| Variant | Pass | Domain (/25) | Encaps. (/20) | Arch. (/20) | Ext. (/15) | Tests (/20) | Total (/100) |
|---|---|---|---|---|---|---|---|
claude-vanilla | 75% | 17.1 | 11.2 | 16.1 | 9.5 | 7.7 | **61.6** |
claude-guided (with a DDD skill) | 75% | 17.4 | 12.4 | 16.6 | 10.0 | 8.7 | **65.1** |
codex-vanilla | 89% | 18.8 | 13.8 | 16.8 | 11.4 | 8.7 | **69.4** |
codex-guided (same skill) | 50% | 11.5 | 9.6 | 12.9 | 7.4 | 6.0 | **47.4** |
The insight: the same "DDD guidance" skill helps Claude a little (+3.5) and badly hurts Codex (-22). The per-dimension breakdown pinpoints where Codex regresses — domain modeling, encapsulation, extensibility — which would be invisible without this assessment. Skill optimization is agent-specific.
pip install nasde-toolkit
The reviewer agent (assessment evaluator) is configurable via the [evaluation] section in nasde.toml. By default it uses claude-opus-4-7 with read-only tools (Read, Glob, Grep).
| Setting | Default | Purpose |
|---|---|---|
backend | claude | Subprocess backend: claude or codex |
model | claude-opus-4-7 | Evaluator model |
dimensions_file | assessment_dimensions.json | Scoring dimensions file |
max_turns | 30 | Max conversation turns |
allowed_tools | ["Read", "Glob", "Grep"] | Tool whitelist |
mcp_config | — | Path to MCP server config JSON |
skills_dir | — | Path to evaluator skills directory |
append_system_prompt | — | Extra system prompt text |
include_trajectory | false | Include ATIF trajectory in evaluation |
When include_trajectory is enabled, the evaluator can read the agent's full execution trajectory (agent/trajectory.json) — tool calls, timestamps, token usage, errors. This enables assessment dimensions that evaluate the agent's process (efficiency, verification discipline, decision-making) alongside the final output. See examples/nasde-dev-skill for a working example with trajectory-aware dimensions.
| Flag | Description |
|---|---|
--variant | Variant to run (defaults to config default) |
--tasks | Comma-separated task names to run |
--model | Model override (e.g. claude-sonnet-4-6, o3, google/gemini-3-flash-preview) |
--timeout | Agent timeout in seconds |
--with-opik | Enable Opik tracing |
--without-eval | Skip assessment evaluation |
--harbor-env | Harbor execution environment (docker, daytona, modal, e2b, runloop, gke) |
--project-dir, -C | Path to evaluation project |
Most users only need nasde run — everything else is occasional. See Commands below for the full reference.
```bash
nasde run --variant gemini-baseline --model google/gemini-3-flash-preview -C my-benchmark
```
API key always takes priority over OAuth when both are present.
Stage 1 (the agent does the work in a sandbox) comes from Harbor. The optional experiment-tracking stage at the end uses Opik. NASDE is the glue that connects them and adds the reviewer stage in between — plus the CLI, the benchmark project layout, and the authoring skills (see below).
If your task exercises a local Claude Code plugin (a directory with .claude-plugin/plugin.json, skills/, and an MCP server in .mcp.json), declare it once in task.toml — no vendored snapshot, no hand-wired Dockerfile COPY, no hand-written [environment.mcp_servers], no copying the plugin's skills into a variant:
[nasde.plugin]
path = "../../../src/plugins/my-plugin" # dir containing .claude-plugin/plugin.json
ref = "abc1234" # optional git ref, same semantics as [nasde.source]
install_root = "/opt/my-plugin" # optional, default /opt/<plugin-name>
build = "bun install --frozen-lockfile" # optional, run at image-build time
[nasde.plugin.env] # optional, exported in the MCP server wrapper
CLAUDE_PLUGIN_DATA = "/opt/my-plugin-data"
One declaration ships the whole plugin into the sandbox image (at ref, via a temporary git worktree, for reproducibility), registers the plugin's own skills for the agent (whole skill dir, including references/), and wires its MCP server into the task automatically. Works with or without [nasde.source] and with or without a hand-written environment/Dockerfile. This removes the frozen-snapshot workaround entirely. See ADR-009.
填补AI编程智能体评测空白的创新工具,基于真实任务的评估思路值得称赞。但早期维护水平需观察,社区采纳度有限。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
总体来看,NASDE AI编程智能体评测工具 是一款质量良好的AI工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | nasde-toolkit |
| 原始描述 | 开源MCP工具:CLI for benchmarks & evals of AI coding agents — on tasks you already understand。⭐9 · Python |
| Topics | 智能体评测基准测试AI编程MCP工具Claude性能评估 |
| GitHub | https://github.com/NoesisVision/nasde-toolkit |
| License | MIT |
| 语言 | Python |
收录时间:2026-05-21 · 更新时间:2026-05-22 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。