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

analyze分析

Agent Skill

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

总安装

245

周安装

10

GitHub Stars

1

下载量

78
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/olamedia/analytics-skills --skill analyze

简介

analyze 用于辅助数据整理、表格处理、CSV/Excel 分析和指标计算。

  • 适合清洗字段、汇总数据、发现异常或生成统计口径说明。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需确认权限与维护状态。
  • 使用时需确认数据来源和时间范围,避免将样本当全量事实。
  • 涉及敏感数据导出时应先确认脱敏方式和操作边界。

SKILL.md

Analyze (Orchestrator)

Run the full analytics pipeline in sequence: research, goal definition, brainstorming, PRD, architecture, and task breakdown. Produces a complete set of interlinked artifacts from a raw idea.

When to Use

  • A feature request or idea needs the full treatment: analysis through to task list
  • The problem is straightforward enough that all 6 steps can flow in one session
  • You want to minimize manual skill invocation and let the pipeline run

When NOT to use:

  • The problem is complex or ambiguous — run skills individually with more deliberation at each stage
  • Only one phase is needed (e.g., just need a PRD for existing requirements) — invoke that skill directly
  • Upstream artifacts already exist — pick up from the appropriate skill in the chain

Input

  • A raw idea, feature request, or problem description from the user
  • A codebase to analyze (current workspace or specified path)

Output

A complete artifact folder containing:

  • context-map.md
  • goal-definition.md
  • brainstorming.md
  • prd.md
  • architecture.md
  • tasks.md

The Pipeline

research → goal-definition → brainstorming → prd → architecture → breakdown

Each step produces an artifact that the next step consumes. Human review gates occur between phases.

The Process

Step 1: Determine Artifact Folder

Ask the user for the artifact folder, or accept one specified in chat:

"Where should I save the analysis artifacts? Provide a folder path (e.g. docs/analytics/user-auth/), or I'll use docs/analytics/ as default."

Create the folder if it doesn't exist.

Step 2: Run Research

Before scanning, check for existing project documentation listed in references/context-sources.md (docs/TechStack.md, docs/ProjectStructure.md). If they exist and are fresh, use them to accelerate the research phase.

Follow the research skill process:

  • Scan codebase structure, tech stack, patterns, conventions
  • Find rules files, note constraints
  • Save context-map.md

Present a brief summary and confirm before continuing:

"Context mapped. Key findings: [tech stack], [N patterns identified], [any notable constraints]. Continue to goal definition?"

Step 3: Run Goal Definition

Follow the goal-definition skill process:

  • Restate the idea as "How Might We"
  • Ask 3-5 sharpening questions (one at a time)
  • Surface assumptions
  • Define testable success criteria
  • Save goal-definition.md

Present the goal and confirm before continuing:

"Goal defined: [problem statement]. [N success criteria]. Continue to brainstorming?"

Step 4: Run Brainstorming

Follow the brainstorming skill process:

  • Scan for prior art in the codebase
  • Generate 2-3 approaches with trade-offs
  • Present comparison and recommendation
  • Get user to pick a direction
  • Save brainstorming.md

Present the chosen direction and confirm before continuing:

"Direction chosen: [approach name]. Continue to PRD?"

Step 5: Run PRD

Follow the prd skill process:

  • Ask 3-5 clarifying questions where gaps exist
  • Write user stories with acceptance criteria
  • Write functional requirements
  • Define non-goals and success metrics
  • Save prd.md

Present the PRD summary and confirm before continuing:

"PRD complete: [N user stories], [N functional requirements], [N non-goals]. Continue to architecture?"

Step 6: Run Architecture

Follow the architecture skill process:

  • Identify components with responsibilities and locations
  • Map data flow and dependency graph
  • Document tech decisions and integration points
  • Define boundaries, identify risks
  • Save architecture.md

Present architecture summary and confirm before continuing:

"Architecture designed: [N components], [key tech decisions]. Continue to task breakdown?"

Step 7: Run Breakdown

Follow the breakdown skill process:

  • Map dependency graph to build order
  • Slice vertically, size each task
  • Write tasks with acceptance criteria and verification
  • Group into phases with checkpoints
  • Classify parallelization opportunities
  • Save tasks.md

Present the final summary:

"Pipeline complete. Artifact folder [path] contains: - context-map.md — codebase context - goal-definition.md — problem and success criteria - brainstorming.md — approaches and chosen direction - prd.md — requirements with acceptance criteria - architecture.md — technical design - tasks.md — [N tasks] in [N phases], ready for implementation"

Human Review Gates

Between every phase, ask the user to confirm before proceeding. Do not skip gates.

If the user wants to revise an earlier phase:

  1. Go back to that phase
  2. Update the artifact
  3. Assess whether downstream artifacts need updating
  4. Continue from the revised phase forward

If the user wants to stop mid-pipeline, that's fine. The artifacts saved so far are valid. The user can resume from any point by invoking the appropriate skill directly.

Common Rationalizations

RationalizationReality
"This is simple, just give me the tasks"Simple problems still benefit from explicit goals and requirements. The orchestrator moves quickly through simple cases.
"The review gates slow things down"Review gates catch wrong directions early. Fixing a goal is cheaper than fixing a task list.
"I'll skip brainstorming, I know the approach"Even obvious approaches have trade-offs worth documenting. Brainstorming takes 5 minutes in the orchestrator.

Red Flags

  • Skipping review gates between phases
  • Proceeding when the user expressed doubt or confusion
  • Producing a task list without the user confirming the PRD
  • Artifacts that don't reference each other (broken chain)
  • Not saving artifacts to the folder (keeping everything in conversation)

Verification

At the end of the pipeline, confirm:

  • All 6 artifacts exist in the artifact folder
  • Each artifact references its upstream artifacts
  • User confirmed at each review gate
  • Task list has acceptance criteria and verification for every task
  • Task dependencies are ordered correctly
  • Artifact folder path communicated to user

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.01%
按下载量换算27

Claude

26.66%
按下载量换算21

Cursor

20.33%
按下载量换算16

Gemini CLI

9.59%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills