Add a Specialized Deep Research Skill to Agent Harnesses NVIDIA released an open-source deep research blueprint called AI-Q that can be integrated as a portable skill into agent harnesses such as Claude Code, Codex, and LangChain Deep Agents. The skill allows these general-purpose agents to delegate complex research tasks—including multi-document synthesis and long-horizon analysis with source attribution—to a local or hosted AI-Q server, receiving structured reports with citations in return. This approach keeps sensitive enterprise data within the organization's environment, addressing compliance requirements in regulated industries like healthcare, financial services, government, and defense. Agent harnesses like Claude Code, Codex, and LangChain Deep Agents are excellent orchestrators. They manage sessions, chain tools, execute code, and respond to developer intent. But when these harnesses need to do deep research, such as multi-document synthesis https://www.nvidia.com/en-us/use-cases/intelligent-document-processing/ , decision briefs backed by enterprise data, and long-horizon analysis with source attribution, the complexity of deep research shifts back onto the developer. Teams building these agents https://www.nvidia.com/en-us/glossary/ai-agents/ must ground them in enterprise data, connecting data sources, routing queries, managing authentication, tuning prompts, evaluating outputs, and preserving source attribution. NVIDIA AI-Q https://build.nvidia.com/nvidia/aiq packages this work into an open-source deep research blueprint that can be exposed to agent harnesses as a portable agent skill. With this skill, an agent harness delegates a research task to a local or hosted AI-Q server and receives a structured report in return. The harness doesn’t need to own the research pipeline. Sensitive source data can remain inside the enterprise environment, which is critical in regulated industries such as healthcare, financial services, government, and defense. What is the AI-Q skill? The AI-Q skill enables Claude Code, Codex, or other general-purpose agents to submit a research task to a running AI-Q server and receive a well-formatted, detailed report with citations. The skill includes a SKILL.md file that tells the harness how to use AI-Q, plus a helper script that manages request routing, job submission, polling, and result retrieval. A skill can mean different things in agent workflows. Agent skills guide the harness, the NVIDIA NeMo Agent Toolkit https://docs.nvidia.com/nemo/agent-toolkit/latest/build-workflows/functions-and-function-groups/functions.html agents-and-tools helps define reusable tool functions, and the AI-Q Agent Skill https://github.com/NVIDIA-AI-Blueprints/aiq/tree/v2.1.0/.agents/skills/aiq-research exposes the full research pipeline—including intent classification, clarification, shallow research, deep research, and evaluation—as a higher-level capability. Together, the agent delegates research without rebuilding retrieval https://www.nvidia.com/en-us/glossary/retrieval-augmented-generation/ , planning, synthesis, and citation logic inside each harness. Video 1. CODEX agent delegating a multi-data-source research task to AI-Q as a skill Installing the AI-Q agent skill The packaged skill lives in the AI-Q GitHub repository https://github.com/NVIDIA-AI-Blueprints/aiq/tree/v2.1.0 at .agents/skills/aiq-research/ , with SKILL.md at its root. The scripts/aiq.py helper handles routed /chat requests and manages the async deep research jobs for a running AI-Q server using by default, which can be overriden with http://localhost:8000 http://localhost:8000 AIQ SERVER URL . Prerequisites: - Python 3.10 or newer - A running AI-Q Blueprint server reachable, locally or hosted, from the harness Claude Code Claude Code loads repo-local skills from .claude/skills/ . To ensure compatibility with Claude, manually link the AI-Q skill to a workspace using these two commands: mkdir -p .claude/skills ln -s ../../.agents/skills/aiq-research .claude/skills/aiq-research For a user-level install that works across repos: mkdir -p ~/.claude/skills cp -R .agents/skills/aiq-research ~/.claude/skills/aiq-research Codex Drop the skill into the harness’s configured skills directory: mkdir -p