一键导入
aiq-research
Use when asked to run deep research or AI-Q research through a reachable NVIDIA AI-Q Blueprint backend.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when asked to run deep research or AI-Q research through a reachable NVIDIA AI-Q Blueprint backend.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | aiq-research |
| description | Use when asked to run deep research or AI-Q research through a reachable NVIDIA AI-Q Blueprint backend. |
| license | Apache-2.0 |
| permissions | {"env":["AIQ_SERVER_URL"],"network":["http://localhost:8000"]} |
| compatibility | Designed for Claude Code, OpenCode, Codex, and Agent Skills-compatible tools. Requires Python 3.11+ and network access to a running local AI-Q Blueprint server at `http://localhost:8000` by default. Non-local backends must be explicitly trusted by the user and granted by the host tool outside this public skill. |
| metadata | {"version":"2.1.0","author":"NVIDIA AI-Q Blueprint Team <aiq-blueprint@nvidia.com>","github-url":"https://github.com/NVIDIA-AI-Blueprints/aiq","tags":["nvidia","aiq","blueprint","deep-research","research-agents","agent-skills"],"languages":["python","bash"],"domain":"research-agents"} |
| allowed-tools | Read Bash |
Use this skill to call a locally running NVIDIA AI-Q Blueprint server through the helper script at
scripts/aiq.py.
Use this skill for research-shaped requests, including:
Do not use this skill for install, deploy, start, stop, UI, CLI, Docker, Helm, or troubleshooting requests. Those
belong to aiq-deploy.
Users need:
python3.AIQ_SERVER_URL set when the backend is not running at http://localhost:8000; non-local values must be trusted by
the user before any query is sent.The helper script has no third-party Python package dependencies; it uses Python standard-library HTTP modules.
health before sending research requests.aiq-deploy.Use AIQ_SERVER_URL when set. Otherwise try the default local backend:
python3 $SKILL_DIR/scripts/aiq.py health
Expected output: JSON from a reachable AI-Q health endpoint.
If health fails and no explicit AIQ_SERVER_URL was set, ask:
I do not see a reachable local AI-Q backend. Do you already have an AI-Q backend URL you want to use, or should I deploy a local Skill backend?
AIQ_SERVER_URL for subsequent helper calls and rerun health.aiq-deploy and preserve the original research request.401 or 403, stop and explain that this public skill does not manage
authentication. Ask the user to use an authenticated AI-Q skill or configure authentication for their environment.health succeeds but /chat or /v1/jobs/async/agents fails, report that the backend is reachable but not
compatible with this public research flow, then offer to run aiq-deploy validation.Before sending the request, state the resolved endpoint:
I will send this query to <AIQ_SERVER_URL>. Make sure this endpoint is trusted before sending sensitive information.
Do not send credentials, cookies, bearer tokens, or secret values through the query text.
Run:
python3 $SKILL_DIR/scripts/aiq.py chat "<USER_QUESTION>"
Expected output:
{"status": "deep_research_running", "job_id": "<JOB_ID>"} for asynchronous deep
research.If the response is normal JSON, present the result immediately. Do not force polling when there is no job_id.
If the response includes deep_research_running, extract the job_id and poll with the same absolute script path:
python3 $SKILL_DIR/scripts/aiq.py research_poll <JOB_ID>
Expected output: the final report JSON when the job completes successfully.
Use the runtime's non-blocking or background execution mechanism when available. If the chosen execution method requires escalated permissions, request explicit user approval first and explain why. Tell the user that deep research is running in the background.
If polling is interrupted, the job continues server-side. Resume with:
python3 $SKILL_DIR/scripts/aiq.py status <JOB_ID>
python3 $SKILL_DIR/scripts/aiq.py report <JOB_ID>
python3 $SKILL_DIR/scripts/aiq.py research_poll <JOB_ID>
Use status to inspect job status and saved artifacts. Use report when the job has already finished and you only need
the final output. Use research_poll to keep waiting for completion.
The final report may reference generated artifacts (charts, CSVs) as artifact://<id> links. To materialize them as local
files, run python3 $SKILL_DIR/scripts/aiq.py artifacts <JOB_ID> --download-dir ./aiq-artifacts; it downloads each artifact
and prints the local path. Do not expect base64 image data in the report itself.
For a self-contained, shareable report, run python3 $SKILL_DIR/scripts/aiq.py report <JOB_ID> --out-dir ./my-report. It writes report.md plus an
artifacts/ folder and rewrites each artifact://<id> link to the matching local file, so the report renders (charts and
all) in any markdown viewer without a running backend.
When research_poll completes successfully, fetch and present the full report. Keep citations and source URLs intact.
If the job status is failed, failure, or cancelled, show the error from the status response and ask whether the
user wants to retry with a narrower query or different approach.
After a report is presented, the user often wants to go deeper or adjust scope. Reuse the existing backend flow — the same auth boundary, polling, and report retrieval from Steps 1-5 apply; there is no separate follow-up endpoint.
Ask — a follow-up question about a report already in hand:
For a question answerable from the report you already have, answer directly from its content and citations; do not call the backend again.
For a question that needs new investigation, send a fresh request that carries the needed context from the prior question and report into the new query text, then present the new result:
python3 $SKILL_DIR/scripts/aiq.py chat "<FOLLOW_UP_QUESTION> (context: <PRIOR_TOPIC>)"
If this returns a deep_research_running job ID, poll it with research_poll
exactly as in Step 3.
Redo — re-run research with adjusted scope (a narrower query, a corrected question, or a different depth):
python3 $SKILL_DIR/scripts/aiq.py research "<REFINED_QUERY>" [agent_type]
agent_type to match the desired depth (for example a deep agent for a
thorough pass, or shallow_researcher for a quick one); list options with
agents if unsure.Do not send credentials or secret values in follow-up query text, and keep citations and source URLs intact in every follow-up answer.
IMPORTANT: This skill is designed for NVIDIA AI-Q Blueprint version 2.1.0.
Semantic Versioning Compatibility Rules:
Skill version: X.Y.Z
Blueprint or endpoint version: A.B.C
Compatible IF:
1. A == X (Major versions MUST match)
2. B >= Y (Minor version must be equal or greater)
3. C can be anything (Patch version does not affect compatibility)
Examples:
If your Blueprint version is not compatible:
| Script | Purpose | Arguments |
|---|---|---|
scripts/aiq.py health | Check whether the configured server responds | none |
scripts/aiq.py chat | POST /chat; may return inline output or a deep-research job ID | <query> |
scripts/aiq.py agents | List available async agent types | none |
scripts/aiq.py submit | Submit an explicit async job | <query> [agent_type] |
scripts/aiq.py research | Submit an async job, poll, and print the final report JSON | <query> [agent_type] |
scripts/aiq.py research_poll | Resume polling an existing async job | <job_id> |
scripts/aiq.py status | Fetch job status plus /state artifacts | <job_id> |
scripts/aiq.py state | Fetch event-store artifacts only | <job_id> |
scripts/aiq.py report | Fetch the final report; with --out-dir DIR, export a portable report.md + artifacts/ folder with links rewritten to local files | <job_id> [--out-dir DIR] |
scripts/aiq.py artifacts | List durable artifacts; with --download-dir DIR, download them and print local paths | <job_id> [--download-dir DIR] |
scripts/aiq.py stream | Stream SSE events from a job | <job_id> |
scripts/aiq.py cancel | Cancel a running job | <job_id> |
When the host supports a run_script() helper, call it with scripts/aiq.py and the arguments above. Otherwise, run
the equivalent shell command, such as python3 $SKILL_DIR/scripts/aiq.py health.
| Variable | Required | Default | Description |
|---|---|---|---|
AIQ_SERVER_URL | No | http://localhost:8000 | Local or self-hosted AI-Q server base URL |
AIQ_SERVER_URL.AIQ_SERVER_URL. Confirm the endpoint is trusted before sending
sensitive or confidential information.AIQ_SERVER_URL endpoints may log prompts, responses, and metadata.python3 $SKILL_DIR/scripts/aiq.py health
python3 $SKILL_DIR/scripts/aiq.py chat "Compare local AIQ deep research with a standard web search workflow"
Expected output:
<health JSON from AI-Q>
<JSON chat response or {"status": "deep_research_running", "job_id": "<JOB_ID>"}>
If AI-Q returns a job ID, continue with research_poll.
python3 $SKILL_DIR/scripts/aiq.py status <JOB_ID>
python3 $SKILL_DIR/scripts/aiq.py research_poll <JOB_ID>
Replace <JOB_ID> with the UUID returned by AI-Q. Expected output: status JSON followed by the report JSON when the
job completes. If the job failed, show the returned status and do not retry automatically.
# Ask: a follow-up that needs new investigation, carrying prior context.
python3 $SKILL_DIR/scripts/aiq.py chat "How does that compare on cost? (context: local AIQ deep research vs web search)"
# Redo: re-run research with a narrower query and explicit depth.
python3 $SKILL_DIR/scripts/aiq.py research "AIQ deep research cost on a single workstation" shallow_researcher
Expected output: a routed chat response or a new deep_research_running job ID
to poll with research_poll. Present the follow-up answer with citations and
source URLs intact.
| Topic | Documentation |
|---|---|
| Helper script | scripts/aiq.py |
| Deployment and backend validation | ../aiq-deploy/SKILL.md |
Symptoms:
health fails with connection refused.http://localhost:8000 URL does not respond.Causes:
Solutions:
export AIQ_SERVER_URL="http://localhost:<PORT>"
python3 $SKILL_DIR/scripts/aiq.py health
aiq-deploy and preserve the original research request.Symptoms:
/chat or async job calls.Causes:
Solutions:
health and the original query only after the authentication boundary is resolved.Symptoms:
health returns successfully./chat, /v1/jobs/async/agents, or polling commands fail.Causes:
Solutions:
python3 $SKILL_DIR/scripts/aiq.py agents
aiq-deploy validation.Symptoms:
running.running, but a report is returned or cancel says the job is already success.Causes:
Solutions:
python3 $SKILL_DIR/scripts/aiq.py status <JOB_ID>
has_report: true or job_status.status: success, fetch the report:
python3 $SKILL_DIR/scripts/aiq.py report <JOB_ID>
python3 $SKILL_DIR/scripts/aiq.py research_poll <JOB_ID>
LP, MILP, and QP (beta) with cuOpt — Python, C, and CLI. Use when the user is solving LP, MILP, or QP with any cuOpt interface.
Guides Holoscan SDK installation: inspects the host, assesses platform compatibility, recommends an install method, and delegates to the matching install skill.
Trace and interpret the Pareto frontier across competing objectives using repeated single-objective cuOpt solves (weighted-sum and ε-constraint).
Use when running people attribute search (PAS) image augmentation and auto-labeling workflows on OSMO: flow selection, preflight, submit-time interpolation, monitoring, and output retrieval. Trigger keywords: people attribute search, PAS, person augmentation, attribute search, person re-identification, clothing augmentation, person crop augmentation.
Run end-to-end calibration on the shipped sample dataset (sdg_08_2_sample_data_010926.zip) against a running AMC microservice. Use when user says 'test sample dataset', 'run sample calibration', 'verify AMC install', or 'launch and test'.
Calibrate a new dataset from pre-recorded video files via the AutoMagicCalib REST API. Use when user has local MP4s and says 'calibrate my videos', 'run AMC on these videos', or similar.