Token导航 LogoToken导航TokenDH.com
研究检索只读unknown未标认证来源可访问许可证需确认审计未展示

analyze分析

Agent Skill

analyze 用于查找、检索和筛选相关信息,适合在 Local Agent 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

343

周安装

14

下载量

111
Local Agent

安装说明

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

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

analyze 用于信息查找与内容筛选,支持基于任务线索定位资源。

  • 适合在需要快速检索相关信息的 Local Agent 环境中使用。
  • 可通过关键词匹配提高搜索效率。analyze 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 应检查其是否具备外部访问权限。
  • 建议结合上下文判断返回结果的可靠性。

SKILL.md

Analyze

Overview

The analysis skill provides two modes for generating PM insights from structured sources:

ModePurposeOutput
--dataPython-based analysis of CSV/Excel files (retention, funnel, segmentation)outputs/insights/data-analysis-YYYY-MM-DD.md
--kbKnowledge Base gap analysis (pain points, missing articles, AI opportunities)outputs/insights/kb-gaps-YYYY-MM-DD.md

When to Use

--data Mode

  • User provides CSV, Excel, or structured data files
  • User asks for "analysis", "insights", "metrics", "trends", or "charts"
  • Data exists in inputs/data/ folder
  • User wants to understand product performance

--kb Mode

  • Have KB article exports to analyze
  • Want to understand what users struggle with most
  • Exploring AI assistant opportunities
  • Planning documentation improvements

Mode: --data

Process

Step 1: Choose Analysis Method

Your goal is to provide the most accurate analysis. Autonomously select the best method based on the data and the user's query.

  1. Examine the data source and the user's query.
  2. If the data is simple (e.g., < 500 rows, clear headers) and the query is a straightforward aggregation (counting, sorting, grouping), you may perform the analysis directly via LLM calculation.
  3. Else (i.e., the analysis requires complex calculations, statistics, visualizations, or the data is large/complex), you must generate and execute a Python script to ensure accuracy.
  4. When in doubt, default to using a Python script.
  5. Announce which method you are choosing and why before proceeding with the analysis.

Step 2: Execute Analysis


*IF Direct LLM Calculation was chosen:*

  1. Read the content of the data file.
  2. Perform the requested calculations directly.
  3. Proceed to Step 3, ensuring all findings and claims are based on your direct calculations.

*IF Python Script Execution was chosen:*

  1. Exploratory Data Analysis (EDA): Write and execute a Python script to get basic info. import pandas as pd # Load data, print shape, dtypes, head, describe, isnull, etc.
  2. Data Dictionary: Create a markdown table for the data dictionary. Ask the user to clarify any unknown column meanings before proceeding.
  3. Analysis Plan: Propose an analysis plan to the user.
  4. Execution & Visualization: Upon approval, write and execute the Python script to perform the analysis and generate any required visualizations (e.g., charts saved to outputs/insights/).
  5. Proceed to Step 3, ensuring all findings and claims are based on the Python script's output.

Step 3: Generate Output

Write to outputs/insights/data-analysis-YYYY-MM-DD.md. The output must be structured as follows and must include the analysis_method field in the YAML frontmatter.

---
generated: YYYY-MM-DD HH:MM
skill: analyze --data
analysis_method: "Direct LLM Calculation" # or "Python Script Execution"
sources:
  - inputs/data/filename.csv (modified: YYYY-MM-DD)
downstream: []
---

# Data Analysis: [Dataset Name]

## Analysis Method
This analysis was performed via **[Direct LLM Calculation / Python Script Execution]**.

## Dataset Overview
| Attribute | Value |
|-----------|-------|
| Rows | N |
| Columns | N |
| Date range | [if applicable] |

## Data Dictionary
| Column | Type | Example Values | Meaning |
|--------|------|----------------|---------|
| ... | ... | ... | Explicit/Unknown |

## Key Metrics
| Metric | Value | Source |
|--------|-------|--------|
| [Metric name] | [Number] | [Direct Calculation / Python output] |

## Findings
1. **[Finding]** - Evidence: [Direct Calculation / Python output]

## Hypotheses (require validation)
1. **[Hypothesis]** - Based on: [observation]

## Visualizations
- [Chart description]: outputs/insights/[filename].png

## Sources Used
- [file paths]

## Claims Ledger
| Claim | Type | Source |
|-------|------|--------|
| [Metric] | Evidence | [Direct Calculation / Python output] |
| [Trend interpretation] | Hypothesis | [Based on metric X] |

Mode: --kb

Process

Step 1: Gather Sources

Read files in:

  • inputs/knowledge_base/ - KB article exports
  • outputs/insights/voc-synthesis-*.md - VOC insights (if available, for correlation)

Step 2: Analyze Article Coverage

For each KB article (or category), note:

  • Topic / Category
  • Article count
  • Last updated date
  • Estimated complexity (simple how-to vs. complex troubleshooting)

Step 3: Identify Gaps

Look for:

  1. High-volume topics - Many articles = users struggle here
  2. Outdated articles - Not updated in 6+ months
  3. Missing topics - VOC mentions issues with no KB coverage
  4. Complex troubleshooting - Multi-step processes that could be simplified

Step 4: Assess AI Opportunities

For each gap, evaluate:

Opportunity TypeCriteriaRisk Level
Better search/IAHard to find articlesLow
Guided resolutionMulti-step processLow-Medium
AI-assistedCan be automated with citationsMedium
DO NOT automateCompliance, billing, trust-sensitiveHigh

Step 5: Generate Output

Write to outputs/insights/kb-gaps-YYYY-MM-DD.md:

---
generated: YYYY-MM-DD HH:MM
skill: analyze --kb
sources:
  - inputs/knowledge_base/*.md
  - outputs/insights/voc-synthesis-*.md (if used)
downstream:
  - outputs/roadmap/Qx-YYYY-charters.md
---

# KB Gap Analysis: [Date]

## Executive Summary
[2-3 sentences: What's the state of KB? Where are the biggest gaps?]

## Coverage Overview

| Category | Article Count | Last Updated | Complexity | Gap Score |
|----------|---------------|--------------|------------|-----------|
| [Category 1] | N | YYYY-MM-DD | Simple/Complex | High/Med/Low |

## High-Volume Topics
*Categories with most articles (signal: users struggle here)*

| Topic | Article Count | Sample Titles | VOC Correlation |
|-------|---------------|---------------|-----------------|
| [Topic] | N | [title1, title2] | [Yes/No/Unknown] |

## Missing / Outdated Articles

| Gap | Type | Evidence | Priority |
|-----|------|----------|----------|
| [Topic with no article] | Missing | VOC mentions in [file] | High |
| [Article X] | Outdated | Last updated [date] | Medium |

## AI Opportunity Assessment

### Safe to Automate (Low Risk)
| Opportunity | Type | Rationale |
|-------------|------|-----------|
| [Better search for X] | Search/IA | Articles exist but hard to find |
| [Guided wizard for Y] | Guided resolution | Clear steps, no judgment needed |

### Automate with Caution (Medium Risk)
| Opportunity | Type | Guardrails Needed |
|-------------|------|-------------------|
| [AI assist for Z] | AI-assisted | Must cite source article, human review |

### DO NOT Automate (High Risk)
| Topic | Reason |
|-------|--------|
| [Billing disputes] | Financial, requires human judgment |
| [Data deletion] | Compliance, irreversible |
| [Access control] | Trust/security sensitive |

## Recommendations
1. **[Recommendation]** - Evidence: [source]

## Sources Used
- [file paths]

## Claims Ledger
| Claim | Type | Source |
|-------|------|--------|
| [High volume in X] | Evidence | [article count] |
| [Users struggle with Y] | Evidence | [VOC file] |

Quick Reference

--data Mode

ActionCommand
Load CSVpd.read_csv('inputs/data/file.csv')
Load Excelpd.read_excel('inputs/data/file.xlsx')
Save chartplt.savefig('outputs/insights/output.png')
Check nullsdf.isnull().sum()

--kb Mode

Risk LevelExamplesAction
LowSearch improvements, FAQ botsSafe to build
MediumTroubleshooting assistantsBuild with guardrails
HighBilling, compliance, securityHuman only

Common Mistakes

--data Mode

  • Assuming column meanings: "user_id probably means..." -> Ask user to confirm
  • Stating implications as facts: "Users are churning because..." -> Label as hypothesis
  • Using sample data for conclusions: "Based on 10 rows..." -> Ensure representative data
  • Ignoring missing data: 50% nulls in key column -> Report this prominently
  • No data dictionary: Jumping to analysis -> Always document columns first

--kb Mode

  • Counting wrong: "Many articles" -> Exact count: "47 articles"
  • Missing VOC correlation: KB analysis in isolation -> Cross-reference with VOC
  • Underestimating risk: "AI can handle billing" -> Compliance topics need humans
  • No priorities: "Everything is a gap" -> Rank by impact
  • Stale analysis: Using old VOC -> Check VOC synthesis date

Verification Checklist

--data

  • Data dictionary created with all columns
  • Unknown meanings explicitly marked
  • User confirmed column semantics before analysis
  • Metrics separated from hypotheses
  • Missing data reported
  • Charts saved to outputs/insights/
  • All code executed successfully
  • Metadata header complete
  • Copied to history, tracker updated

--kb

  • All KB files read
  • Article counts accurate
  • Outdated articles identified (6+ months)
  • VOC correlation checked (if available)
  • AI opportunities categorized by risk
  • DO NOT automate list includes compliance/billing/trust topics
  • Recommendations backed by evidence
  • Metadata header complete
  • Copied to history, tracker updated

Output Locations

ModePrimary OutputHistory
--dataoutputs/insights/data-analysis-YYYY-MM-DD.mdhistory/analyze/data/
--kboutputs/insights/kb-gaps-YYYY-MM-DD.mdhistory/analyze/kb/

Evidence Tracking

ClaimTypeSource
[Metric]Evidence[Python output]
[Trend interpretation]Hypothesis[Based on metric X]
[Column meaning]Evidence/Unknown[User confirmed / Not stated]
[47 articles on X]Evidence[KB export count]
[Users complain about Y]Evidence[VOC file:line]
[Safe to automate Z]Assumption[no compliance concern identified]

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Local Agent

93.44%
按下载量换算104

安全审计

暂无安全审计结果可展示。

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills