用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tangle-network/skills --skill agent-eval-adoption命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Integrate or audit Tangle runtime, evaluation, knowledge, profiles, and candidate activation.
Build or migrate an agent product with agent-app modules, billing, integrations, and evals.
Build Tangle Blueprint flows for jobs, operators, provisioning, auth, and shared UI.
基于 SOC 职业分类
正在显示 SKILL.md
| name | agent-eval-adoption |
| description | Adopt agent-eval: run the real agent, capture records, calibrate cases, and control promotion. |
Use this for product-side integration of @tangle-network/agent-eval.
Use the installed package's source, types, README, and exports as the API reference.
This skill defines the integration sequence, not a copied catalog of fast-changing functions.
Before writing imports:
resources.files mounts, not bodies concatenated into prompt.systemPrompt — an eval that scores a profile with an inline-bloated prompt is measuring a materialization bug, not the agent. Full contract: build-with-agent-runtime.Start with @tangle-network/agent-eval/contract for the stable product surface.
Use lower-level subpaths only when the stable surface cannot express the requirement.
Evaluate the same profile, entrypoint, tools, data, and dependency path used by the product. An eval adapter is valid only when it delegates to that exact call. Fail when the expected backend did not run, model use is missing, or required tool and state evidence was not captured.
Store one canonical run record per attempt with:
Preserve unknown provider fields at the adapter boundary. Do not turn missing evidence into a default score.
Each case names one user capability, a realistic request, independently observable success, a plausible failure, and its environment boundary. Use code for objective facts and a model judge only for semantic facts. Prove the scoring path accepts a known good fixture and rejects a realistic bad fixture before running a matrix.
Run baseline and candidate on the same cases, seeds, model snapshot, limits, and dependency state. Keep development cases separate from cases used for the final decision. Report paired change, uncertainty, critical regressions, failures, tokens, cost, and latency. Service and measurement failures are not agent losses.
Search may propose prompt, profile, code, memory, retrieval, or knowledge changes. Every proposal retains exact identity, rationale, diff or snapshot, development evidence, and held-back comparison. Search code does not write live state. The product owns review authority, atomic application, retry reconciliation, rollback, and audit records.
| Concern | Owner |
|---|---|
| Portable agent definition | @tangle-network/agent-interface |
| Execution, streaming, delegation, and candidate activation | @tangle-network/agent-runtime |
| Cases, scoring, comparisons, statistics, and eval records | @tangle-network/agent-eval |
| Sources, retrieval, memory, citations, and knowledge candidates | @tangle-network/agent-knowledge |
| Product data, permissions, UI, funding, and atomic writes | Consuming product |
Move reusable missing behavior to the owning package. Do not add product-local copies of statistics, trace parsing, candidate identity, or promotion logic.
One customer-like request must prove:
request -> production agent -> complete run record -> scoring
-> baseline/candidate comparison -> review decision -> applied change or correctly blocked action
Report installed versions, exact imports, case and run counts, calibration results, artifact paths, comparison output, approval path, and tests run. Mocks can test adapters but do not replace one real backend run.
eval-agent when semantic scoring needs a calibrated model judge.build-with-agent-runtime when wiring execution, delegation, or candidate activation.build-with-agent-knowledge when evaluating retrieval, memory, or knowledge candidates.agent-stack-adoption when auditing the complete multi-package product path.verify before release.