Portable AI Briefings AI-Portable
Article image for Add a Specialized Deep Research Skill to Agent Harnesses

Add a Specialized Deep Research Skill to Agent Harnesses

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.

Condensed by AI-Portable from Editorial queue.

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 , 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 must ground them in enterprise data, connecting data sources, routing queries, managing authentication, tuning prompts, evaluating outputs, and preserving source attribution. NVIDIA AI-Q 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.

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 helps define reusable tool functions, and the AI-Q Agent Skill 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 , 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

The packaged skill lives in the AI-Q GitHub repository 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 http://localhost:8000 by default, which can be overriden with AIQ_SERVER_URL .

A running AI-Q Blueprint server reachable, locally or hosted, from the harness

Original source ↗