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

metricsmetrics 搜索

Agent Skill

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

总安装

222

周安装

9

GitHub Stars

35

下载量

70
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/kazdenc/builder-skills --skill metrics

简介

metrics 用于查找、检索和筛选相关信息,支持关键词和任务场景定位。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中的信息快速筛选需求。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或文件读写操作。
  • 该技能当前分类为研究检索,实际功能以来源仓库描述为准。

SKILL.md

Define what success looks like in numbers. Work through each step — don't jump to a list of metrics without grounding them in the goal first.

Step 1: Identify the Goal

Before picking metrics, answer:

  • What job does this feature serve? What progress is the user trying to make? (Reference the jtbd skill if available.)
  • What outcome matters to the business? Revenue, retention, efficiency, expansion — pick one.
  • What behavior change are you expecting? Users should do more of X, less of Y, start doing Z.

If you can't state the goal in one sentence, the metrics will be unfocused. Push for clarity.

Step 2: Define a Primary Metric

Pick the ONE number that best represents success. This is the metric the team checks every morning.

How to choose — the 3 A's:

TestQuestionBad exampleGood example
ActionableCan the team change this number with their work?Total registered users (too broad)Weekly active users of this feature
AccessibleCan everyone on the team understand and check it?Custom composite score% of users who complete core action
AuditableCan you verify the data is correct?Self-reported satisfactionEvent-tracked completion rate

Common primary metrics by goal:

GoalPrimary metric
Adoption% of eligible users who use the feature in first 7 days
EngagementWeekly active usage (sessions, actions, or time)
Retention% still using after 30 days
EfficiencyTime to complete task (before vs. after)
RevenueConversion rate or revenue per user
QualityError rate or task success rate

State it precisely: "% of users who create at least one invoice within 7 days of first seeing the feature" — not "adoption."

Step 3: Define Supporting Metrics

Leading indicators

Predict future success. Move before the primary metric does. Use these to course-correct early.

ExampleWhat it predicts
Activation rate (completed setup)Future retention
Feature discovery rate (saw the entry point)Future adoption
Time to first valueFuture engagement
Onboarding completionFuture active usage

Lagging indicators

Confirm past success. Move slowly. Use these to validate that early signals were real.

ExampleWhat it confirms
30/60/90-day retentionSustained value
Net revenue retentionBusiness impact
NPS / CSAT changeUser sentiment shift
Support ticket volume (down)Reduced friction

Guardrail metrics

Things that should NOT get worse when the feature launches. Set these before shipping.

GuardrailThreshold
Page load timeMust stay under current p95
Error rateMust not increase >0.1%
Existing feature usageMust not drop (cannibalization check)
Support ticket volume (up)Spike is okay for 1 week, not 4
Unsubscribe rateMust not increase after announcement emails

If a guardrail breaks, investigate before celebrating the primary metric.

Step 4: Anti-Metrics — What NOT to Track

Vanity metrics feel good but don't inform decisions. Ignore these:

Vanity metricWhy it's misleadingTrack this instead
Total signups (all time)Only goes up, tells you nothingWeekly new active users
Page viewsTraffic without contextConversion rate from page
Total features shippedOutput, not outcomeAdoption rate per feature
App downloadsAcquisition without activationDay-7 retention
Time on page (alone)Could mean engaged or confusedTask completion rate

Rule of thumb: If a metric can only go up and never triggers action, it's vanity.

Step 5: Instrumentation Plan

Metrics are useless without reliable tracking. For each metric, define:

Event nameTriggerPropertiesWhere tracked
feature_viewedUser sees the feature entry pointuser_id, source, timestampAnalytics (e.g., Amplitude, Mixpanel)
feature_activatedUser completes core action for first timeuser_id, time_to_activate, timestampAnalytics
feature_usedUser completes core action (any time)user_id, session_id, timestampAnalytics
feature_errorSomething failsuser_id, error_type, timestampError tracking (e.g., Sentry)

Instrumentation checklist:

  • Events fire in both frontend and backend where appropriate
  • User ID is attached to all events (for cohort analysis)
  • Timestamps are consistent (UTC)
  • Properties include enough context to segment (source, plan, cohort)
  • Events are tested in staging before launch
  • Dashboard or report is built before launch day
  • Team knows where to check metrics and how often

Metrics Template

Use this table as the deliverable:

| Metric | Type | Target | How to Measure |
|--------|------|--------|----------------|
| [Primary metric] | Primary | [specific number] | [event/query] |
| [Leading indicator 1] | Leading | [specific number] | [event/query] |
| [Leading indicator 2] | Leading | [specific number] | [event/query] |
| [Lagging indicator] | Lagging | [specific number] | [event/query] |
| [Guardrail 1] | Guardrail | [must not exceed X] | [event/query] |
| [Guardrail 2] | Guardrail | [must not exceed X] | [event/query] |

If You Can Only Track 3 Things

When instrumentation budget is tight, track exactly these:

  1. Adoption — did users find and try it? (feature_activated / eligible users)
  2. Completion — did they succeed at the core task? (task_completed / task_started)
  3. Return — did they come back? (feature_used where usage_count > 1 within 14 days)

These three form a funnel: discovered it, got value, came back. Everything else is refinement.

Output

Deliver the metrics plan as a document with:

  1. Goal — one sentence
  2. Primary metric — name, definition, target
  3. Supporting metrics — leading, lagging, guardrails in table format
  4. Instrumentation plan — events, properties, where tracked
  5. Anti-metrics — what you're deliberately not tracking and why

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.56%
按下载量换算23

Claude

30.5%
按下载量换算21

Cursor

18.66%
按下载量换算13

Gemini CLI

8.99%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills