data-intent-router

data-intent-router is a skill for Claude Code, Codex from agentscope-ai/QwenPaw-Data. It costs 28 tokens per session (715 once invoked), scanned A, original, Apache-2.0.

A router that identifies what kind of data request someone made and sends it to the matching workflow, such as a lookup, business analysis, data exploration, calculation, report, or non-data task.

In plain words
What is it for?
Use it as the first step when handling data-related questions, especially when a request combines retrieving data with explaining or comparing it.
Why use it?
It prevents a simple request for a value or definition from being handled like a full investigation, while directing analysis requests to the appropriate process.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it as the first step when handling data-related questions, especially when a request combines retrieving data with explaining or comparing it.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/agentscope-ai/qwenpaw-data/data-intent-router
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add agentscope-ai/QwenPaw-Data --skill data-intent-router
Clone the repo
git clone --depth 1 https://github.com/agentscope-ai/QwenPaw-Data

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for data-intent-router

README.md
[![agentmods](https://agentmods.dev/badge/skills/agentscope-ai/qwenpaw-data/data-intent-router/github.svg)](https://agentmods.dev/skills/agentscope-ai/qwenpaw-data/data-intent-router)
Your own site
<a href="https://agentmods.dev/skills/agentscope-ai/qwenpaw-data/data-intent-router"><img src="https://agentmods.dev/badge/skills/agentscope-ai/qwenpaw-data/data-intent-router/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for data-intent-router

Your own site · 80×15
<a href="https://agentmods.dev/skills/agentscope-ai/qwenpaw-data/data-intent-router"><img src="https://agentmods.dev/badge/skills/agentscope-ai/qwenpaw-data/data-intent-router.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 715 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00028 $0.00715
Opus 5 $0.00014 $0.00358
Sonnet 5 $0.00006 $0.00143
Haiku 4.5 $0.00003 $0.00072

Measured 10d ago against content hash 471bb9ffa116, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

data-intent-router scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

packages/qwenpaw-data-skills/skills/routing/data-intent-router/SKILL.md · 50 lines

What it actually says

data-intent-router

判定用户数据相关请求的任务类型,路由至对应的处理链路。

判定规则

依次检查,命中即停:

1. 查询类

获取数据或了解数据定义,不涉及分析推理(诊断、归因、对比、解释、建模等)

1a. 元数据查询:询问数据的定义或结构——字段含义、计算口径、枚举值、表结构、关联关系、可用数据源

  • 例如:"这个字段什么意思""表里有哪些字段""这两张表怎么关联"

1b. 数据查询:直接获取数据结果(某个值、某批记录、某张表的内容)

  • 例如:"昨天 DAU 多少""查一下上月销售额""这个客户的订单有哪些"

2. 分析类

涉及分析、建模、计算、报告等数据处理任务

2a. BI 业务分析:围绕业务指标进行基本数据观察,趋势洞察、诊断、归因等、或直接要求产出分析结果,例如日/周/月报

  • 例如:"转化率为什么下降"、"分析 3 月用户趋势"、"某产品 12 月月报"

2b. 数据探索:没有预设的业务问题,目的是探索性地了解数据——描述特征(分布、缺失、异常值、相关性)、诊断数据问题(异常成因、质量瓶颈)、评估数据可用性

  • 例如:"看一下数据分布"、"检查数据质量"、"这份数据能不能用"、"为什么数目偏斜这么严重"

2c. 统计建模:涉及回归、分类、聚类、预测、特征工程等建模概念,或要求训练模型、评估效果、交叉验证,或需要验证某个假设(假设检验、显著性分析)

  • 例如:"预测下个月的收入"、"对用户做聚类"

2d. 定量计算:按已知公式或算法执行确定性计算(财务指标、工程公式、统计量、数值模拟等),输入→公式→输出,无需拟合数据

  • 例如:"算一下这个方案的 ROI"、"模拟不同参数下的结果"、"计算标准差"

2e. 报告生成:上下文中已有分析结论,用户直接要求将其格式化为报告

  • 例如:"把刚才的分析整理成报告"、"将结果导出为报告"

3. 非数据任务

以上均不命中,核心意图不涉及数据操作或数据分析,如代码开发、文档写作、知识问答、闲聊等

  • 例如:"帮我写个脚本""写一份 AI 领域的调研报告""今天天气怎样"

边界情况

  • 复合意图:同时包含查数和分析("查一下 DAU,并分析下降原因"),以分析类为准
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 50 lines · 28 tokens per session scan A 471bb9ffa116

Subscribe to this mod's changes

data-intent-router is a skill published in the GitHub repository agentscope-ai/QwenPaw-Data (71 stars, last pushed yesterday), licensed Apache-2.0. It adds 28 tokens to every session and 715 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

mem0-tour

Browses all stored memories grouped by category with full content display. Use when reviewing all project memories, exploring stored knowledge, onboarding to a project, or getting an overview of captured decisions, conventions, and learnings.

mem0ai/mem0 · 47 tokens

status

Show whether Mem0 memory is working in this repository, covering configuration, capture state, pending flushes, and whether the Mem0 API key is valid. Use when the user asks whether memory is on, why a memory is missing, or anything looks broken.

mem0ai/mem0 · 54 tokens

open-source

Documentation reference for writing Python code using the browser-use open-source library. Use this skill whenever the user needs help with Agent, Browser, or Tools configuration, is writing code that imports from browseruse, asks about @sandbox deployment, supported LLM models, Actor API, custom tools, lifecycle…

browser-use/browser-use · 137 tokens

mem0-test-integration

Verify a Mem0 integration produced by /mem0-integrate. Runs in the same workspace on the same branch (loose coupling) — installs dependencies, runs the repo's native test suite, then exercises a real end-to-end smoke flow against the user's API key. Produces a scorecard. TRIGGER when: user has just run /mem0-integrate…

mem0ai/mem0 · 207 tokens

connect-recommend

Use this skill when the user asks about Stripe Connect configuration, charge patterns, Dashboard access, or how to get started with Connect, is building a marketplace, platform, multi-vendor store, gig platform, or subscription platform, needs to pay out sellers, vendors, or providers, mentions split payments, revenue…

stripe/ai · 151 tokens

frontend-feature

Build a new page, view, or data-driven feature in the Next.js frontend. Use when adding a route under the dashboard/marketing area, wiring UI to a backend endpoint, adding client state, or creating a localized page. Covers App Router, data fetching, Zustand stores, and i18n.

vstorm-co/full-stack-ai-agent-template · 64 tokens