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 skills add NVIDIA-TAO/tao-skill-bank --skill tao-run-deft-aoi-cosmos3git clone --depth 1 https://github.com/NVIDIA-TAO/tao-skill-bankWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/nvidia-tao/tao-skill-bank/tao-run-deft-aoi-cosmos3)<a href="https://agentmods.dev/skills/nvidia-tao/tao-skill-bank/tao-run-deft-aoi-cosmos3"><img src="https://agentmods.dev/badge/skills/nvidia-tao/tao-skill-bank/tao-run-deft-aoi-cosmos3/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/nvidia-tao/tao-skill-bank/tao-run-deft-aoi-cosmos3"><img src="https://agentmods.dev/badge/skills/nvidia-tao/tao-skill-bank/tao-run-deft-aoi-cosmos3.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 2 findings, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high Privilege Escalation · line 103 Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
- medium Rogue Agent · line 21 Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
What 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.1 | $0.00175 | $0.04643 |
| Opus 5 | $0.00088 | $0.02322 |
| Sonnet 5 | $0.00035 | $0.00929 |
| Haiku 4.5 | $0.00017 | $0.00464 |
Grade A, and why
tao-run-deft-aoi-cosmos3 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 8d 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 — 365 lines — stays where its author put it; the contents beside it link to each section on GitHub.
tao-run-deft-aoi-cosmos3
Installation
Install this application as part of the full TAO skill-bank root, not as only
the companion skill folders: a usable install places skills/, scripts/,
templates/, and versions.yaml under the same TAO_SKILL_BANK_PATH. Any
install that ships only the skill folders, for example an agent plugin or
skills-only install, must also provide the bank-level scripts, templates, and
versions.yaml and point TAO_SKILL_BANK_PATH at their common root before
running scripts/resolve_tao_model.py. Run bundled validation with the skill
Python so dependencies match runtime: PYTHON=$(bash scripts/deft_python.sh); "$PYTHON" -m unittest tests.test_cosmos3_bare. Resolve network mode first. Missing
air-gap imports are a hard stop; network-enabled setup lives only in
references/network-bootstrap.md.
Execution Contract
Treat a run as a disk-backed state machine.
- Preserve every explicit user value and show the source of each effective
value (
user,spec, ordefault) in the Pre-Flight Summary. - Ask which installed platform to use. Do not select Docker, SLURM, Kubernetes, Brev, virtualenv, or an external platform by default.
- Resolve network mode, then read exactly one of
references/air-gap.mdorreferences/network-bootstrap.md. Run the selected platform skill's Preflight and stop on a missing system/native-CLI prerequisite. - Before any mutation or launch, invoke
tao-launch-workflowand show its launch review plus this skill's Pre-Flight Summary. Wait for one explicit approval. - After approval, set
PYTHON=$(bash scripts/deft_python.sh)and initialize${RESULTS_DIR}/deft_state.jsononce with"$PYTHON" scripts/init_deft_state.py. Require--base-model-pathto name the prepared Qwen3-VL PTM, freeze the image with--framework-image-digest, and pass its container URI with--framework-container. Pass the exact GPU model reported by the selected platform's Preflight through--gpu-model(include accelerator memory when available), plus the resolved network mode/source and selected absolute Python. Never reinitialize a resumed run or editdeft_state.jsonby hand. - Before every stage, after context compaction, and before a completion claim,
run
"$PYTHON" scripts/deft_context.py --state ... --stage .... Use its durablenext_stageand the state file'sstatus,current_iteration,iterations.*.status,stage_completed, and latesteventsentry to resume. Do not infer progress from assistant prose or from an artifact that is not recorded in state. - Run every command that can install, fetch, log in, or launch a local
container through
"$PYTHON" scripts/deft_exec.py --state ... -- <command>. In an air-gap it rejects egress/package operations and enforces no-pull. Remote platforms must apply the equivalent immutable no-pull/offline policy. - Submit each GPU stage through the chosen platform's four verbs:
submit/status/logs/cancel. Thesubmitverb must open the job-record before native launch; the returned id is the only launch handle. Poll the backend, not the job-record, and map state toPENDING RUNNING COMPLETE ERROR CANCELED UNKNOWN. - Commit every completed or failed DEFT stage with
"$PYTHON" scripts/commit_stage.py. It verifies the stage inputs and atomically updates both the resume snapshot and orderedeventsarray in state.commit_stage.py --stage trainrequires--framework-configwith the saved Hydraconfig.yaml. Every executed-stage commit requires a positive, measured--duration-sec: use backend elapsed wall time for submitted jobs and a host wall-clock timer for inline stages. A documented--skipmay record0; negative durations are always rejected. - Claim completion only after
"$PYTHON" scripts/finalize_run.pyverifies final Benchmark evidence, successfully commitsloop_stop, and a fresh read ofdeft_state.jsonshowsstatus == "complete",version == 6, non-emptyfinal_artifacts,iterations.baseline.status == "complete", and the final iteration'sstatus == "complete".
What ships with it
57 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- agents/reporter.md 781 B
- eval.config 21 KB
- evals/evals.json 3.2 KB
- references/air-gap.md 3.0 KB
- references/aoi-annotation.md 5.3 KB
- references/cosmos_framework_sft_full.toml 2.0 KB
- references/cosmos_framework_sft_smoke.toml 1.9 KB
- references/cosmos-reason.md 8.6 KB
- references/data-layout.md 7.4 KB
- references/DEFT_Loop_Report.html 14 KB
- references/deft_state.json 4.3 KB
- references/gap-analysis.md 2.5 KB
- references/metric-contract.md 1.1 KB
- references/network-bootstrap.md 625 B
- references/pipeline-and-state.md 9.6 KB
- references/preflight.md 21 KB
- references/RCCA_REPORT_TEMPLATE.md 1.1 KB
- references/rcca-artifact-manifest.json 1.1 KB
- references/REPORT_RENDERING.md 5.5 KB
- references/scripts-and-agents.md 5.8 KB
- references/tao-generate-anomalies.md 12 KB
- references/tao-mine-aoi-images.md 4.5 KB
- scripts/align_token_usage.py 12 KB runs code
- scripts/analyze_gaps.py 11 KB runs code
- scripts/assemble_training_json.py 6.3 KB runs code
- scripts/cfw_cr3_aoi_adapter.py 6.4 KB runs code
- scripts/check_annotations.py 6.7 KB runs code
- scripts/commit_stage.py 31 KB runs code
- scripts/deft_context.py 2.8 KB runs code
- scripts/deft_exec.py 6.5 KB runs code
- scripts/deft_python.sh 1.6 KB runs code
- scripts/emit_mined_sharegpt.py 7.4 KB runs code
- scripts/emit_sdg_sharegpt.py 11 KB runs code
- scripts/filter_mined_by_cosine.py 10 KB runs code
- scripts/finalize_run.py 1.4 KB runs code
- scripts/init_deft_state.py 24 KB runs code
- scripts/metric_contract.py 9.1 KB runs code
- scripts/record_metric_result.py 5.9 KB runs code
- scripts/render_cfw_evaluate.py 7.0 KB runs code
- scripts/render_cfw_sft.py 10 KB runs code
- scripts/render_report.py 36 KB runs code
- scripts/submit_cfw_evaluate.py 12 KB runs code
- scripts/submit_cfw_inference.py 8.5 KB runs code
- scripts/submit_cfw_train.py 15 KB runs code
- scripts/validate_sharegpt.py 7.2 KB runs code
- scripts/validate_split_contract.py 11 KB runs code
- skill-card.md 2.4 KB
- tests/test_cfw_train_backend.py 13 KB runs code
- tests/test_checkpoint_conversion_cli_contracts.py 3.2 KB runs code
- tests/test_cosmos3_bare.py 67 KB runs code
- tests/test_cosmos3_init_state_contract.py 7.2 KB runs code
- tests/test_cosmos3_rcca_report_contract.py 6.0 KB runs code
- tests/test_cosmos3_report_rendering.py 21 KB runs code
- tests/test_documentation_contracts.py 12 KB runs code
- tests/test_execbit_packaging.py 12 KB runs code
- tests/test_sdg_path_compat.py 8.3 KB runs code
- tests/test_validator_truthfulness.py 8.4 KB runs code
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.
- 8d ago Changed · -9 lines · +6 tokens per session faa153ae3e51
- 13d ago First seen · 374 lines · 169 tokens per session scan A b7250e4c3aba
tao-run-deft-aoi-cosmos3 is a skill published in the GitHub repository NVIDIA-TAO/tao-skill-bank (88 stars, last pushed today), licensed Apache-2.0. It adds 175 tokens to every session and 4,643 once invoked, about $0.0009 per session on Opus 5. 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 skills, from other repositories
data-engineering
A guide to data engineering, the work of collecting, moving, processing, and checking data. It covers workflow tools such as Airflow, Dagster, and Prefect, plus streaming and data-quality tools.
trulens-evaluation-workflow
Systematically evaluate your LLM application with TruLens.
ai
An index of skills for AI and language-model work, including agent development, security, retrieval-augmented generation, prompting, and evaluation. Retrieval-augmented generation gives a model relevant information from a knowledge base before it answers.
config-evals
Builds and maintains configuration-based evaluations on a workflow with the eval-config tool. Use when the user asks to set up, add, view, change, or remove an evaluation, score, grade, or judge a workflow's output, or measure answer quality against a test dataset. This is the only eval form Instance AI handles — it…
vs-crawler
Crawl websites (news, blogs, papers, GitHub, product docs, RSS feeds) into a fixed-schema JSONL file, then create a dataset and a searchable application in Viking AI Search. Supports one-time crawl and scheduled recurring crawl with automatic incremental sync.
using-model-endpoint
Call a registered model endpoint over its native HTTP API from the endpoint's scoped inference kernel (BASEURL preloaded). Load once a task needs predictions from a registered model endpoint.