[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-nvidia-aiq-research":3,"mdc--h7l5hv-key":31,"related-repo-nvidia-aiq-research":2814,"related-org-nvidia-aiq-research":2911},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":26,"sourceUrl":29,"mdContent":30},"aiq-research","conduct deep research with AI-Q","Use when asked to run deep research or AI-Q research through a reachable NVIDIA AI-Q Blueprint backend.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},"nvidia","NVIDIA","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fnvidia.png",[12,16,17],{"name":13,"slug":14,"type":15},"Research","research","tag",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},"Agents","agents",2473,"https:\u002F\u002Fgithub.com\u002FNVIDIA\u002Fskills","2026-07-14T05:28:06.816956","Apache-2.0",281,[],{"repoUrl":21,"stars":20,"forks":24,"topics":27,"description":28},[],"AI agent skills published by NVIDIA","https:\u002F\u002Fgithub.com\u002FNVIDIA\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Faiq-research","---\nname: aiq-research\ndescription: |\n  Use when asked to run deep research or AI-Q research through a reachable NVIDIA AI-Q Blueprint backend.\nlicense: Apache-2.0\npermissions:\n  env:\n    - AIQ_SERVER_URL\n  network:\n    - http:\u002F\u002Flocalhost:8000\ncompatibility: |\n  Designed for Claude Code, OpenCode, Codex, and Agent Skills-compatible tools. Requires Python 3.11+ and network\n  access to a running local AI-Q Blueprint server at `http:\u002F\u002Flocalhost:8000` by default. Non-local backends must be\n  explicitly trusted by the user and granted by the host tool outside this public skill.\nmetadata:\n  version: \"2.1.0\"\n  author: \"NVIDIA AI-Q Blueprint Team \u003Caiq-blueprint@nvidia.com>\"\n  github-url: \"https:\u002F\u002Fgithub.com\u002FNVIDIA-AI-Blueprints\u002Faiq\"\n  tags:\n    - nvidia\n    - aiq\n    - blueprint\n    - deep-research\n    - research-agents\n    - agent-skills\n  languages:\n    - python\n    - bash\n  domain: \"research-agents\"\nallowed-tools: Read Bash\n---\n\n# AIQ Research Skill\n\n## Purpose\n\nUse this skill to call a locally running NVIDIA AI-Q Blueprint server through the helper script at\n`scripts\u002Faiq.py`.\n\nUse this skill for research-shaped requests, including:\n\n- \"deep research on ...\"\n- \"AIQ research ...\"\n- \"research ...\"\n- \"use AI-Q to answer ...\"\n- \"ask AI-Q about ...\"\n\nDo not use this skill for install, deploy, start, stop, UI, CLI, Docker, Helm, or troubleshooting requests. Those\nbelong to `aiq-deploy`.\n\n## Prerequisites\n\nUsers need:\n\n- Python 3.11+ available as `python3`.\n- A reachable local or self-hosted AI-Q Blueprint backend.\n- `AIQ_SERVER_URL` set when the backend is not running at `http:\u002F\u002Flocalhost:8000`; non-local values must be trusted by\n  the user before any query is sent.\n- A backend configured with authentication disabled for this public helper, or a separate authenticated AI-Q skill for\n  authenticated environments.\n- Network access from the local machine to the AI-Q backend URL.\n- Credentials configured in the backend environment, not in this skill. This public helper does not collect or manage\n  API keys.\n\nThe helper script has no third-party Python package dependencies; it uses Python standard-library HTTP modules.\n\n## Instructions\n\n1. Resolve the target backend URL.\n2. Run `health` before sending research requests.\n3. If no backend is reachable, ask for a backend URL or hand off to `aiq-deploy`.\n4. Before sending any user query, state the exact AI-Q backend URL that will receive it. For non-local URLs, continue\n   only if the user has explicitly confirmed that URL is trusted in the current conversation.\n5. Poll asynchronous deep research jobs when AI-Q returns a job ID.\n6. Present returned reports with citations and source URLs intact.\n7. Stop on failed jobs and show the returned error; do not retry automatically.\n8. After presenting a report, support follow-up: answer questions about it\n   (ask) or run a refined research pass (redo) using the same commands.\n\n### Step 1 - Resolve the backend\n\nUse `AIQ_SERVER_URL` when set. Otherwise try the default local backend:\n\n```bash\npython3 $SKILL_DIR\u002Fscripts\u002Faiq.py health\n```\n\nExpected output: JSON from a reachable AI-Q health endpoint.\n\nIf `health` fails and no explicit `AIQ_SERVER_URL` was set, ask:\n\n```text\nI 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?\n```\n\n- If the user provides a URL, set `AIQ_SERVER_URL` for subsequent helper calls and rerun `health`.\n- If the user wants local deployment, hand off to `aiq-deploy` and preserve the original research request.\n- If a reachable backend returns `401` or `403`, stop and explain that this public skill does not manage\n  authentication. Ask the user to use an authenticated AI-Q skill or configure authentication for their environment.\n- If `health` succeeds but `\u002Fchat` or `\u002Fv1\u002Fjobs\u002Fasync\u002Fagents` fails, report that the backend is reachable but not\n  compatible with this public research flow, then offer to run `aiq-deploy` validation.\n\n### Step 2 - Send the routed research request\n\nBefore sending the request, state the resolved endpoint:\n\n```text\nI will send this query to \u003CAIQ_SERVER_URL>. Make sure this endpoint is trusted before sending sensitive information.\n```\n\nDo not send credentials, cookies, bearer tokens, or secret values through the query text.\n\nRun:\n\n```bash\npython3 $SKILL_DIR\u002Fscripts\u002Faiq.py chat \"\u003CUSER_QUESTION>\"\n```\n\nExpected output:\n\n- A normal JSON response for shallow or direct answers.\n- Or structured JSON containing `{\"status\": \"deep_research_running\", \"job_id\": \"\u003CJOB_ID>\"}` for asynchronous deep\n  research.\n\nIf the response is normal JSON, present the result immediately. Do not force polling when there is no `job_id`.\n\n### Step 3 - Poll asynchronous jobs\n\nIf the response includes `deep_research_running`, extract the `job_id` and poll with the same absolute script path:\n\n```bash\npython3 $SKILL_DIR\u002Fscripts\u002Faiq.py research_poll \u003CJOB_ID>\n```\n\nExpected output: the final report JSON when the job completes successfully.\n\nUse the runtime's non-blocking or background execution mechanism when available. If the chosen execution method requires\nescalated permissions, request explicit user approval first and explain why. Tell the user that deep research is running\nin the background.\n\n### Step 4 - Resume after interruptions\n\nIf polling is interrupted, the job continues server-side. Resume with:\n\n```bash\npython3 $SKILL_DIR\u002Fscripts\u002Faiq.py status \u003CJOB_ID>\npython3 $SKILL_DIR\u002Fscripts\u002Faiq.py report \u003CJOB_ID>\npython3 $SKILL_DIR\u002Fscripts\u002Faiq.py research_poll \u003CJOB_ID>\n```\n\nUse `status` to inspect job status and saved artifacts. Use `report` when the job has already finished and you only need\nthe final output. Use `research_poll` to keep waiting for completion.\n\nThe final report may reference generated artifacts (charts, CSVs) as `artifact:\u002F\u002F\u003Cid>` links. To materialize them as local\nfiles, run `python3 $SKILL_DIR\u002Fscripts\u002Faiq.py artifacts \u003CJOB_ID> --download-dir .\u002Faiq-artifacts`; it downloads each artifact\nand prints the local path. Do not expect base64 image data in the report itself.\n\nFor a self-contained, shareable report, run `python3 $SKILL_DIR\u002Fscripts\u002Faiq.py report \u003CJOB_ID> --out-dir .\u002Fmy-report`. It writes `report.md` plus an\n`artifacts\u002F` folder and rewrites each `artifact:\u002F\u002F\u003Cid>` link to the matching local file, so the report renders (charts and\nall) in any markdown viewer without a running backend.\n\n### Step 5 - Present the report\n\nWhen `research_poll` completes successfully, fetch and present the full report. Keep citations and source URLs intact.\nIf the job status is `failed`, `failure`, or `cancelled`, show the error from the status response and ask whether the\nuser wants to retry with a narrower query or different approach.\n\n### Step 6 - Follow up: ask about, edit, or redo a report\n\nAfter a report is presented, the user often wants to go deeper or adjust scope.\nReuse the existing backend flow — the same auth boundary, polling, and report\nretrieval from Steps 1-5 apply; there is no separate follow-up endpoint.\n\n**Ask** — a follow-up question about a report already in hand:\n\n- For a question answerable from the report you already have, answer directly\n  from its content and citations; do not call the backend again.\n- For a question that needs new investigation, send a fresh request that carries\n  the needed context from the prior question and report into the new query\n  text, then present the new result:\n\n  ```bash\n  python3 $SKILL_DIR\u002Fscripts\u002Faiq.py chat \"\u003CFOLLOW_UP_QUESTION> (context: \u003CPRIOR_TOPIC>)\"\n  ```\n\n  If this returns a `deep_research_running` job ID, poll it with `research_poll`\n  exactly as in Step 3.\n\n**Edit** — rewrite a report with cosmetic changes. This skill only has access\nto the data used to generate the initial report. No tools are available:\n\n```bash\npython3 $SKILL_DIR\u002Fscripts\u002Faiq.py report_edit \u003CJOB_ID> \"\u003CEDIT_INSTRUCTIONS>\"\n```\n\n**Redo** — re-run research with adjusted scope (a narrower query, a corrected\nquestion, or a different depth):\n\n```bash\npython3 $SKILL_DIR\u002Fscripts\u002Faiq.py research \"\u003CREFINED_QUERY>\" [agent_type]\n```\n\n- Choose `agent_type` to match the desired depth (for example a deep agent for a\n  thorough pass, or `shallow_researcher` for a quick one); list options with\n  `agents` if unsure.\n- Treat a redo as a new job: state the target endpoint again before sending\n  (Step 2), then poll and present as in Steps 3-5.\n\nDo not send credentials or secret values in follow-up query text, and keep\ncitations and source URLs intact in every follow-up answer.\n\n## Version Compatibility\n\n**IMPORTANT:** This skill is designed for NVIDIA AI-Q Blueprint version 2.1.0.\n\nSemantic Versioning Compatibility Rules:\n\n```text\nSkill version: X.Y.Z\nBlueprint or endpoint version: A.B.C\n\nCompatible IF:\n1. A == X (Major versions MUST match)\n2. B >= Y (Minor version must be equal or greater)\n3. C can be anything (Patch version does not affect compatibility)\n```\n\nExamples:\n\n- Skill version 2.1.0 is compatible with Blueprint version 2.1.0.\n- Skill version 2.1.0 is compatible with Blueprint version 2.2.0.\n- Skill version 2.1.0 is compatible with Blueprint version 2.1.5.\n- Skill version 2.1.0 is not compatible with Blueprint version 3.0.0.\n- Skill version 2.1.0 is not compatible with Blueprint version 2.0.0.\n\nIf your Blueprint version is not compatible:\n\n1. Check for an updated skill version matching your Blueprint version.\n2. Use a Blueprint version compatible with this skill.\n3. Proceed with caution only when the user accepts the compatibility risk; API routes or response shapes may have\n   changed.\n\n## Available Scripts\n\n| Script | Purpose | Arguments |\n|---|---|---|\n| `scripts\u002Faiq.py health` | Check whether the configured server responds | none |\n| `scripts\u002Faiq.py chat` | POST `\u002Fchat`; may return inline output or a deep-research job ID | `\u003Cquery>` |\n| `scripts\u002Faiq.py agents` | List available async agent types | none |\n| `scripts\u002Faiq.py submit` | Submit an explicit async job | `\u003Cquery> [agent_type]` |\n| `scripts\u002Faiq.py research` | Submit an async job, poll, and print the final report JSON | `\u003Cquery> [agent_type]` |\n| `scripts\u002Faiq.py research_poll` | Resume polling an existing async job | `\u003Cjob_id>` |\n| `scripts\u002Faiq.py status` | Fetch job status plus `\u002Fstate` artifacts | `\u003Cjob_id>` |\n| `scripts\u002Faiq.py state` | Fetch event-store artifacts only | `\u003Cjob_id>` |\n| `scripts\u002Faiq.py report` | Fetch the final report; with `--out-dir DIR`, export a portable `report.md` + `artifacts\u002F` folder with links rewritten to local files | `\u003Cjob_id> [--out-dir DIR]` |\n| `scripts\u002Faiq.py report_edit` | Edit a completed report with cosmetic changes | `\u003Cjob_id> \u003Cedit_instructions>` |\n| `scripts\u002Faiq.py artifacts` | List durable artifacts; with `--download-dir DIR`, download them and print local paths | `\u003Cjob_id> [--download-dir DIR]` |\n| `scripts\u002Faiq.py stream` | Stream SSE events from a job | `\u003Cjob_id>` |\n| `scripts\u002Faiq.py cancel` | Cancel a running job | `\u003Cjob_id>` |\n\nWhen the host supports a `run_script()` helper, call it with `scripts\u002Faiq.py` and the arguments above. Otherwise, run\nthe equivalent shell command, such as `python3 $SKILL_DIR\u002Fscripts\u002Faiq.py health`.\n\n## Environment Variables\n\n| Variable | Required | Default | Description |\n|---|---:|---|---|\n| `AIQ_SERVER_URL` | No | `http:\u002F\u002Flocalhost:8000` | Local or self-hosted AI-Q server base URL |\n\n## Security Best Practices\n\n- Do not put API keys, bearer tokens, cookies, or basic-auth credentials in `AIQ_SERVER_URL`.\n- Store backend credentials in the AI-Q deployment environment, not in this skill or command examples.\n- User query text is transmitted to the configured `AIQ_SERVER_URL`. Confirm the endpoint is trusted before sending\n  sensitive or confidential information.\n- Treat returned reports as potentially sensitive if the backend uses private data sources.\n- Do not truncate citations or source URLs from returned reports.\n\n## Limitations\n\n- This skill requires a running AI-Q backend; it does not deploy one.\n- The public helper does not manage authentication tokens or cookies.\n- Remote `AIQ_SERVER_URL` endpoints may log prompts, responses, and metadata.\n- If the backend returns HTTP 500 or lacks async agents, report the failure instead of fabricating a research answer.\n\n## Examples\n\n### Example 1: Run a routed chat or research request\n\n```bash\npython3 $SKILL_DIR\u002Fscripts\u002Faiq.py health\npython3 $SKILL_DIR\u002Fscripts\u002Faiq.py chat \"Compare local AIQ deep research with a standard web search workflow\"\n```\n\nExpected output:\n\n```text\n\u003Chealth JSON from AI-Q>\n\u003CJSON chat response or {\"status\": \"deep_research_running\", \"job_id\": \"\u003CJOB_ID>\"}>\n```\n\nIf AI-Q returns a job ID, continue with `research_poll`.\n\n### Example 2: Resume an existing job\n\n```bash\npython3 $SKILL_DIR\u002Fscripts\u002Faiq.py status \u003CJOB_ID>\npython3 $SKILL_DIR\u002Fscripts\u002Faiq.py research_poll \u003CJOB_ID>\n```\n\nReplace `\u003CJOB_ID>` with the UUID returned by AI-Q. Expected output: status JSON followed by the report JSON when the\njob completes. If the job failed, show the returned status and do not retry automatically.\n\n### Example 3: Ask a follow-up or redo with a refined query\n\n```bash\n# Ask: a follow-up that needs new investigation, carrying prior context.\npython3 $SKILL_DIR\u002Fscripts\u002Faiq.py chat \"How does that compare on cost? (context: local AIQ deep research vs web search)\"\n\n# Redo: re-run research with a narrower query and explicit depth.\npython3 $SKILL_DIR\u002Fscripts\u002Faiq.py research \"AIQ deep research cost on a single workstation\" shallow_researcher\n```\n\nExpected output: a routed chat response or a new `deep_research_running` job ID\nto poll with `research_poll`. Present the follow-up answer with citations and\nsource URLs intact.\n\n## References\n\n| Topic | Documentation |\n|---|---|\n| Helper script | `scripts\u002Faiq.py` |\n| Deployment and backend validation | `..\u002Faiq-deploy\u002FSKILL.md` |\n\n## Common Issues\n\n### Issue: No backend is reachable\n\n**Symptoms:**\n\n- `health` fails with connection refused.\n- The default `http:\u002F\u002Flocalhost:8000` URL does not respond.\n\n**Causes:**\n\n- AI-Q is not running.\n- AI-Q is running on a different host or port.\n- A local firewall or network setting blocks the connection.\n\n**Solutions:**\n\n1. Ask whether the user has an existing AI-Q backend URL.\n2. If they provide one, set it and rerun health:\n   ```bash\n   export AIQ_SERVER_URL=\"http:\u002F\u002Flocalhost:\u003CPORT>\"\n   python3 $SKILL_DIR\u002Fscripts\u002Faiq.py health\n   ```\n3. If they want a local backend, hand off to `aiq-deploy` and preserve the original research request.\n\n### Issue: Backend requires authentication\n\n**Symptoms:**\n\n- Requests fail with HTTP 401 or HTTP 403.\n- The backend is reachable but rejects `\u002Fchat` or async job calls.\n\n**Causes:**\n\n- The backend was deployed with authentication enabled.\n- The public helper does not attach user tokens or cookies.\n\n**Solutions:**\n\n1. Stop and explain that this public skill does not manage authentication.\n2. Ask the user to use an authenticated AI-Q skill or configure their backend for this public local workflow.\n3. Rerun `health` and the original query only after the authentication boundary is resolved.\n\n### Issue: Health succeeds but research routes fail\n\n**Symptoms:**\n\n- `health` returns successfully.\n- `\u002Fchat`, `\u002Fv1\u002Fjobs\u002Fasync\u002Fagents`, or polling commands fail.\n\n**Causes:**\n\n- The backend is not using an API-enabled AI-Q config.\n- The async job registry is not available in the selected backend.\n- The backend version is incompatible with this skill.\n\n**Solutions:**\n\n1. Run:\n   ```bash\n   python3 $SKILL_DIR\u002Fscripts\u002Faiq.py agents\n   ```\n2. If agents are unavailable, report the compatibility failure and offer to run `aiq-deploy` validation.\n3. Confirm the deployed Blueprint version is compatible with skill version 2.1.0.\n\n### Issue: Job is interrupted or appears stuck\n\n**Symptoms:**\n\n- Local polling is interrupted.\n- The job keeps showing `running`.\n- Poll output shows `running`, but a report is returned or cancel says the job is already `success`.\n\n**Causes:**\n\n- Deep research is asynchronous and continues server-side.\n- Local polling output can lag behind terminal server state.\n\n**Solutions:**\n\n1. Check current state:\n   ```bash\n   python3 $SKILL_DIR\u002Fscripts\u002Faiq.py status \u003CJOB_ID>\n   ```\n2. If `has_report: true` or `job_status.status: success`, fetch the report:\n   ```bash\n   python3 $SKILL_DIR\u002Fscripts\u002Faiq.py report \u003CJOB_ID>\n   ```\n3. If the job is still running, continue polling:\n   ```bash\n   python3 $SKILL_DIR\u002Fscripts\u002Faiq.py research_poll \u003CJOB_ID>\n   ```\n",{"data":32,"body":53},{"name":4,"description":6,"license":23,"permissions":33,"compatibility":38,"metadata":39,"allowed-tools":52},{"env":34,"network":36},[35],"AIQ_SERVER_URL",[37],"http:\u002F\u002Flocalhost:8000","Designed for Claude Code, OpenCode, Codex, and Agent Skills-compatible tools. Requires Python 3.11+ and network\naccess to a running local AI-Q Blueprint server at `http:\u002F\u002Flocalhost:8000` by default. Non-local backends must be\nexplicitly trusted by the user and granted by the host tool outside this public skill.\n",{"version":40,"author":41,"github-url":42,"tags":43,"languages":49,"domain":47},"2.1.0","NVIDIA AI-Q Blueprint Team \u003Caiq-blueprint@nvidia.com>","https:\u002F\u002Fgithub.com\u002FNVIDIA-AI-Blueprints\u002Faiq",[8,44,45,46,47,48],"aiq","blueprint","deep-research","research-agents","agent-skills",[50,51],"python","bash","Read Bash",{"type":54,"children":55},"root",[56,65,72,87,92,122,134,140,145,197,202,208,266,273,285,323,328,347,357,444,450,455,464,469,474,517,522,543,555,561,581,628,633,638,644,649,765,793,814,850,856,892,898,903,914,986,996,1053,1063,1109,1145,1150,1156,1166,1171,1180,1185,1213,1218,1236,1242,1643,1670,1676,1738,1744,1785,1791,1821,1827,1833,1891,1895,1904,1915,1921,1998,2011,2017,2121,2140,2146,2201,2207,2213,2221,2246,2254,2272,2280,2362,2368,2375,2395,2402,2415,2422,2447,2453,2460,2489,2496,2514,2521,2572,2578,2585,2624,2631,2644,2651,2808],{"type":57,"tag":58,"props":59,"children":61},"element","h1",{"id":60},"aiq-research-skill",[62],{"type":63,"value":64},"text","AIQ Research Skill",{"type":57,"tag":66,"props":67,"children":69},"h2",{"id":68},"purpose",[70],{"type":63,"value":71},"Purpose",{"type":57,"tag":73,"props":74,"children":75},"p",{},[76,78,85],{"type":63,"value":77},"Use this skill to call a locally running NVIDIA AI-Q Blueprint server through the helper script at\n",{"type":57,"tag":79,"props":80,"children":82},"code",{"className":81},[],[83],{"type":63,"value":84},"scripts\u002Faiq.py",{"type":63,"value":86},".",{"type":57,"tag":73,"props":88,"children":89},{},[90],{"type":63,"value":91},"Use this skill for research-shaped requests, including:",{"type":57,"tag":93,"props":94,"children":95},"ul",{},[96,102,107,112,117],{"type":57,"tag":97,"props":98,"children":99},"li",{},[100],{"type":63,"value":101},"\"deep research on ...\"",{"type":57,"tag":97,"props":103,"children":104},{},[105],{"type":63,"value":106},"\"AIQ research ...\"",{"type":57,"tag":97,"props":108,"children":109},{},[110],{"type":63,"value":111},"\"research ...\"",{"type":57,"tag":97,"props":113,"children":114},{},[115],{"type":63,"value":116},"\"use AI-Q to answer ...\"",{"type":57,"tag":97,"props":118,"children":119},{},[120],{"type":63,"value":121},"\"ask AI-Q about ...\"",{"type":57,"tag":73,"props":123,"children":124},{},[125,127,133],{"type":63,"value":126},"Do not use this skill for install, deploy, start, stop, UI, CLI, Docker, Helm, or troubleshooting requests. Those\nbelong to ",{"type":57,"tag":79,"props":128,"children":130},{"className":129},[],[131],{"type":63,"value":132},"aiq-deploy",{"type":63,"value":86},{"type":57,"tag":66,"props":135,"children":137},{"id":136},"prerequisites",[138],{"type":63,"value":139},"Prerequisites",{"type":57,"tag":73,"props":141,"children":142},{},[143],{"type":63,"value":144},"Users need:",{"type":57,"tag":93,"props":146,"children":147},{},[148,160,165,182,187,192],{"type":57,"tag":97,"props":149,"children":150},{},[151,153,159],{"type":63,"value":152},"Python 3.11+ available as ",{"type":57,"tag":79,"props":154,"children":156},{"className":155},[],[157],{"type":63,"value":158},"python3",{"type":63,"value":86},{"type":57,"tag":97,"props":161,"children":162},{},[163],{"type":63,"value":164},"A reachable local or self-hosted AI-Q Blueprint backend.",{"type":57,"tag":97,"props":166,"children":167},{},[168,173,175,180],{"type":57,"tag":79,"props":169,"children":171},{"className":170},[],[172],{"type":63,"value":35},{"type":63,"value":174}," set when the backend is not running at ",{"type":57,"tag":79,"props":176,"children":178},{"className":177},[],[179],{"type":63,"value":37},{"type":63,"value":181},"; non-local values must be trusted by\nthe user before any query is sent.",{"type":57,"tag":97,"props":183,"children":184},{},[185],{"type":63,"value":186},"A backend configured with authentication disabled for this public helper, or a separate authenticated AI-Q skill for\nauthenticated environments.",{"type":57,"tag":97,"props":188,"children":189},{},[190],{"type":63,"value":191},"Network access from the local machine to the AI-Q backend URL.",{"type":57,"tag":97,"props":193,"children":194},{},[195],{"type":63,"value":196},"Credentials configured in the backend environment, not in this skill. This public helper does not collect or manage\nAPI keys.",{"type":57,"tag":73,"props":198,"children":199},{},[200],{"type":63,"value":201},"The helper script has no third-party Python package dependencies; it uses Python standard-library HTTP modules.",{"type":57,"tag":66,"props":203,"children":205},{"id":204},"instructions",[206],{"type":63,"value":207},"Instructions",{"type":57,"tag":209,"props":210,"children":211},"ol",{},[212,217,230,241,246,251,256,261],{"type":57,"tag":97,"props":213,"children":214},{},[215],{"type":63,"value":216},"Resolve the target backend URL.",{"type":57,"tag":97,"props":218,"children":219},{},[220,222,228],{"type":63,"value":221},"Run ",{"type":57,"tag":79,"props":223,"children":225},{"className":224},[],[226],{"type":63,"value":227},"health",{"type":63,"value":229}," before sending research requests.",{"type":57,"tag":97,"props":231,"children":232},{},[233,235,240],{"type":63,"value":234},"If no backend is reachable, ask for a backend URL or hand off to ",{"type":57,"tag":79,"props":236,"children":238},{"className":237},[],[239],{"type":63,"value":132},{"type":63,"value":86},{"type":57,"tag":97,"props":242,"children":243},{},[244],{"type":63,"value":245},"Before sending any user query, state the exact AI-Q backend URL that will receive it. For non-local URLs, continue\nonly if the user has explicitly confirmed that URL is trusted in the current conversation.",{"type":57,"tag":97,"props":247,"children":248},{},[249],{"type":63,"value":250},"Poll asynchronous deep research jobs when AI-Q returns a job ID.",{"type":57,"tag":97,"props":252,"children":253},{},[254],{"type":63,"value":255},"Present returned reports with citations and source URLs intact.",{"type":57,"tag":97,"props":257,"children":258},{},[259],{"type":63,"value":260},"Stop on failed jobs and show the returned error; do not retry automatically.",{"type":57,"tag":97,"props":262,"children":263},{},[264],{"type":63,"value":265},"After presenting a report, support follow-up: answer questions about it\n(ask) or run a refined research pass (redo) using the same commands.",{"type":57,"tag":267,"props":268,"children":270},"h3",{"id":269},"step-1-resolve-the-backend",[271],{"type":63,"value":272},"Step 1 - Resolve the backend",{"type":57,"tag":73,"props":274,"children":275},{},[276,278,283],{"type":63,"value":277},"Use ",{"type":57,"tag":79,"props":279,"children":281},{"className":280},[],[282],{"type":63,"value":35},{"type":63,"value":284}," when set. Otherwise try the default local backend:",{"type":57,"tag":286,"props":287,"children":291},"pre",{"className":288,"code":289,"language":51,"meta":290,"style":290},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","python3 $SKILL_DIR\u002Fscripts\u002Faiq.py health\n","",[292],{"type":57,"tag":79,"props":293,"children":294},{"__ignoreMap":290},[295],{"type":57,"tag":296,"props":297,"children":300},"span",{"class":298,"line":299},"line",1,[301,306,312,318],{"type":57,"tag":296,"props":302,"children":304},{"style":303},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[305],{"type":63,"value":158},{"type":57,"tag":296,"props":307,"children":309},{"style":308},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[310],{"type":63,"value":311}," $SKILL_DIR",{"type":57,"tag":296,"props":313,"children":315},{"style":314},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[316],{"type":63,"value":317},"\u002Fscripts\u002Faiq.py",{"type":57,"tag":296,"props":319,"children":320},{"style":314},[321],{"type":63,"value":322}," health\n",{"type":57,"tag":73,"props":324,"children":325},{},[326],{"type":63,"value":327},"Expected output: JSON from a reachable AI-Q health endpoint.",{"type":57,"tag":73,"props":329,"children":330},{},[331,333,338,340,345],{"type":63,"value":332},"If ",{"type":57,"tag":79,"props":334,"children":336},{"className":335},[],[337],{"type":63,"value":227},{"type":63,"value":339}," fails and no explicit ",{"type":57,"tag":79,"props":341,"children":343},{"className":342},[],[344],{"type":63,"value":35},{"type":63,"value":346}," was set, ask:",{"type":57,"tag":286,"props":348,"children":352},{"className":349,"code":351,"language":63,"meta":290},[350],"language-text","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?\n",[353],{"type":57,"tag":79,"props":354,"children":355},{"__ignoreMap":290},[356],{"type":63,"value":351},{"type":57,"tag":93,"props":358,"children":359},{},[360,378,390,411],{"type":57,"tag":97,"props":361,"children":362},{},[363,365,370,372,377],{"type":63,"value":364},"If the user provides a URL, set ",{"type":57,"tag":79,"props":366,"children":368},{"className":367},[],[369],{"type":63,"value":35},{"type":63,"value":371}," for subsequent helper calls and rerun ",{"type":57,"tag":79,"props":373,"children":375},{"className":374},[],[376],{"type":63,"value":227},{"type":63,"value":86},{"type":57,"tag":97,"props":379,"children":380},{},[381,383,388],{"type":63,"value":382},"If the user wants local deployment, hand off to ",{"type":57,"tag":79,"props":384,"children":386},{"className":385},[],[387],{"type":63,"value":132},{"type":63,"value":389}," and preserve the original research request.",{"type":57,"tag":97,"props":391,"children":392},{},[393,395,401,403,409],{"type":63,"value":394},"If a reachable backend returns ",{"type":57,"tag":79,"props":396,"children":398},{"className":397},[],[399],{"type":63,"value":400},"401",{"type":63,"value":402}," or ",{"type":57,"tag":79,"props":404,"children":406},{"className":405},[],[407],{"type":63,"value":408},"403",{"type":63,"value":410},", stop and explain that this public skill does not manage\nauthentication. Ask the user to use an authenticated AI-Q skill or configure authentication for their environment.",{"type":57,"tag":97,"props":412,"children":413},{},[414,415,420,422,428,429,435,437,442],{"type":63,"value":332},{"type":57,"tag":79,"props":416,"children":418},{"className":417},[],[419],{"type":63,"value":227},{"type":63,"value":421}," succeeds but ",{"type":57,"tag":79,"props":423,"children":425},{"className":424},[],[426],{"type":63,"value":427},"\u002Fchat",{"type":63,"value":402},{"type":57,"tag":79,"props":430,"children":432},{"className":431},[],[433],{"type":63,"value":434},"\u002Fv1\u002Fjobs\u002Fasync\u002Fagents",{"type":63,"value":436}," fails, report that the backend is reachable but not\ncompatible with this public research flow, then offer to run ",{"type":57,"tag":79,"props":438,"children":440},{"className":439},[],[441],{"type":63,"value":132},{"type":63,"value":443}," validation.",{"type":57,"tag":267,"props":445,"children":447},{"id":446},"step-2-send-the-routed-research-request",[448],{"type":63,"value":449},"Step 2 - Send the routed research request",{"type":57,"tag":73,"props":451,"children":452},{},[453],{"type":63,"value":454},"Before sending the request, state the resolved endpoint:",{"type":57,"tag":286,"props":456,"children":459},{"className":457,"code":458,"language":63,"meta":290},[350],"I will send this query to \u003CAIQ_SERVER_URL>. Make sure this endpoint is trusted before sending sensitive information.\n",[460],{"type":57,"tag":79,"props":461,"children":462},{"__ignoreMap":290},[463],{"type":63,"value":458},{"type":57,"tag":73,"props":465,"children":466},{},[467],{"type":63,"value":468},"Do not send credentials, cookies, bearer tokens, or secret values through the query text.",{"type":57,"tag":73,"props":470,"children":471},{},[472],{"type":63,"value":473},"Run:",{"type":57,"tag":286,"props":475,"children":477},{"className":288,"code":476,"language":51,"meta":290,"style":290},"python3 $SKILL_DIR\u002Fscripts\u002Faiq.py chat \"\u003CUSER_QUESTION>\"\n",[478],{"type":57,"tag":79,"props":479,"children":480},{"__ignoreMap":290},[481],{"type":57,"tag":296,"props":482,"children":483},{"class":298,"line":299},[484,488,492,496,501,507,512],{"type":57,"tag":296,"props":485,"children":486},{"style":303},[487],{"type":63,"value":158},{"type":57,"tag":296,"props":489,"children":490},{"style":308},[491],{"type":63,"value":311},{"type":57,"tag":296,"props":493,"children":494},{"style":314},[495],{"type":63,"value":317},{"type":57,"tag":296,"props":497,"children":498},{"style":314},[499],{"type":63,"value":500}," chat",{"type":57,"tag":296,"props":502,"children":504},{"style":503},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[505],{"type":63,"value":506}," \"",{"type":57,"tag":296,"props":508,"children":509},{"style":314},[510],{"type":63,"value":511},"\u003CUSER_QUESTION>",{"type":57,"tag":296,"props":513,"children":514},{"style":503},[515],{"type":63,"value":516},"\"\n",{"type":57,"tag":73,"props":518,"children":519},{},[520],{"type":63,"value":521},"Expected output:",{"type":57,"tag":93,"props":523,"children":524},{},[525,530],{"type":57,"tag":97,"props":526,"children":527},{},[528],{"type":63,"value":529},"A normal JSON response for shallow or direct answers.",{"type":57,"tag":97,"props":531,"children":532},{},[533,535,541],{"type":63,"value":534},"Or structured JSON containing ",{"type":57,"tag":79,"props":536,"children":538},{"className":537},[],[539],{"type":63,"value":540},"{\"status\": \"deep_research_running\", \"job_id\": \"\u003CJOB_ID>\"}",{"type":63,"value":542}," for asynchronous deep\nresearch.",{"type":57,"tag":73,"props":544,"children":545},{},[546,548,554],{"type":63,"value":547},"If the response is normal JSON, present the result immediately. Do not force polling when there is no ",{"type":57,"tag":79,"props":549,"children":551},{"className":550},[],[552],{"type":63,"value":553},"job_id",{"type":63,"value":86},{"type":57,"tag":267,"props":556,"children":558},{"id":557},"step-3-poll-asynchronous-jobs",[559],{"type":63,"value":560},"Step 3 - Poll asynchronous jobs",{"type":57,"tag":73,"props":562,"children":563},{},[564,566,572,574,579],{"type":63,"value":565},"If the response includes ",{"type":57,"tag":79,"props":567,"children":569},{"className":568},[],[570],{"type":63,"value":571},"deep_research_running",{"type":63,"value":573},", extract the ",{"type":57,"tag":79,"props":575,"children":577},{"className":576},[],[578],{"type":63,"value":553},{"type":63,"value":580}," and poll with the same absolute script path:",{"type":57,"tag":286,"props":582,"children":584},{"className":288,"code":583,"language":51,"meta":290,"style":290},"python3 $SKILL_DIR\u002Fscripts\u002Faiq.py research_poll \u003CJOB_ID>\n",[585],{"type":57,"tag":79,"props":586,"children":587},{"__ignoreMap":290},[588],{"type":57,"tag":296,"props":589,"children":590},{"class":298,"line":299},[591,595,599,603,608,613,618,623],{"type":57,"tag":296,"props":592,"children":593},{"style":303},[594],{"type":63,"value":158},{"type":57,"tag":296,"props":596,"children":597},{"style":308},[598],{"type":63,"value":311},{"type":57,"tag":296,"props":600,"children":601},{"style":314},[602],{"type":63,"value":317},{"type":57,"tag":296,"props":604,"children":605},{"style":314},[606],{"type":63,"value":607}," research_poll",{"type":57,"tag":296,"props":609,"children":610},{"style":503},[611],{"type":63,"value":612}," \u003C",{"type":57,"tag":296,"props":614,"children":615},{"style":314},[616],{"type":63,"value":617},"JOB_I",{"type":57,"tag":296,"props":619,"children":620},{"style":308},[621],{"type":63,"value":622},"D",{"type":57,"tag":296,"props":624,"children":625},{"style":503},[626],{"type":63,"value":627},">\n",{"type":57,"tag":73,"props":629,"children":630},{},[631],{"type":63,"value":632},"Expected output: the final report JSON when the job completes successfully.",{"type":57,"tag":73,"props":634,"children":635},{},[636],{"type":63,"value":637},"Use the runtime's non-blocking or background execution mechanism when available. If the chosen execution method requires\nescalated permissions, request explicit user approval first and explain why. Tell the user that deep research is running\nin the background.",{"type":57,"tag":267,"props":639,"children":641},{"id":640},"step-4-resume-after-interruptions",[642],{"type":63,"value":643},"Step 4 - Resume after interruptions",{"type":57,"tag":73,"props":645,"children":646},{},[647],{"type":63,"value":648},"If polling is interrupted, the job continues server-side. Resume with:",{"type":57,"tag":286,"props":650,"children":652},{"className":288,"code":651,"language":51,"meta":290,"style":290},"python3 $SKILL_DIR\u002Fscripts\u002Faiq.py status \u003CJOB_ID>\npython3 $SKILL_DIR\u002Fscripts\u002Faiq.py report \u003CJOB_ID>\npython3 $SKILL_DIR\u002Fscripts\u002Faiq.py research_poll \u003CJOB_ID>\n",[653],{"type":57,"tag":79,"props":654,"children":655},{"__ignoreMap":290},[656,692,729],{"type":57,"tag":296,"props":657,"children":658},{"class":298,"line":299},[659,663,667,671,676,680,684,688],{"type":57,"tag":296,"props":660,"children":661},{"style":303},[662],{"type":63,"value":158},{"type":57,"tag":296,"props":664,"children":665},{"style":308},[666],{"type":63,"value":311},{"type":57,"tag":296,"props":668,"children":669},{"style":314},[670],{"type":63,"value":317},{"type":57,"tag":296,"props":672,"children":673},{"style":314},[674],{"type":63,"value":675}," status",{"type":57,"tag":296,"props":677,"children":678},{"style":503},[679],{"type":63,"value":612},{"type":57,"tag":296,"props":681,"children":682},{"style":314},[683],{"type":63,"value":617},{"type":57,"tag":296,"props":685,"children":686},{"style":308},[687],{"type":63,"value":622},{"type":57,"tag":296,"props":689,"children":690},{"style":503},[691],{"type":63,"value":627},{"type":57,"tag":296,"props":693,"children":695},{"class":298,"line":694},2,[696,700,704,708,713,717,721,725],{"type":57,"tag":296,"props":697,"children":698},{"style":303},[699],{"type":63,"value":158},{"type":57,"tag":296,"props":701,"children":702},{"style":308},[703],{"type":63,"value":311},{"type":57,"tag":296,"props":705,"children":706},{"style":314},[707],{"type":63,"value":317},{"type":57,"tag":296,"props":709,"children":710},{"style":314},[711],{"type":63,"value":712}," report",{"type":57,"tag":296,"props":714,"children":715},{"style":503},[716],{"type":63,"value":612},{"type":57,"tag":296,"props":718,"children":719},{"style":314},[720],{"type":63,"value":617},{"type":57,"tag":296,"props":722,"children":723},{"style":308},[724],{"type":63,"value":622},{"type":57,"tag":296,"props":726,"children":727},{"style":503},[728],{"type":63,"value":627},{"type":57,"tag":296,"props":730,"children":732},{"class":298,"line":731},3,[733,737,741,745,749,753,757,761],{"type":57,"tag":296,"props":734,"children":735},{"style":303},[736],{"type":63,"value":158},{"type":57,"tag":296,"props":738,"children":739},{"style":308},[740],{"type":63,"value":311},{"type":57,"tag":296,"props":742,"children":743},{"style":314},[744],{"type":63,"value":317},{"type":57,"tag":296,"props":746,"children":747},{"style":314},[748],{"type":63,"value":607},{"type":57,"tag":296,"props":750,"children":751},{"style":503},[752],{"type":63,"value":612},{"type":57,"tag":296,"props":754,"children":755},{"style":314},[756],{"type":63,"value":617},{"type":57,"tag":296,"props":758,"children":759},{"style":308},[760],{"type":63,"value":622},{"type":57,"tag":296,"props":762,"children":763},{"style":503},[764],{"type":63,"value":627},{"type":57,"tag":73,"props":766,"children":767},{},[768,769,775,777,783,785,791],{"type":63,"value":277},{"type":57,"tag":79,"props":770,"children":772},{"className":771},[],[773],{"type":63,"value":774},"status",{"type":63,"value":776}," to inspect job status and saved artifacts. Use ",{"type":57,"tag":79,"props":778,"children":780},{"className":779},[],[781],{"type":63,"value":782},"report",{"type":63,"value":784}," when the job has already finished and you only need\nthe final output. Use ",{"type":57,"tag":79,"props":786,"children":788},{"className":787},[],[789],{"type":63,"value":790},"research_poll",{"type":63,"value":792}," to keep waiting for completion.",{"type":57,"tag":73,"props":794,"children":795},{},[796,798,804,806,812],{"type":63,"value":797},"The final report may reference generated artifacts (charts, CSVs) as ",{"type":57,"tag":79,"props":799,"children":801},{"className":800},[],[802],{"type":63,"value":803},"artifact:\u002F\u002F\u003Cid>",{"type":63,"value":805}," links. To materialize them as local\nfiles, run ",{"type":57,"tag":79,"props":807,"children":809},{"className":808},[],[810],{"type":63,"value":811},"python3 $SKILL_DIR\u002Fscripts\u002Faiq.py artifacts \u003CJOB_ID> --download-dir .\u002Faiq-artifacts",{"type":63,"value":813},"; it downloads each artifact\nand prints the local path. Do not expect base64 image data in the report itself.",{"type":57,"tag":73,"props":815,"children":816},{},[817,819,825,827,833,835,841,843,848],{"type":63,"value":818},"For a self-contained, shareable report, run ",{"type":57,"tag":79,"props":820,"children":822},{"className":821},[],[823],{"type":63,"value":824},"python3 $SKILL_DIR\u002Fscripts\u002Faiq.py report \u003CJOB_ID> --out-dir .\u002Fmy-report",{"type":63,"value":826},". It writes ",{"type":57,"tag":79,"props":828,"children":830},{"className":829},[],[831],{"type":63,"value":832},"report.md",{"type":63,"value":834}," plus an\n",{"type":57,"tag":79,"props":836,"children":838},{"className":837},[],[839],{"type":63,"value":840},"artifacts\u002F",{"type":63,"value":842}," folder and rewrites each ",{"type":57,"tag":79,"props":844,"children":846},{"className":845},[],[847],{"type":63,"value":803},{"type":63,"value":849}," link to the matching local file, so the report renders (charts and\nall) in any markdown viewer without a running backend.",{"type":57,"tag":267,"props":851,"children":853},{"id":852},"step-5-present-the-report",[854],{"type":63,"value":855},"Step 5 - Present the report",{"type":57,"tag":73,"props":857,"children":858},{},[859,861,866,868,874,876,882,884,890],{"type":63,"value":860},"When ",{"type":57,"tag":79,"props":862,"children":864},{"className":863},[],[865],{"type":63,"value":790},{"type":63,"value":867}," completes successfully, fetch and present the full report. Keep citations and source URLs intact.\nIf the job status is ",{"type":57,"tag":79,"props":869,"children":871},{"className":870},[],[872],{"type":63,"value":873},"failed",{"type":63,"value":875},", ",{"type":57,"tag":79,"props":877,"children":879},{"className":878},[],[880],{"type":63,"value":881},"failure",{"type":63,"value":883},", or ",{"type":57,"tag":79,"props":885,"children":887},{"className":886},[],[888],{"type":63,"value":889},"cancelled",{"type":63,"value":891},", show the error from the status response and ask whether the\nuser wants to retry with a narrower query or different approach.",{"type":57,"tag":267,"props":893,"children":895},{"id":894},"step-6-follow-up-ask-about-edit-or-redo-a-report",[896],{"type":63,"value":897},"Step 6 - Follow up: ask about, edit, or redo a report",{"type":57,"tag":73,"props":899,"children":900},{},[901],{"type":63,"value":902},"After a report is presented, the user often wants to go deeper or adjust scope.\nReuse the existing backend flow — the same auth boundary, polling, and report\nretrieval from Steps 1-5 apply; there is no separate follow-up endpoint.",{"type":57,"tag":73,"props":904,"children":905},{},[906,912],{"type":57,"tag":907,"props":908,"children":909},"strong",{},[910],{"type":63,"value":911},"Ask",{"type":63,"value":913}," — a follow-up question about a report already in hand:",{"type":57,"tag":93,"props":915,"children":916},{},[917,922],{"type":57,"tag":97,"props":918,"children":919},{},[920],{"type":63,"value":921},"For a question answerable from the report you already have, answer directly\nfrom its content and citations; do not call the backend again.",{"type":57,"tag":97,"props":923,"children":924},{},[925,927,966,970,972,977,979,984],{"type":63,"value":926},"For a question that needs new investigation, send a fresh request that carries\nthe needed context from the prior question and report into the new query\ntext, then present the new result:",{"type":57,"tag":286,"props":928,"children":930},{"className":288,"code":929,"language":51,"meta":290,"style":290},"python3 $SKILL_DIR\u002Fscripts\u002Faiq.py chat \"\u003CFOLLOW_UP_QUESTION> (context: \u003CPRIOR_TOPIC>)\"\n",[931],{"type":57,"tag":79,"props":932,"children":933},{"__ignoreMap":290},[934],{"type":57,"tag":296,"props":935,"children":936},{"class":298,"line":299},[937,941,945,949,953,957,962],{"type":57,"tag":296,"props":938,"children":939},{"style":303},[940],{"type":63,"value":158},{"type":57,"tag":296,"props":942,"children":943},{"style":308},[944],{"type":63,"value":311},{"type":57,"tag":296,"props":946,"children":947},{"style":314},[948],{"type":63,"value":317},{"type":57,"tag":296,"props":950,"children":951},{"style":314},[952],{"type":63,"value":500},{"type":57,"tag":296,"props":954,"children":955},{"style":503},[956],{"type":63,"value":506},{"type":57,"tag":296,"props":958,"children":959},{"style":314},[960],{"type":63,"value":961},"\u003CFOLLOW_UP_QUESTION> (context: \u003CPRIOR_TOPIC>)",{"type":57,"tag":296,"props":963,"children":964},{"style":503},[965],{"type":63,"value":516},{"type":57,"tag":967,"props":968,"children":969},"br",{},[],{"type":63,"value":971},"If this returns a ",{"type":57,"tag":79,"props":973,"children":975},{"className":974},[],[976],{"type":63,"value":571},{"type":63,"value":978}," job ID, poll it with ",{"type":57,"tag":79,"props":980,"children":982},{"className":981},[],[983],{"type":63,"value":790},{"type":63,"value":985},"\nexactly as in Step 3.",{"type":57,"tag":73,"props":987,"children":988},{},[989,994],{"type":57,"tag":907,"props":990,"children":991},{},[992],{"type":63,"value":993},"Edit",{"type":63,"value":995}," — rewrite a report with cosmetic changes. This skill only has access\nto the data used to generate the initial report. No tools are available:",{"type":57,"tag":286,"props":997,"children":999},{"className":288,"code":998,"language":51,"meta":290,"style":290},"python3 $SKILL_DIR\u002Fscripts\u002Faiq.py report_edit \u003CJOB_ID> \"\u003CEDIT_INSTRUCTIONS>\"\n",[1000],{"type":57,"tag":79,"props":1001,"children":1002},{"__ignoreMap":290},[1003],{"type":57,"tag":296,"props":1004,"children":1005},{"class":298,"line":299},[1006,1010,1014,1018,1023,1027,1031,1035,1040,1044,1049],{"type":57,"tag":296,"props":1007,"children":1008},{"style":303},[1009],{"type":63,"value":158},{"type":57,"tag":296,"props":1011,"children":1012},{"style":308},[1013],{"type":63,"value":311},{"type":57,"tag":296,"props":1015,"children":1016},{"style":314},[1017],{"type":63,"value":317},{"type":57,"tag":296,"props":1019,"children":1020},{"style":314},[1021],{"type":63,"value":1022}," report_edit",{"type":57,"tag":296,"props":1024,"children":1025},{"style":503},[1026],{"type":63,"value":612},{"type":57,"tag":296,"props":1028,"children":1029},{"style":314},[1030],{"type":63,"value":617},{"type":57,"tag":296,"props":1032,"children":1033},{"style":308},[1034],{"type":63,"value":622},{"type":57,"tag":296,"props":1036,"children":1037},{"style":503},[1038],{"type":63,"value":1039},">",{"type":57,"tag":296,"props":1041,"children":1042},{"style":503},[1043],{"type":63,"value":506},{"type":57,"tag":296,"props":1045,"children":1046},{"style":314},[1047],{"type":63,"value":1048},"\u003CEDIT_INSTRUCTIONS>",{"type":57,"tag":296,"props":1050,"children":1051},{"style":503},[1052],{"type":63,"value":516},{"type":57,"tag":73,"props":1054,"children":1055},{},[1056,1061],{"type":57,"tag":907,"props":1057,"children":1058},{},[1059],{"type":63,"value":1060},"Redo",{"type":63,"value":1062}," — re-run research with adjusted scope (a narrower query, a corrected\nquestion, or a different depth):",{"type":57,"tag":286,"props":1064,"children":1066},{"className":288,"code":1065,"language":51,"meta":290,"style":290},"python3 $SKILL_DIR\u002Fscripts\u002Faiq.py research \"\u003CREFINED_QUERY>\" [agent_type]\n",[1067],{"type":57,"tag":79,"props":1068,"children":1069},{"__ignoreMap":290},[1070],{"type":57,"tag":296,"props":1071,"children":1072},{"class":298,"line":299},[1073,1077,1081,1085,1090,1094,1099,1104],{"type":57,"tag":296,"props":1074,"children":1075},{"style":303},[1076],{"type":63,"value":158},{"type":57,"tag":296,"props":1078,"children":1079},{"style":308},[1080],{"type":63,"value":311},{"type":57,"tag":296,"props":1082,"children":1083},{"style":314},[1084],{"type":63,"value":317},{"type":57,"tag":296,"props":1086,"children":1087},{"style":314},[1088],{"type":63,"value":1089}," research",{"type":57,"tag":296,"props":1091,"children":1092},{"style":503},[1093],{"type":63,"value":506},{"type":57,"tag":296,"props":1095,"children":1096},{"style":314},[1097],{"type":63,"value":1098},"\u003CREFINED_QUERY>",{"type":57,"tag":296,"props":1100,"children":1101},{"style":503},[1102],{"type":63,"value":1103},"\"",{"type":57,"tag":296,"props":1105,"children":1106},{"style":308},[1107],{"type":63,"value":1108}," [agent_type]\n",{"type":57,"tag":93,"props":1110,"children":1111},{},[1112,1140],{"type":57,"tag":97,"props":1113,"children":1114},{},[1115,1117,1123,1125,1131,1133,1138],{"type":63,"value":1116},"Choose ",{"type":57,"tag":79,"props":1118,"children":1120},{"className":1119},[],[1121],{"type":63,"value":1122},"agent_type",{"type":63,"value":1124}," to match the desired depth (for example a deep agent for a\nthorough pass, or ",{"type":57,"tag":79,"props":1126,"children":1128},{"className":1127},[],[1129],{"type":63,"value":1130},"shallow_researcher",{"type":63,"value":1132}," for a quick one); list options with\n",{"type":57,"tag":79,"props":1134,"children":1136},{"className":1135},[],[1137],{"type":63,"value":19},{"type":63,"value":1139}," if unsure.",{"type":57,"tag":97,"props":1141,"children":1142},{},[1143],{"type":63,"value":1144},"Treat a redo as a new job: state the target endpoint again before sending\n(Step 2), then poll and present as in Steps 3-5.",{"type":57,"tag":73,"props":1146,"children":1147},{},[1148],{"type":63,"value":1149},"Do not send credentials or secret values in follow-up query text, and keep\ncitations and source URLs intact in every follow-up answer.",{"type":57,"tag":66,"props":1151,"children":1153},{"id":1152},"version-compatibility",[1154],{"type":63,"value":1155},"Version Compatibility",{"type":57,"tag":73,"props":1157,"children":1158},{},[1159,1164],{"type":57,"tag":907,"props":1160,"children":1161},{},[1162],{"type":63,"value":1163},"IMPORTANT:",{"type":63,"value":1165}," This skill is designed for NVIDIA AI-Q Blueprint version 2.1.0.",{"type":57,"tag":73,"props":1167,"children":1168},{},[1169],{"type":63,"value":1170},"Semantic Versioning Compatibility Rules:",{"type":57,"tag":286,"props":1172,"children":1175},{"className":1173,"code":1174,"language":63,"meta":290},[350],"Skill version: X.Y.Z\nBlueprint or endpoint version: A.B.C\n\nCompatible IF:\n1. A == X (Major versions MUST match)\n2. B >= Y (Minor version must be equal or greater)\n3. C can be anything (Patch version does not affect compatibility)\n",[1176],{"type":57,"tag":79,"props":1177,"children":1178},{"__ignoreMap":290},[1179],{"type":63,"value":1174},{"type":57,"tag":73,"props":1181,"children":1182},{},[1183],{"type":63,"value":1184},"Examples:",{"type":57,"tag":93,"props":1186,"children":1187},{},[1188,1193,1198,1203,1208],{"type":57,"tag":97,"props":1189,"children":1190},{},[1191],{"type":63,"value":1192},"Skill version 2.1.0 is compatible with Blueprint version 2.1.0.",{"type":57,"tag":97,"props":1194,"children":1195},{},[1196],{"type":63,"value":1197},"Skill version 2.1.0 is compatible with Blueprint version 2.2.0.",{"type":57,"tag":97,"props":1199,"children":1200},{},[1201],{"type":63,"value":1202},"Skill version 2.1.0 is compatible with Blueprint version 2.1.5.",{"type":57,"tag":97,"props":1204,"children":1205},{},[1206],{"type":63,"value":1207},"Skill version 2.1.0 is not compatible with Blueprint version 3.0.0.",{"type":57,"tag":97,"props":1209,"children":1210},{},[1211],{"type":63,"value":1212},"Skill version 2.1.0 is not compatible with Blueprint version 2.0.0.",{"type":57,"tag":73,"props":1214,"children":1215},{},[1216],{"type":63,"value":1217},"If your Blueprint version is not compatible:",{"type":57,"tag":209,"props":1219,"children":1220},{},[1221,1226,1231],{"type":57,"tag":97,"props":1222,"children":1223},{},[1224],{"type":63,"value":1225},"Check for an updated skill version matching your Blueprint version.",{"type":57,"tag":97,"props":1227,"children":1228},{},[1229],{"type":63,"value":1230},"Use a Blueprint version compatible with this skill.",{"type":57,"tag":97,"props":1232,"children":1233},{},[1234],{"type":63,"value":1235},"Proceed with caution only when the user accepts the compatibility risk; API routes or response shapes may have\nchanged.",{"type":57,"tag":66,"props":1237,"children":1239},{"id":1238},"available-scripts",[1240],{"type":63,"value":1241},"Available Scripts",{"type":57,"tag":1243,"props":1244,"children":1245},"table",{},[1246,1269],{"type":57,"tag":1247,"props":1248,"children":1249},"thead",{},[1250],{"type":57,"tag":1251,"props":1252,"children":1253},"tr",{},[1254,1260,1264],{"type":57,"tag":1255,"props":1256,"children":1257},"th",{},[1258],{"type":63,"value":1259},"Script",{"type":57,"tag":1255,"props":1261,"children":1262},{},[1263],{"type":63,"value":71},{"type":57,"tag":1255,"props":1265,"children":1266},{},[1267],{"type":63,"value":1268},"Arguments",{"type":57,"tag":1270,"props":1271,"children":1272},"tbody",{},[1273,1296,1329,1350,1376,1401,1427,1460,1485,1533,1559,1593,1618],{"type":57,"tag":1251,"props":1274,"children":1275},{},[1276,1286,1291],{"type":57,"tag":1277,"props":1278,"children":1279},"td",{},[1280],{"type":57,"tag":79,"props":1281,"children":1283},{"className":1282},[],[1284],{"type":63,"value":1285},"scripts\u002Faiq.py health",{"type":57,"tag":1277,"props":1287,"children":1288},{},[1289],{"type":63,"value":1290},"Check whether the configured server responds",{"type":57,"tag":1277,"props":1292,"children":1293},{},[1294],{"type":63,"value":1295},"none",{"type":57,"tag":1251,"props":1297,"children":1298},{},[1299,1308,1320],{"type":57,"tag":1277,"props":1300,"children":1301},{},[1302],{"type":57,"tag":79,"props":1303,"children":1305},{"className":1304},[],[1306],{"type":63,"value":1307},"scripts\u002Faiq.py chat",{"type":57,"tag":1277,"props":1309,"children":1310},{},[1311,1313,1318],{"type":63,"value":1312},"POST ",{"type":57,"tag":79,"props":1314,"children":1316},{"className":1315},[],[1317],{"type":63,"value":427},{"type":63,"value":1319},"; may return inline output or a deep-research job ID",{"type":57,"tag":1277,"props":1321,"children":1322},{},[1323],{"type":57,"tag":79,"props":1324,"children":1326},{"className":1325},[],[1327],{"type":63,"value":1328},"\u003Cquery>",{"type":57,"tag":1251,"props":1330,"children":1331},{},[1332,1341,1346],{"type":57,"tag":1277,"props":1333,"children":1334},{},[1335],{"type":57,"tag":79,"props":1336,"children":1338},{"className":1337},[],[1339],{"type":63,"value":1340},"scripts\u002Faiq.py agents",{"type":57,"tag":1277,"props":1342,"children":1343},{},[1344],{"type":63,"value":1345},"List available async agent types",{"type":57,"tag":1277,"props":1347,"children":1348},{},[1349],{"type":63,"value":1295},{"type":57,"tag":1251,"props":1351,"children":1352},{},[1353,1362,1367],{"type":57,"tag":1277,"props":1354,"children":1355},{},[1356],{"type":57,"tag":79,"props":1357,"children":1359},{"className":1358},[],[1360],{"type":63,"value":1361},"scripts\u002Faiq.py submit",{"type":57,"tag":1277,"props":1363,"children":1364},{},[1365],{"type":63,"value":1366},"Submit an explicit async job",{"type":57,"tag":1277,"props":1368,"children":1369},{},[1370],{"type":57,"tag":79,"props":1371,"children":1373},{"className":1372},[],[1374],{"type":63,"value":1375},"\u003Cquery> [agent_type]",{"type":57,"tag":1251,"props":1377,"children":1378},{},[1379,1388,1393],{"type":57,"tag":1277,"props":1380,"children":1381},{},[1382],{"type":57,"tag":79,"props":1383,"children":1385},{"className":1384},[],[1386],{"type":63,"value":1387},"scripts\u002Faiq.py research",{"type":57,"tag":1277,"props":1389,"children":1390},{},[1391],{"type":63,"value":1392},"Submit an async job, poll, and print the final report JSON",{"type":57,"tag":1277,"props":1394,"children":1395},{},[1396],{"type":57,"tag":79,"props":1397,"children":1399},{"className":1398},[],[1400],{"type":63,"value":1375},{"type":57,"tag":1251,"props":1402,"children":1403},{},[1404,1413,1418],{"type":57,"tag":1277,"props":1405,"children":1406},{},[1407],{"type":57,"tag":79,"props":1408,"children":1410},{"className":1409},[],[1411],{"type":63,"value":1412},"scripts\u002Faiq.py research_poll",{"type":57,"tag":1277,"props":1414,"children":1415},{},[1416],{"type":63,"value":1417},"Resume polling an existing async job",{"type":57,"tag":1277,"props":1419,"children":1420},{},[1421],{"type":57,"tag":79,"props":1422,"children":1424},{"className":1423},[],[1425],{"type":63,"value":1426},"\u003Cjob_id>",{"type":57,"tag":1251,"props":1428,"children":1429},{},[1430,1439,1452],{"type":57,"tag":1277,"props":1431,"children":1432},{},[1433],{"type":57,"tag":79,"props":1434,"children":1436},{"className":1435},[],[1437],{"type":63,"value":1438},"scripts\u002Faiq.py status",{"type":57,"tag":1277,"props":1440,"children":1441},{},[1442,1444,1450],{"type":63,"value":1443},"Fetch job status plus ",{"type":57,"tag":79,"props":1445,"children":1447},{"className":1446},[],[1448],{"type":63,"value":1449},"\u002Fstate",{"type":63,"value":1451}," artifacts",{"type":57,"tag":1277,"props":1453,"children":1454},{},[1455],{"type":57,"tag":79,"props":1456,"children":1458},{"className":1457},[],[1459],{"type":63,"value":1426},{"type":57,"tag":1251,"props":1461,"children":1462},{},[1463,1472,1477],{"type":57,"tag":1277,"props":1464,"children":1465},{},[1466],{"type":57,"tag":79,"props":1467,"children":1469},{"className":1468},[],[1470],{"type":63,"value":1471},"scripts\u002Faiq.py state",{"type":57,"tag":1277,"props":1473,"children":1474},{},[1475],{"type":63,"value":1476},"Fetch event-store artifacts only",{"type":57,"tag":1277,"props":1478,"children":1479},{},[1480],{"type":57,"tag":79,"props":1481,"children":1483},{"className":1482},[],[1484],{"type":63,"value":1426},{"type":57,"tag":1251,"props":1486,"children":1487},{},[1488,1497,1524],{"type":57,"tag":1277,"props":1489,"children":1490},{},[1491],{"type":57,"tag":79,"props":1492,"children":1494},{"className":1493},[],[1495],{"type":63,"value":1496},"scripts\u002Faiq.py report",{"type":57,"tag":1277,"props":1498,"children":1499},{},[1500,1502,1508,1510,1515,1517,1522],{"type":63,"value":1501},"Fetch the final report; with ",{"type":57,"tag":79,"props":1503,"children":1505},{"className":1504},[],[1506],{"type":63,"value":1507},"--out-dir DIR",{"type":63,"value":1509},", export a portable ",{"type":57,"tag":79,"props":1511,"children":1513},{"className":1512},[],[1514],{"type":63,"value":832},{"type":63,"value":1516}," + ",{"type":57,"tag":79,"props":1518,"children":1520},{"className":1519},[],[1521],{"type":63,"value":840},{"type":63,"value":1523}," folder with links rewritten to local files",{"type":57,"tag":1277,"props":1525,"children":1526},{},[1527],{"type":57,"tag":79,"props":1528,"children":1530},{"className":1529},[],[1531],{"type":63,"value":1532},"\u003Cjob_id> [--out-dir DIR]",{"type":57,"tag":1251,"props":1534,"children":1535},{},[1536,1545,1550],{"type":57,"tag":1277,"props":1537,"children":1538},{},[1539],{"type":57,"tag":79,"props":1540,"children":1542},{"className":1541},[],[1543],{"type":63,"value":1544},"scripts\u002Faiq.py report_edit",{"type":57,"tag":1277,"props":1546,"children":1547},{},[1548],{"type":63,"value":1549},"Edit a completed report with cosmetic changes",{"type":57,"tag":1277,"props":1551,"children":1552},{},[1553],{"type":57,"tag":79,"props":1554,"children":1556},{"className":1555},[],[1557],{"type":63,"value":1558},"\u003Cjob_id> \u003Cedit_instructions>",{"type":57,"tag":1251,"props":1560,"children":1561},{},[1562,1571,1584],{"type":57,"tag":1277,"props":1563,"children":1564},{},[1565],{"type":57,"tag":79,"props":1566,"children":1568},{"className":1567},[],[1569],{"type":63,"value":1570},"scripts\u002Faiq.py artifacts",{"type":57,"tag":1277,"props":1572,"children":1573},{},[1574,1576,1582],{"type":63,"value":1575},"List durable artifacts; with ",{"type":57,"tag":79,"props":1577,"children":1579},{"className":1578},[],[1580],{"type":63,"value":1581},"--download-dir DIR",{"type":63,"value":1583},", download them and print local paths",{"type":57,"tag":1277,"props":1585,"children":1586},{},[1587],{"type":57,"tag":79,"props":1588,"children":1590},{"className":1589},[],[1591],{"type":63,"value":1592},"\u003Cjob_id> [--download-dir DIR]",{"type":57,"tag":1251,"props":1594,"children":1595},{},[1596,1605,1610],{"type":57,"tag":1277,"props":1597,"children":1598},{},[1599],{"type":57,"tag":79,"props":1600,"children":1602},{"className":1601},[],[1603],{"type":63,"value":1604},"scripts\u002Faiq.py stream",{"type":57,"tag":1277,"props":1606,"children":1607},{},[1608],{"type":63,"value":1609},"Stream SSE events from a job",{"type":57,"tag":1277,"props":1611,"children":1612},{},[1613],{"type":57,"tag":79,"props":1614,"children":1616},{"className":1615},[],[1617],{"type":63,"value":1426},{"type":57,"tag":1251,"props":1619,"children":1620},{},[1621,1630,1635],{"type":57,"tag":1277,"props":1622,"children":1623},{},[1624],{"type":57,"tag":79,"props":1625,"children":1627},{"className":1626},[],[1628],{"type":63,"value":1629},"scripts\u002Faiq.py cancel",{"type":57,"tag":1277,"props":1631,"children":1632},{},[1633],{"type":63,"value":1634},"Cancel a running job",{"type":57,"tag":1277,"props":1636,"children":1637},{},[1638],{"type":57,"tag":79,"props":1639,"children":1641},{"className":1640},[],[1642],{"type":63,"value":1426},{"type":57,"tag":73,"props":1644,"children":1645},{},[1646,1648,1654,1656,1661,1663,1669],{"type":63,"value":1647},"When the host supports a ",{"type":57,"tag":79,"props":1649,"children":1651},{"className":1650},[],[1652],{"type":63,"value":1653},"run_script()",{"type":63,"value":1655}," helper, call it with ",{"type":57,"tag":79,"props":1657,"children":1659},{"className":1658},[],[1660],{"type":63,"value":84},{"type":63,"value":1662}," and the arguments above. Otherwise, run\nthe equivalent shell command, such as ",{"type":57,"tag":79,"props":1664,"children":1666},{"className":1665},[],[1667],{"type":63,"value":1668},"python3 $SKILL_DIR\u002Fscripts\u002Faiq.py health",{"type":63,"value":86},{"type":57,"tag":66,"props":1671,"children":1673},{"id":1672},"environment-variables",[1674],{"type":63,"value":1675},"Environment Variables",{"type":57,"tag":1243,"props":1677,"children":1678},{},[1679,1706],{"type":57,"tag":1247,"props":1680,"children":1681},{},[1682],{"type":57,"tag":1251,"props":1683,"children":1684},{},[1685,1690,1696,1701],{"type":57,"tag":1255,"props":1686,"children":1687},{},[1688],{"type":63,"value":1689},"Variable",{"type":57,"tag":1255,"props":1691,"children":1693},{"align":1692},"right",[1694],{"type":63,"value":1695},"Required",{"type":57,"tag":1255,"props":1697,"children":1698},{},[1699],{"type":63,"value":1700},"Default",{"type":57,"tag":1255,"props":1702,"children":1703},{},[1704],{"type":63,"value":1705},"Description",{"type":57,"tag":1270,"props":1707,"children":1708},{},[1709],{"type":57,"tag":1251,"props":1710,"children":1711},{},[1712,1720,1725,1733],{"type":57,"tag":1277,"props":1713,"children":1714},{},[1715],{"type":57,"tag":79,"props":1716,"children":1718},{"className":1717},[],[1719],{"type":63,"value":35},{"type":57,"tag":1277,"props":1721,"children":1722},{"align":1692},[1723],{"type":63,"value":1724},"No",{"type":57,"tag":1277,"props":1726,"children":1727},{},[1728],{"type":57,"tag":79,"props":1729,"children":1731},{"className":1730},[],[1732],{"type":63,"value":37},{"type":57,"tag":1277,"props":1734,"children":1735},{},[1736],{"type":63,"value":1737},"Local or self-hosted AI-Q server base URL",{"type":57,"tag":66,"props":1739,"children":1741},{"id":1740},"security-best-practices",[1742],{"type":63,"value":1743},"Security Best Practices",{"type":57,"tag":93,"props":1745,"children":1746},{},[1747,1758,1763,1775,1780],{"type":57,"tag":97,"props":1748,"children":1749},{},[1750,1752,1757],{"type":63,"value":1751},"Do not put API keys, bearer tokens, cookies, or basic-auth credentials in ",{"type":57,"tag":79,"props":1753,"children":1755},{"className":1754},[],[1756],{"type":63,"value":35},{"type":63,"value":86},{"type":57,"tag":97,"props":1759,"children":1760},{},[1761],{"type":63,"value":1762},"Store backend credentials in the AI-Q deployment environment, not in this skill or command examples.",{"type":57,"tag":97,"props":1764,"children":1765},{},[1766,1768,1773],{"type":63,"value":1767},"User query text is transmitted to the configured ",{"type":57,"tag":79,"props":1769,"children":1771},{"className":1770},[],[1772],{"type":63,"value":35},{"type":63,"value":1774},". Confirm the endpoint is trusted before sending\nsensitive or confidential information.",{"type":57,"tag":97,"props":1776,"children":1777},{},[1778],{"type":63,"value":1779},"Treat returned reports as potentially sensitive if the backend uses private data sources.",{"type":57,"tag":97,"props":1781,"children":1782},{},[1783],{"type":63,"value":1784},"Do not truncate citations or source URLs from returned reports.",{"type":57,"tag":66,"props":1786,"children":1788},{"id":1787},"limitations",[1789],{"type":63,"value":1790},"Limitations",{"type":57,"tag":93,"props":1792,"children":1793},{},[1794,1799,1804,1816],{"type":57,"tag":97,"props":1795,"children":1796},{},[1797],{"type":63,"value":1798},"This skill requires a running AI-Q backend; it does not deploy one.",{"type":57,"tag":97,"props":1800,"children":1801},{},[1802],{"type":63,"value":1803},"The public helper does not manage authentication tokens or cookies.",{"type":57,"tag":97,"props":1805,"children":1806},{},[1807,1809,1814],{"type":63,"value":1808},"Remote ",{"type":57,"tag":79,"props":1810,"children":1812},{"className":1811},[],[1813],{"type":63,"value":35},{"type":63,"value":1815}," endpoints may log prompts, responses, and metadata.",{"type":57,"tag":97,"props":1817,"children":1818},{},[1819],{"type":63,"value":1820},"If the backend returns HTTP 500 or lacks async agents, report the failure instead of fabricating a research answer.",{"type":57,"tag":66,"props":1822,"children":1824},{"id":1823},"examples",[1825],{"type":63,"value":1826},"Examples",{"type":57,"tag":267,"props":1828,"children":1830},{"id":1829},"example-1-run-a-routed-chat-or-research-request",[1831],{"type":63,"value":1832},"Example 1: Run a routed chat or research request",{"type":57,"tag":286,"props":1834,"children":1836},{"className":288,"code":1835,"language":51,"meta":290,"style":290},"python3 $SKILL_DIR\u002Fscripts\u002Faiq.py health\npython3 $SKILL_DIR\u002Fscripts\u002Faiq.py chat \"Compare local AIQ deep research with a standard web search workflow\"\n",[1837],{"type":57,"tag":79,"props":1838,"children":1839},{"__ignoreMap":290},[1840,1859],{"type":57,"tag":296,"props":1841,"children":1842},{"class":298,"line":299},[1843,1847,1851,1855],{"type":57,"tag":296,"props":1844,"children":1845},{"style":303},[1846],{"type":63,"value":158},{"type":57,"tag":296,"props":1848,"children":1849},{"style":308},[1850],{"type":63,"value":311},{"type":57,"tag":296,"props":1852,"children":1853},{"style":314},[1854],{"type":63,"value":317},{"type":57,"tag":296,"props":1856,"children":1857},{"style":314},[1858],{"type":63,"value":322},{"type":57,"tag":296,"props":1860,"children":1861},{"class":298,"line":694},[1862,1866,1870,1874,1878,1882,1887],{"type":57,"tag":296,"props":1863,"children":1864},{"style":303},[1865],{"type":63,"value":158},{"type":57,"tag":296,"props":1867,"children":1868},{"style":308},[1869],{"type":63,"value":311},{"type":57,"tag":296,"props":1871,"children":1872},{"style":314},[1873],{"type":63,"value":317},{"type":57,"tag":296,"props":1875,"children":1876},{"style":314},[1877],{"type":63,"value":500},{"type":57,"tag":296,"props":1879,"children":1880},{"style":503},[1881],{"type":63,"value":506},{"type":57,"tag":296,"props":1883,"children":1884},{"style":314},[1885],{"type":63,"value":1886},"Compare local AIQ deep research with a standard web search workflow",{"type":57,"tag":296,"props":1888,"children":1889},{"style":503},[1890],{"type":63,"value":516},{"type":57,"tag":73,"props":1892,"children":1893},{},[1894],{"type":63,"value":521},{"type":57,"tag":286,"props":1896,"children":1899},{"className":1897,"code":1898,"language":63,"meta":290},[350],"\u003Chealth JSON from AI-Q>\n\u003CJSON chat response or {\"status\": \"deep_research_running\", \"job_id\": \"\u003CJOB_ID>\"}>\n",[1900],{"type":57,"tag":79,"props":1901,"children":1902},{"__ignoreMap":290},[1903],{"type":63,"value":1898},{"type":57,"tag":73,"props":1905,"children":1906},{},[1907,1909,1914],{"type":63,"value":1908},"If AI-Q returns a job ID, continue with ",{"type":57,"tag":79,"props":1910,"children":1912},{"className":1911},[],[1913],{"type":63,"value":790},{"type":63,"value":86},{"type":57,"tag":267,"props":1916,"children":1918},{"id":1917},"example-2-resume-an-existing-job",[1919],{"type":63,"value":1920},"Example 2: Resume an existing job",{"type":57,"tag":286,"props":1922,"children":1924},{"className":288,"code":1923,"language":51,"meta":290,"style":290},"python3 $SKILL_DIR\u002Fscripts\u002Faiq.py status \u003CJOB_ID>\npython3 $SKILL_DIR\u002Fscripts\u002Faiq.py research_poll \u003CJOB_ID>\n",[1925],{"type":57,"tag":79,"props":1926,"children":1927},{"__ignoreMap":290},[1928,1963],{"type":57,"tag":296,"props":1929,"children":1930},{"class":298,"line":299},[1931,1935,1939,1943,1947,1951,1955,1959],{"type":57,"tag":296,"props":1932,"children":1933},{"style":303},[1934],{"type":63,"value":158},{"type":57,"tag":296,"props":1936,"children":1937},{"style":308},[1938],{"type":63,"value":311},{"type":57,"tag":296,"props":1940,"children":1941},{"style":314},[1942],{"type":63,"value":317},{"type":57,"tag":296,"props":1944,"children":1945},{"style":314},[1946],{"type":63,"value":675},{"type":57,"tag":296,"props":1948,"children":1949},{"style":503},[1950],{"type":63,"value":612},{"type":57,"tag":296,"props":1952,"children":1953},{"style":314},[1954],{"type":63,"value":617},{"type":57,"tag":296,"props":1956,"children":1957},{"style":308},[1958],{"type":63,"value":622},{"type":57,"tag":296,"props":1960,"children":1961},{"style":503},[1962],{"type":63,"value":627},{"type":57,"tag":296,"props":1964,"children":1965},{"class":298,"line":694},[1966,1970,1974,1978,1982,1986,1990,1994],{"type":57,"tag":296,"props":1967,"children":1968},{"style":303},[1969],{"type":63,"value":158},{"type":57,"tag":296,"props":1971,"children":1972},{"style":308},[1973],{"type":63,"value":311},{"type":57,"tag":296,"props":1975,"children":1976},{"style":314},[1977],{"type":63,"value":317},{"type":57,"tag":296,"props":1979,"children":1980},{"style":314},[1981],{"type":63,"value":607},{"type":57,"tag":296,"props":1983,"children":1984},{"style":503},[1985],{"type":63,"value":612},{"type":57,"tag":296,"props":1987,"children":1988},{"style":314},[1989],{"type":63,"value":617},{"type":57,"tag":296,"props":1991,"children":1992},{"style":308},[1993],{"type":63,"value":622},{"type":57,"tag":296,"props":1995,"children":1996},{"style":503},[1997],{"type":63,"value":627},{"type":57,"tag":73,"props":1999,"children":2000},{},[2001,2003,2009],{"type":63,"value":2002},"Replace ",{"type":57,"tag":79,"props":2004,"children":2006},{"className":2005},[],[2007],{"type":63,"value":2008},"\u003CJOB_ID>",{"type":63,"value":2010}," with the UUID returned by AI-Q. Expected output: status JSON followed by the report JSON when the\njob completes. If the job failed, show the returned status and do not retry automatically.",{"type":57,"tag":267,"props":2012,"children":2014},{"id":2013},"example-3-ask-a-follow-up-or-redo-with-a-refined-query",[2015],{"type":63,"value":2016},"Example 3: Ask a follow-up or redo with a refined query",{"type":57,"tag":286,"props":2018,"children":2020},{"className":288,"code":2019,"language":51,"meta":290,"style":290},"# Ask: a follow-up that needs new investigation, carrying prior context.\npython3 $SKILL_DIR\u002Fscripts\u002Faiq.py chat \"How does that compare on cost? (context: local AIQ deep research vs web search)\"\n\n# Redo: re-run research with a narrower query and explicit depth.\npython3 $SKILL_DIR\u002Fscripts\u002Faiq.py research \"AIQ deep research cost on a single workstation\" shallow_researcher\n",[2021],{"type":57,"tag":79,"props":2022,"children":2023},{"__ignoreMap":290},[2024,2033,2065,2074,2083],{"type":57,"tag":296,"props":2025,"children":2026},{"class":298,"line":299},[2027],{"type":57,"tag":296,"props":2028,"children":2030},{"style":2029},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[2031],{"type":63,"value":2032},"# Ask: a follow-up that needs new investigation, carrying prior context.\n",{"type":57,"tag":296,"props":2034,"children":2035},{"class":298,"line":694},[2036,2040,2044,2048,2052,2056,2061],{"type":57,"tag":296,"props":2037,"children":2038},{"style":303},[2039],{"type":63,"value":158},{"type":57,"tag":296,"props":2041,"children":2042},{"style":308},[2043],{"type":63,"value":311},{"type":57,"tag":296,"props":2045,"children":2046},{"style":314},[2047],{"type":63,"value":317},{"type":57,"tag":296,"props":2049,"children":2050},{"style":314},[2051],{"type":63,"value":500},{"type":57,"tag":296,"props":2053,"children":2054},{"style":503},[2055],{"type":63,"value":506},{"type":57,"tag":296,"props":2057,"children":2058},{"style":314},[2059],{"type":63,"value":2060},"How does that compare on cost? (context: local AIQ deep research vs web search)",{"type":57,"tag":296,"props":2062,"children":2063},{"style":503},[2064],{"type":63,"value":516},{"type":57,"tag":296,"props":2066,"children":2067},{"class":298,"line":731},[2068],{"type":57,"tag":296,"props":2069,"children":2071},{"emptyLinePlaceholder":2070},true,[2072],{"type":63,"value":2073},"\n",{"type":57,"tag":296,"props":2075,"children":2077},{"class":298,"line":2076},4,[2078],{"type":57,"tag":296,"props":2079,"children":2080},{"style":2029},[2081],{"type":63,"value":2082},"# Redo: re-run research with a narrower query and explicit depth.\n",{"type":57,"tag":296,"props":2084,"children":2086},{"class":298,"line":2085},5,[2087,2091,2095,2099,2103,2107,2112,2116],{"type":57,"tag":296,"props":2088,"children":2089},{"style":303},[2090],{"type":63,"value":158},{"type":57,"tag":296,"props":2092,"children":2093},{"style":308},[2094],{"type":63,"value":311},{"type":57,"tag":296,"props":2096,"children":2097},{"style":314},[2098],{"type":63,"value":317},{"type":57,"tag":296,"props":2100,"children":2101},{"style":314},[2102],{"type":63,"value":1089},{"type":57,"tag":296,"props":2104,"children":2105},{"style":503},[2106],{"type":63,"value":506},{"type":57,"tag":296,"props":2108,"children":2109},{"style":314},[2110],{"type":63,"value":2111},"AIQ deep research cost on a single workstation",{"type":57,"tag":296,"props":2113,"children":2114},{"style":503},[2115],{"type":63,"value":1103},{"type":57,"tag":296,"props":2117,"children":2118},{"style":314},[2119],{"type":63,"value":2120}," shallow_researcher\n",{"type":57,"tag":73,"props":2122,"children":2123},{},[2124,2126,2131,2133,2138],{"type":63,"value":2125},"Expected output: a routed chat response or a new ",{"type":57,"tag":79,"props":2127,"children":2129},{"className":2128},[],[2130],{"type":63,"value":571},{"type":63,"value":2132}," job ID\nto poll with ",{"type":57,"tag":79,"props":2134,"children":2136},{"className":2135},[],[2137],{"type":63,"value":790},{"type":63,"value":2139},". Present the follow-up answer with citations and\nsource URLs intact.",{"type":57,"tag":66,"props":2141,"children":2143},{"id":2142},"references",[2144],{"type":63,"value":2145},"References",{"type":57,"tag":1243,"props":2147,"children":2148},{},[2149,2165],{"type":57,"tag":1247,"props":2150,"children":2151},{},[2152],{"type":57,"tag":1251,"props":2153,"children":2154},{},[2155,2160],{"type":57,"tag":1255,"props":2156,"children":2157},{},[2158],{"type":63,"value":2159},"Topic",{"type":57,"tag":1255,"props":2161,"children":2162},{},[2163],{"type":63,"value":2164},"Documentation",{"type":57,"tag":1270,"props":2166,"children":2167},{},[2168,2184],{"type":57,"tag":1251,"props":2169,"children":2170},{},[2171,2176],{"type":57,"tag":1277,"props":2172,"children":2173},{},[2174],{"type":63,"value":2175},"Helper script",{"type":57,"tag":1277,"props":2177,"children":2178},{},[2179],{"type":57,"tag":79,"props":2180,"children":2182},{"className":2181},[],[2183],{"type":63,"value":84},{"type":57,"tag":1251,"props":2185,"children":2186},{},[2187,2192],{"type":57,"tag":1277,"props":2188,"children":2189},{},[2190],{"type":63,"value":2191},"Deployment and backend validation",{"type":57,"tag":1277,"props":2193,"children":2194},{},[2195],{"type":57,"tag":79,"props":2196,"children":2198},{"className":2197},[],[2199],{"type":63,"value":2200},"..\u002Faiq-deploy\u002FSKILL.md",{"type":57,"tag":66,"props":2202,"children":2204},{"id":2203},"common-issues",[2205],{"type":63,"value":2206},"Common Issues",{"type":57,"tag":267,"props":2208,"children":2210},{"id":2209},"issue-no-backend-is-reachable",[2211],{"type":63,"value":2212},"Issue: No backend is reachable",{"type":57,"tag":73,"props":2214,"children":2215},{},[2216],{"type":57,"tag":907,"props":2217,"children":2218},{},[2219],{"type":63,"value":2220},"Symptoms:",{"type":57,"tag":93,"props":2222,"children":2223},{},[2224,2234],{"type":57,"tag":97,"props":2225,"children":2226},{},[2227,2232],{"type":57,"tag":79,"props":2228,"children":2230},{"className":2229},[],[2231],{"type":63,"value":227},{"type":63,"value":2233}," fails with connection refused.",{"type":57,"tag":97,"props":2235,"children":2236},{},[2237,2239,2244],{"type":63,"value":2238},"The default ",{"type":57,"tag":79,"props":2240,"children":2242},{"className":2241},[],[2243],{"type":63,"value":37},{"type":63,"value":2245}," URL does not respond.",{"type":57,"tag":73,"props":2247,"children":2248},{},[2249],{"type":57,"tag":907,"props":2250,"children":2251},{},[2252],{"type":63,"value":2253},"Causes:",{"type":57,"tag":93,"props":2255,"children":2256},{},[2257,2262,2267],{"type":57,"tag":97,"props":2258,"children":2259},{},[2260],{"type":63,"value":2261},"AI-Q is not running.",{"type":57,"tag":97,"props":2263,"children":2264},{},[2265],{"type":63,"value":2266},"AI-Q is running on a different host or port.",{"type":57,"tag":97,"props":2268,"children":2269},{},[2270],{"type":63,"value":2271},"A local firewall or network setting blocks the connection.",{"type":57,"tag":73,"props":2273,"children":2274},{},[2275],{"type":57,"tag":907,"props":2276,"children":2277},{},[2278],{"type":63,"value":2279},"Solutions:",{"type":57,"tag":209,"props":2281,"children":2282},{},[2283,2288,2351],{"type":57,"tag":97,"props":2284,"children":2285},{},[2286],{"type":63,"value":2287},"Ask whether the user has an existing AI-Q backend URL.",{"type":57,"tag":97,"props":2289,"children":2290},{},[2291,2293],{"type":63,"value":2292},"If they provide one, set it and rerun health:\n",{"type":57,"tag":286,"props":2294,"children":2296},{"className":288,"code":2295,"language":51,"meta":290,"style":290},"export AIQ_SERVER_URL=\"http:\u002F\u002Flocalhost:\u003CPORT>\"\npython3 $SKILL_DIR\u002Fscripts\u002Faiq.py health\n",[2297],{"type":57,"tag":79,"props":2298,"children":2299},{"__ignoreMap":290},[2300,2332],{"type":57,"tag":296,"props":2301,"children":2302},{"class":298,"line":299},[2303,2309,2314,2319,2323,2328],{"type":57,"tag":296,"props":2304,"children":2306},{"style":2305},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[2307],{"type":63,"value":2308},"export",{"type":57,"tag":296,"props":2310,"children":2311},{"style":308},[2312],{"type":63,"value":2313}," AIQ_SERVER_URL",{"type":57,"tag":296,"props":2315,"children":2316},{"style":503},[2317],{"type":63,"value":2318},"=",{"type":57,"tag":296,"props":2320,"children":2321},{"style":503},[2322],{"type":63,"value":1103},{"type":57,"tag":296,"props":2324,"children":2325},{"style":314},[2326],{"type":63,"value":2327},"http:\u002F\u002Flocalhost:\u003CPORT>",{"type":57,"tag":296,"props":2329,"children":2330},{"style":503},[2331],{"type":63,"value":516},{"type":57,"tag":296,"props":2333,"children":2334},{"class":298,"line":694},[2335,2339,2343,2347],{"type":57,"tag":296,"props":2336,"children":2337},{"style":303},[2338],{"type":63,"value":158},{"type":57,"tag":296,"props":2340,"children":2341},{"style":308},[2342],{"type":63,"value":311},{"type":57,"tag":296,"props":2344,"children":2345},{"style":314},[2346],{"type":63,"value":317},{"type":57,"tag":296,"props":2348,"children":2349},{"style":314},[2350],{"type":63,"value":322},{"type":57,"tag":97,"props":2352,"children":2353},{},[2354,2356,2361],{"type":63,"value":2355},"If they want a local backend, hand off to ",{"type":57,"tag":79,"props":2357,"children":2359},{"className":2358},[],[2360],{"type":63,"value":132},{"type":63,"value":389},{"type":57,"tag":267,"props":2363,"children":2365},{"id":2364},"issue-backend-requires-authentication",[2366],{"type":63,"value":2367},"Issue: Backend requires authentication",{"type":57,"tag":73,"props":2369,"children":2370},{},[2371],{"type":57,"tag":907,"props":2372,"children":2373},{},[2374],{"type":63,"value":2220},{"type":57,"tag":93,"props":2376,"children":2377},{},[2378,2383],{"type":57,"tag":97,"props":2379,"children":2380},{},[2381],{"type":63,"value":2382},"Requests fail with HTTP 401 or HTTP 403.",{"type":57,"tag":97,"props":2384,"children":2385},{},[2386,2388,2393],{"type":63,"value":2387},"The backend is reachable but rejects ",{"type":57,"tag":79,"props":2389,"children":2391},{"className":2390},[],[2392],{"type":63,"value":427},{"type":63,"value":2394}," or async job calls.",{"type":57,"tag":73,"props":2396,"children":2397},{},[2398],{"type":57,"tag":907,"props":2399,"children":2400},{},[2401],{"type":63,"value":2253},{"type":57,"tag":93,"props":2403,"children":2404},{},[2405,2410],{"type":57,"tag":97,"props":2406,"children":2407},{},[2408],{"type":63,"value":2409},"The backend was deployed with authentication enabled.",{"type":57,"tag":97,"props":2411,"children":2412},{},[2413],{"type":63,"value":2414},"The public helper does not attach user tokens or cookies.",{"type":57,"tag":73,"props":2416,"children":2417},{},[2418],{"type":57,"tag":907,"props":2419,"children":2420},{},[2421],{"type":63,"value":2279},{"type":57,"tag":209,"props":2423,"children":2424},{},[2425,2430,2435],{"type":57,"tag":97,"props":2426,"children":2427},{},[2428],{"type":63,"value":2429},"Stop and explain that this public skill does not manage authentication.",{"type":57,"tag":97,"props":2431,"children":2432},{},[2433],{"type":63,"value":2434},"Ask the user to use an authenticated AI-Q skill or configure their backend for this public local workflow.",{"type":57,"tag":97,"props":2436,"children":2437},{},[2438,2440,2445],{"type":63,"value":2439},"Rerun ",{"type":57,"tag":79,"props":2441,"children":2443},{"className":2442},[],[2444],{"type":63,"value":227},{"type":63,"value":2446}," and the original query only after the authentication boundary is resolved.",{"type":57,"tag":267,"props":2448,"children":2450},{"id":2449},"issue-health-succeeds-but-research-routes-fail",[2451],{"type":63,"value":2452},"Issue: Health succeeds but research routes fail",{"type":57,"tag":73,"props":2454,"children":2455},{},[2456],{"type":57,"tag":907,"props":2457,"children":2458},{},[2459],{"type":63,"value":2220},{"type":57,"tag":93,"props":2461,"children":2462},{},[2463,2473],{"type":57,"tag":97,"props":2464,"children":2465},{},[2466,2471],{"type":57,"tag":79,"props":2467,"children":2469},{"className":2468},[],[2470],{"type":63,"value":227},{"type":63,"value":2472}," returns successfully.",{"type":57,"tag":97,"props":2474,"children":2475},{},[2476,2481,2482,2487],{"type":57,"tag":79,"props":2477,"children":2479},{"className":2478},[],[2480],{"type":63,"value":427},{"type":63,"value":875},{"type":57,"tag":79,"props":2483,"children":2485},{"className":2484},[],[2486],{"type":63,"value":434},{"type":63,"value":2488},", or polling commands fail.",{"type":57,"tag":73,"props":2490,"children":2491},{},[2492],{"type":57,"tag":907,"props":2493,"children":2494},{},[2495],{"type":63,"value":2253},{"type":57,"tag":93,"props":2497,"children":2498},{},[2499,2504,2509],{"type":57,"tag":97,"props":2500,"children":2501},{},[2502],{"type":63,"value":2503},"The backend is not using an API-enabled AI-Q config.",{"type":57,"tag":97,"props":2505,"children":2506},{},[2507],{"type":63,"value":2508},"The async job registry is not available in the selected backend.",{"type":57,"tag":97,"props":2510,"children":2511},{},[2512],{"type":63,"value":2513},"The backend version is incompatible with this skill.",{"type":57,"tag":73,"props":2515,"children":2516},{},[2517],{"type":57,"tag":907,"props":2518,"children":2519},{},[2520],{"type":63,"value":2279},{"type":57,"tag":209,"props":2522,"children":2523},{},[2524,2556,2567],{"type":57,"tag":97,"props":2525,"children":2526},{},[2527,2529],{"type":63,"value":2528},"Run:\n",{"type":57,"tag":286,"props":2530,"children":2532},{"className":288,"code":2531,"language":51,"meta":290,"style":290},"python3 $SKILL_DIR\u002Fscripts\u002Faiq.py agents\n",[2533],{"type":57,"tag":79,"props":2534,"children":2535},{"__ignoreMap":290},[2536],{"type":57,"tag":296,"props":2537,"children":2538},{"class":298,"line":299},[2539,2543,2547,2551],{"type":57,"tag":296,"props":2540,"children":2541},{"style":303},[2542],{"type":63,"value":158},{"type":57,"tag":296,"props":2544,"children":2545},{"style":308},[2546],{"type":63,"value":311},{"type":57,"tag":296,"props":2548,"children":2549},{"style":314},[2550],{"type":63,"value":317},{"type":57,"tag":296,"props":2552,"children":2553},{"style":314},[2554],{"type":63,"value":2555}," agents\n",{"type":57,"tag":97,"props":2557,"children":2558},{},[2559,2561,2566],{"type":63,"value":2560},"If agents are unavailable, report the compatibility failure and offer to run ",{"type":57,"tag":79,"props":2562,"children":2564},{"className":2563},[],[2565],{"type":63,"value":132},{"type":63,"value":443},{"type":57,"tag":97,"props":2568,"children":2569},{},[2570],{"type":63,"value":2571},"Confirm the deployed Blueprint version is compatible with skill version 2.1.0.",{"type":57,"tag":267,"props":2573,"children":2575},{"id":2574},"issue-job-is-interrupted-or-appears-stuck",[2576],{"type":63,"value":2577},"Issue: Job is interrupted or appears stuck",{"type":57,"tag":73,"props":2579,"children":2580},{},[2581],{"type":57,"tag":907,"props":2582,"children":2583},{},[2584],{"type":63,"value":2220},{"type":57,"tag":93,"props":2586,"children":2587},{},[2588,2593,2605],{"type":57,"tag":97,"props":2589,"children":2590},{},[2591],{"type":63,"value":2592},"Local polling is interrupted.",{"type":57,"tag":97,"props":2594,"children":2595},{},[2596,2598,2604],{"type":63,"value":2597},"The job keeps showing ",{"type":57,"tag":79,"props":2599,"children":2601},{"className":2600},[],[2602],{"type":63,"value":2603},"running",{"type":63,"value":86},{"type":57,"tag":97,"props":2606,"children":2607},{},[2608,2610,2615,2617,2623],{"type":63,"value":2609},"Poll output shows ",{"type":57,"tag":79,"props":2611,"children":2613},{"className":2612},[],[2614],{"type":63,"value":2603},{"type":63,"value":2616},", but a report is returned or cancel says the job is already ",{"type":57,"tag":79,"props":2618,"children":2620},{"className":2619},[],[2621],{"type":63,"value":2622},"success",{"type":63,"value":86},{"type":57,"tag":73,"props":2625,"children":2626},{},[2627],{"type":57,"tag":907,"props":2628,"children":2629},{},[2630],{"type":63,"value":2253},{"type":57,"tag":93,"props":2632,"children":2633},{},[2634,2639],{"type":57,"tag":97,"props":2635,"children":2636},{},[2637],{"type":63,"value":2638},"Deep research is asynchronous and continues server-side.",{"type":57,"tag":97,"props":2640,"children":2641},{},[2642],{"type":63,"value":2643},"Local polling output can lag behind terminal server state.",{"type":57,"tag":73,"props":2645,"children":2646},{},[2647],{"type":57,"tag":907,"props":2648,"children":2649},{},[2650],{"type":63,"value":2279},{"type":57,"tag":209,"props":2652,"children":2653},{},[2654,2701,2762],{"type":57,"tag":97,"props":2655,"children":2656},{},[2657,2659],{"type":63,"value":2658},"Check current state:\n",{"type":57,"tag":286,"props":2660,"children":2662},{"className":288,"code":2661,"language":51,"meta":290,"style":290},"python3 $SKILL_DIR\u002Fscripts\u002Faiq.py status \u003CJOB_ID>\n",[2663],{"type":57,"tag":79,"props":2664,"children":2665},{"__ignoreMap":290},[2666],{"type":57,"tag":296,"props":2667,"children":2668},{"class":298,"line":299},[2669,2673,2677,2681,2685,2689,2693,2697],{"type":57,"tag":296,"props":2670,"children":2671},{"style":303},[2672],{"type":63,"value":158},{"type":57,"tag":296,"props":2674,"children":2675},{"style":308},[2676],{"type":63,"value":311},{"type":57,"tag":296,"props":2678,"children":2679},{"style":314},[2680],{"type":63,"value":317},{"type":57,"tag":296,"props":2682,"children":2683},{"style":314},[2684],{"type":63,"value":675},{"type":57,"tag":296,"props":2686,"children":2687},{"style":503},[2688],{"type":63,"value":612},{"type":57,"tag":296,"props":2690,"children":2691},{"style":314},[2692],{"type":63,"value":617},{"type":57,"tag":296,"props":2694,"children":2695},{"style":308},[2696],{"type":63,"value":622},{"type":57,"tag":296,"props":2698,"children":2699},{"style":503},[2700],{"type":63,"value":627},{"type":57,"tag":97,"props":2702,"children":2703},{},[2704,2705,2711,2712,2718,2720],{"type":63,"value":332},{"type":57,"tag":79,"props":2706,"children":2708},{"className":2707},[],[2709],{"type":63,"value":2710},"has_report: true",{"type":63,"value":402},{"type":57,"tag":79,"props":2713,"children":2715},{"className":2714},[],[2716],{"type":63,"value":2717},"job_status.status: success",{"type":63,"value":2719},", fetch the report:\n",{"type":57,"tag":286,"props":2721,"children":2723},{"className":288,"code":2722,"language":51,"meta":290,"style":290},"python3 $SKILL_DIR\u002Fscripts\u002Faiq.py report \u003CJOB_ID>\n",[2724],{"type":57,"tag":79,"props":2725,"children":2726},{"__ignoreMap":290},[2727],{"type":57,"tag":296,"props":2728,"children":2729},{"class":298,"line":299},[2730,2734,2738,2742,2746,2750,2754,2758],{"type":57,"tag":296,"props":2731,"children":2732},{"style":303},[2733],{"type":63,"value":158},{"type":57,"tag":296,"props":2735,"children":2736},{"style":308},[2737],{"type":63,"value":311},{"type":57,"tag":296,"props":2739,"children":2740},{"style":314},[2741],{"type":63,"value":317},{"type":57,"tag":296,"props":2743,"children":2744},{"style":314},[2745],{"type":63,"value":712},{"type":57,"tag":296,"props":2747,"children":2748},{"style":503},[2749],{"type":63,"value":612},{"type":57,"tag":296,"props":2751,"children":2752},{"style":314},[2753],{"type":63,"value":617},{"type":57,"tag":296,"props":2755,"children":2756},{"style":308},[2757],{"type":63,"value":622},{"type":57,"tag":296,"props":2759,"children":2760},{"style":503},[2761],{"type":63,"value":627},{"type":57,"tag":97,"props":2763,"children":2764},{},[2765,2767],{"type":63,"value":2766},"If the job is still running, continue polling:\n",{"type":57,"tag":286,"props":2768,"children":2769},{"className":288,"code":583,"language":51,"meta":290,"style":290},[2770],{"type":57,"tag":79,"props":2771,"children":2772},{"__ignoreMap":290},[2773],{"type":57,"tag":296,"props":2774,"children":2775},{"class":298,"line":299},[2776,2780,2784,2788,2792,2796,2800,2804],{"type":57,"tag":296,"props":2777,"children":2778},{"style":303},[2779],{"type":63,"value":158},{"type":57,"tag":296,"props":2781,"children":2782},{"style":308},[2783],{"type":63,"value":311},{"type":57,"tag":296,"props":2785,"children":2786},{"style":314},[2787],{"type":63,"value":317},{"type":57,"tag":296,"props":2789,"children":2790},{"style":314},[2791],{"type":63,"value":607},{"type":57,"tag":296,"props":2793,"children":2794},{"style":503},[2795],{"type":63,"value":612},{"type":57,"tag":296,"props":2797,"children":2798},{"style":314},[2799],{"type":63,"value":617},{"type":57,"tag":296,"props":2801,"children":2802},{"style":308},[2803],{"type":63,"value":622},{"type":57,"tag":296,"props":2805,"children":2806},{"style":503},[2807],{"type":63,"value":627},{"type":57,"tag":2809,"props":2810,"children":2811},"style",{},[2812],{"type":63,"value":2813},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2815,"total":2910},[2816,2833,2846,2852,2864,2881,2896],{"slug":2817,"name":2817,"fn":2818,"description":2819,"org":2820,"tags":2821,"stars":20,"repoUrl":21,"updatedAt":2832},"accelerated-computing-cudf","accelerate data processing with cuDF","Official NVIDIA-authored guidance for NVIDIA cuDF GPU DataFrames, pandas acceleration, dask-cuDF, ETL, joins, groupby, CSV\u002FParquet I\u002FO, nullable semantics, and multi-GPU DataFrame workloads.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2822,2825,2828,2829],{"name":2823,"slug":2824,"type":15},"Data Analysis","data-analysis",{"name":2826,"slug":2827,"type":15},"Data Engineering","data-engineering",{"name":9,"slug":8,"type":15},{"name":2830,"slug":2831,"type":15},"Performance","performance","2026-07-14T05:28:43.176466",{"slug":132,"name":132,"fn":2834,"description":2835,"org":2836,"tags":2837,"stars":20,"repoUrl":21,"updatedAt":2845},"deploy and manage NVIDIA AI-Q infrastructure","Use when asked to install, deploy, run, validate, troubleshoot, or stop NVIDIA AI-Q Blueprint infrastructure.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2838,2841,2844],{"name":2839,"slug":2840,"type":15},"Deployment","deployment",{"name":2842,"slug":2843,"type":15},"Infrastructure","infrastructure",{"name":9,"slug":8,"type":15},"2026-07-14T05:29:06.667109",{"slug":4,"name":4,"fn":5,"description":6,"org":2847,"tags":2848,"stars":20,"repoUrl":21,"updatedAt":22},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2849,2850,2851],{"name":18,"slug":19,"type":15},{"name":9,"slug":8,"type":15},{"name":13,"slug":14,"type":15},{"slug":2853,"name":2853,"fn":2854,"description":2855,"org":2856,"tags":2857,"stars":20,"repoUrl":21,"updatedAt":2863},"amc-run-sample-calibration","run AMC sample dataset calibration","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'.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2858,2859,2860],{"name":2823,"slug":2824,"type":15},{"name":9,"slug":8,"type":15},{"name":2861,"slug":2862,"type":15},"Testing","testing","2026-07-17T05:29:03.913266",{"slug":2865,"name":2865,"fn":2866,"description":2867,"org":2868,"tags":2869,"stars":20,"repoUrl":21,"updatedAt":2880},"amc-run-video-calibration","calibrate video datasets with AutoMagicCalib","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. For RTSP\u002Flive streams, use amc-run-rtsp-calibration instead.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2870,2873,2876,2877],{"name":2871,"slug":2872,"type":15},"Automation","automation",{"name":2874,"slug":2875,"type":15},"Imaging","imaging",{"name":9,"slug":8,"type":15},{"name":2878,"slug":2879,"type":15},"Video","video","2026-07-17T05:28:53.905004",{"slug":2882,"name":2882,"fn":2883,"description":2884,"org":2885,"tags":2886,"stars":20,"repoUrl":21,"updatedAt":2895},"amc-setup-calibration-stack","deploy AutoMagicCalib microservice with Docker","Launch AutoMagicCalib microservice and web UI from NGC release images via Docker Compose. Use when user says 'deploy auto calibration', 'launch auto calibration', 'launch AMC', 'start MS+UI', or 'set up auto-magic-calib'. Requires NGC API key.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2887,2888,2891,2892],{"name":2839,"slug":2840,"type":15},{"name":2889,"slug":2890,"type":15},"Docker","docker",{"name":9,"slug":8,"type":15},{"name":2893,"slug":2894,"type":15},"Operations","operations","2026-07-17T05:28:56.913999",{"slug":2897,"name":2897,"fn":2898,"description":2899,"org":2900,"tags":2901,"stars":20,"repoUrl":21,"updatedAt":2909},"cudaq-guide","develop quantum applications with CUDA-Q","CUDA-Q onboarding guide for installation, test programs, GPU simulation, QPU hardware, and quantum applications.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2902,2903,2906],{"name":9,"slug":8,"type":15},{"name":2904,"slug":2905,"type":15},"Quantum Computing","quantum-computing",{"name":2907,"slug":2908,"type":15},"Simulation","simulation","2026-07-14T05:26:58.898253",305,{"items":2912,"total":3061},[2913,2930,2945,2956,2968,2982,2995,3009,3020,3029,3043,3052],{"slug":2914,"name":2914,"fn":2915,"description":2916,"org":2917,"tags":2918,"stars":2927,"repoUrl":2928,"updatedAt":2929},"nemoclaw-user-guide","retrieve NemoClaw documentation and configuration","Guides human users' AI agents to the NemoClaw docs MCP server and canonical Fern documentation in Markdown form. Use when users ask how to install, configure, operate, troubleshoot, secure, or learn NemoClaw with an AI coding assistant. Trigger keywords - nemoclaw docs, use nemoclaw with ai agent, nemoclaw mcp docs, nemoclaw install help, nemoclaw quickstart, nemoclaw markdown docs, llms.txt, agent skills.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2919,2921,2924],{"name":2164,"slug":2920,"type":15},"documentation",{"name":2922,"slug":2923,"type":15},"MCP","mcp",{"name":2925,"slug":2926,"type":15},"Search","search",21777,"https:\u002F\u002Fgithub.com\u002FNVIDIA\u002FNemoClaw","2026-07-20T06:00:01.461044",{"slug":2931,"name":2931,"fn":2932,"description":2933,"org":2934,"tags":2935,"stars":2942,"repoUrl":2943,"updatedAt":2944},"mcore-build-and-dependency","manage Megatron-LM development environments","Container-based dev environment setup and dependency management for Megatron-LM. Covers acquiring and launching the CI container, uv package management, and updating uv.lock.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2936,2939,2940],{"name":2937,"slug":2938,"type":15},"Containers","containers",{"name":2839,"slug":2840,"type":15},{"name":2941,"slug":50,"type":15},"Python",17049,"https:\u002F\u002Fgithub.com\u002FNVIDIA\u002FMegatron-LM","2026-07-27T06:06:11.249662",{"slug":2946,"name":2946,"fn":2947,"description":2948,"org":2949,"tags":2950,"stars":2942,"repoUrl":2943,"updatedAt":2955},"mcore-bump-base-image","update NVIDIA PyTorch base images","Bump the NVIDIA PyTorch base image (`nvcr.io\u002Fnvidia\u002Fpytorch:YY.MM-py3`) used by Megatron-LM CI. Covers the two pin sites (GitHub CI in `docker\u002F.ngc_version.dev` and GitLab CI in `.gitlab\u002Fstages\u002F01.build.yml`), the post-bump CI loop (re-run functional tests, refresh golden values, mark broken tests), and the gotchas that bit PRs",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2951,2954],{"name":2952,"slug":2953,"type":15},"CI\u002FCD","ci-cd",{"name":2839,"slug":2840,"type":15},"2026-07-14T05:25:59.97109",{"slug":2957,"name":2957,"fn":2958,"description":2959,"org":2960,"tags":2961,"stars":2942,"repoUrl":2943,"updatedAt":2967},"mcore-cicd","manage CI\u002FCD pipelines for Megatron-LM","CI\u002FCD reference for Megatron-LM. Covers CI pipeline structure, PR scope labels, triggering internal GitLab CI (which force-pushes the current branch to a pull-request\u002FBRANCH ref — always dry-run and verify the destination first; never run against shared or protected branches), and CI failure investigation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2962,2963,2964],{"name":2952,"slug":2953,"type":15},{"name":2839,"slug":2840,"type":15},{"name":2965,"slug":2966,"type":15},"GitHub","github","2026-07-27T06:06:12.278222",{"slug":2969,"name":2969,"fn":2970,"description":2971,"org":2972,"tags":2973,"stars":2942,"repoUrl":2943,"updatedAt":2981},"mcore-create-issue","investigate CI failures and create issues","Investigate a failing GitHub Actions run or job and create a GitHub issue for the failure.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2974,2977,2978],{"name":2975,"slug":2976,"type":15},"Debugging","debugging",{"name":2965,"slug":2966,"type":15},{"name":2979,"slug":2980,"type":15},"Triage","triage","2026-07-14T05:25:57.442089",{"slug":2983,"name":2983,"fn":2984,"description":2985,"org":2986,"tags":2987,"stars":2942,"repoUrl":2943,"updatedAt":2994},"mcore-linting-and-formatting","lint and format Megatron-LM code","Linting and formatting for Megatron-LM. Covers running autoformat.sh, tools (ruff, black, isort, pylint, mypy), and code style rules.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2988,2991],{"name":2989,"slug":2990,"type":15},"Best Practices","best-practices",{"name":2992,"slug":2993,"type":15},"Code Analysis","code-analysis","2026-07-14T05:25:56.18433",{"slug":2996,"name":2996,"fn":2997,"description":2998,"org":2999,"tags":3000,"stars":2942,"repoUrl":2943,"updatedAt":3008},"mcore-migrate-gpt-to-hybrid","migrate Megatron-LM models to HybridModel","Migration guide for moving Megatron Core GPTModel checkpoints, model providers, training commands, and layer mappings to HybridModel.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3001,3004,3007],{"name":3002,"slug":3003,"type":15},"Machine Learning","machine-learning",{"name":3005,"slug":3006,"type":15},"Migration","migration",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:11.777011",{"slug":3010,"name":3010,"fn":3011,"description":3012,"org":3013,"tags":3014,"stars":2942,"repoUrl":2943,"updatedAt":3019},"mcore-onboard-gb200-1node-tests","onboard functional tests for GB200","Onboard 1-node GitHub MR functional tests for GB200 from existing mr-scoped 2-node tests.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3015,3018],{"name":3016,"slug":3017,"type":15},"QA","qa",{"name":2861,"slug":2862,"type":15},"2026-07-14T05:25:53.673039",{"slug":3021,"name":3021,"fn":3022,"description":3023,"org":3024,"tags":3025,"stars":2942,"repoUrl":2943,"updatedAt":3028},"mcore-run-on-slurm","launch distributed training jobs on SLURM","How to launch distributed Megatron-LM training jobs on a SLURM cluster. Covers a minimal sbatch skeleton, environment-variable setup for torch.distributed.run, CUDA_DEVICE_MAX_CONNECTIONS rules across hardware and parallelism modes, container conventions, monitoring, and per-rank failure diagnosis.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3026,3027],{"name":2839,"slug":2840,"type":15},{"name":2842,"slug":2843,"type":15},"2026-07-14T05:25:49.362534",{"slug":3030,"name":3030,"fn":3031,"description":3032,"org":3033,"tags":3034,"stars":2942,"repoUrl":2943,"updatedAt":3042},"mcore-split-pr","split pull requests to reduce review load","Split a PR into multiple PRs to reduce the number of required CODEOWNERS reviewer groups.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3035,3038,3039],{"name":3036,"slug":3037,"type":15},"Code Review","code-review",{"name":2965,"slug":2966,"type":15},{"name":3040,"slug":3041,"type":15},"Pull Requests","pull-requests","2026-07-14T05:26:01.226578",{"slug":3044,"name":3044,"fn":3045,"description":3046,"org":3047,"tags":3048,"stars":2942,"repoUrl":2943,"updatedAt":3051},"mcore-testing","run and manage Megatron-LM tests","Test system for Megatron-LM. Covers test layout, recipe YAML structure, adding and running unit and functional tests, golden values, marker filters, and CI parity.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3049,3050],{"name":3016,"slug":3017,"type":15},{"name":2861,"slug":2862,"type":15},"2026-07-14T05:25:54.928983",{"slug":3053,"name":3053,"fn":3054,"description":3055,"org":3056,"tags":3057,"stars":2942,"repoUrl":2943,"updatedAt":3060},"nightly-sync","manage nightly main-to-dev sync workflows","Domain knowledge for the nightly main-to-dev sync workflow. Covers merge strategy, CI architecture, failure investigation, and known issues.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[3058,3059],{"name":2871,"slug":2872,"type":15},{"name":2952,"slug":2953,"type":15},"2026-07-30T05:29:03.275638",496]