Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

nocobase-data-analysisnocobase 数据分析

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

4,382

周安装

179

GitHub Stars

24

下载量

1,418
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:nocobase-data-analysis(nocobase 数据分析)
来源仓库:https://github.com/nocobase/skills
仓库路径:skills/nocobase-data-analysis
安装命令:
npx skills add https://github.com/nocobase/skills --skill nocobase-data-analysis
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/nocobase/skills --skill nocobase-data-analysis

简介

对 NocoBase 系统中的数据进行清洗、统计与分析。

  • 适用于运营报告、用户行为洞察等决策支持场景。
  • 支持 CSV/Excel 导入导出和常见图表生成。
  • 需明确数据统计口径和时间范围避免误导结论。nocobase-data-analysis 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 敏感数据必须脱敏处理并通过权限审批方可操作。

SKILL.md

Goal

Use NocoBase MCP tools to locate the right collection, query business data safely, and produce reliable summaries or grouped analysis.

Prerequisite

  • NocoBase MCP must already be reachable and authenticated.
  • If MCP returns authentication errors such as Auth required, stop and ask the user to refresh MCP authentication before continuing.

Default strategy

  1. Inspect the data source path first.
  2. Prefer the main data source.
  3. If the target collection is not in main, inspect other enabled data sources.
  4. Once the collection is located, use that dataSource explicitly in every subsequent resource_* call.
  5. Prefer resource_query for counts and grouped analysis only after confirming the query parameter contract.
  6. Fall back to resource_list plus manual counting when query results are suspicious or need cross-checking.

Useful references:

  • references/analysis-patterns.md for common business analysis shapes
  • references/metric-checklist.md for metric definition and scope checks
  • references/entity-mapping.md for mapping business terms to collections and fields

Data source discovery

  • If the user explicitly names a data source, use it directly.
  • Otherwise start with main.
  • When the target collection is not found in main, call data_sources:list_enabled and inspect other enabled data sources one by one.
  • If multiple data sources contain the same collection name:

- default to main when main is one of them; - otherwise present the candidates and explain which one you are using.

  • In the final answer, state which data source was used.

Collection discovery

  • If the user gives a collection name, verify it exists before querying.
  • If the user uses business terms such as "leads", "users", "orders", or "opportunities", inspect collection metadata to map the business term to the actual collection name.
  • Prefer collections:listMeta for a fast overview.
  • Then use collections:get with appends: ["fields"] when you need exact field names, relation targets, or enum options.
  • Use references/entity-mapping.md as a reusable heuristic for common business nouns and likely field categories.

Query contract checks

Before using resource_query, verify the request shape matches the real backend contract:

  • measures[].aggregation, not aggregate
  • orders[].order, not direction
  • field should usually be passed as a field path array such as ["id"] or ["owner", "nickname"]
  • Use alias whenever the result will be referenced in output or having

Correct examples:

{
  "resource": "lead",
  "dataSource": "main",
  "measures": [
    { "aggregation": "count", "field": ["id"], "alias": "lead_count" }
  ]
}
{
  "resource": "lead",
  "dataSource": "main",
  "dimensions": [
    { "field": ["status"], "alias": "status" }
  ],
  "measures": [
    { "aggregation": "count", "field": ["id"], "alias": "lead_count" }
  ],
  "orders": [
    { "field": ["status"], "alias": "status", "order": "asc" }
  ]
}

Recommended workflow

1. Confirm reachability

  • Use auth:check.
  • If authentication fails, stop.

2. Find the collection

  • First inspect main.
  • If not found, inspect other enabled data sources.
  • Read fields before querying if field names or relations are uncertain.

3. Start with simple counts

  • Use resource_query with a single count(id) measure.
  • Keep the first query minimal so you can validate the result shape quickly.

4. Add grouped analysis

Common grouped views:

  • by status
  • by owner
  • by source
  • by department
  • by created date or month

For relation labels, use field paths such as:

  • ["owner", "nickname"]
  • ["mainDepartment", "title"]

5. Cross-check when needed

Re-check with resource_list when:

  • the grouped rows look duplicated unexpectedly;
  • the numeric result looks like record IDs instead of counts;
  • totals do not match between summary and grouped output;
  • the collection may be affected by ACL scope or hidden filters.

When cross-checking:

  • fetch enough rows to cover the visible dataset or use pagination;
  • count and group manually from the returned records;
  • compare the manual result with resource_query.

6. Present the result

Report:

  • the collection used;
  • the data source used;
  • the total count;
  • the key grouped breakdowns;
  • any caveat such as ACL scope, null values, or fallback to manual verification.

Analysis entry points

Classify the user request before querying:

  • overview for current totals and main distributions
  • distribution for grouped counts by status, owner, source, team, or department
  • funnel for stage-based business progression
  • trend for date or month-based change over time
  • ranking for top owners, sources, accounts, or products
  • quality-check for missing values, null-heavy fields, suspicious statuses, or orphaned relations

Use references/analysis-patterns.md for the recommended query shapes for each pattern.

Metric definition checks

Before returning an answer, verify the metric scope:

  • what time range is included
  • which time field drives the range
  • whether the metric is total count, distinct count, sum, or average
  • whether archived, inactive, null, or other terminal states should be included
  • whether grouped totals reconcile with the grand total

Use references/metric-checklist.md when the user request is ambiguous or the metric may be interpreted in more than one way.

Common pitfalls

  • Do not assume the collection is in main; check main first, then search other enabled data sources.
  • Do not omit dataSource after the collection has been located.
  • Do not use aggregate in query measures; the backend expects aggregation.
  • Do not use direction in query orders; the backend expects order.
  • Do not assume suspicious aggregate output is correct.
  • If a "count" result looks like 36, 54, 80, or another plausible record ID, verify whether aggregation was actually applied.
  • Relation label grouping requires the real relation path and target field, not guessed labels.

Verification checklist

  • MCP is authenticated.
  • The collection exists in the chosen data source.
  • The fields used in dimensions, measures, orders, and filter actually exist.
  • resource_query uses aggregation and order.
  • Summary totals match grouped totals, or any mismatch is explained.
  • The final answer states the data source and any verification fallback used.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.88%
按下载量换算537

Claude

30.02%
按下载量换算426

Cursor

16.63%
按下载量换算236

Gemini CLI

8.37%
按下载量换算119

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/nocobase/skills --skill nocobase-data-analysis 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills