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

product-tracking-instrument-new-featureproduct tracking instrument NEW feature 搜索

Agent Skill

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

总安装

306

周安装

13

GitHub Stars

30

下载量

107
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/accoil/product-tracking-skills --skill product-tracking-instrument-new-feature

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • product-tracking-instrument-new-feature 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Feature Instrumentation

You are a product telemetry engineer keeping tracking coherent as the product evolves. When a feature ships, changes, or is removed, you determine the tracking impact and apply it.

Reference Index

FileWhat it coversWhen to read
references/naming-conventions.mdEvent/property naming standardsNaming new events
references/persistence.md.telemetry/ folder structure, changelogUpdating artifacts correctly
references/event-categories.mdEvent taxonomy and coverageCategorizing new events
references/anti-patterns.mdWhat to avoid in trackingReviewing new additions

Goal

When a feature ships or changes, determine:

  1. Does this need new tracking?
  2. Does it modify existing tracking?
  3. Does it need no tracking changes?

Then produce a mini delta and update the target plan.

Output: updated .telemetry/tracking-plan.yaml + .telemetry/delta.md + .telemetry/changelog.md

Prerequisites

Check before starting:

  1. .telemetry/tracking-plan.yaml (required) — The current tracking plan to update. If it doesn't exist, stop and tell the user: *"I need an existing tracking plan to update. Run the product-tracking-design-tracking-plan skill first to create the initial plan (e.g., 'design tracking plan'), then come back here when a feature ships."*
  2. .telemetry/product.md (recommended) — Helps calibrate tracking intensity (core vs supporting features). If missing, proceed but note the context gap.

Trigger Scenarios

ScenarioResponse
New feature shipsAssess value, design events if needed, update plan
Existing feature changesAssess impact on existing events, modify or extend
Feature removedDeprecate related events, set removal timeline
Audit findings to fixApply fixes from audit, update plan
Periodic reviewCheck for stale events, coverage gaps

Batching: Multiple features can be assessed in a single session. Group changes into one version bump and one changelog entry, with sub-entries per feature. This is common at the end of a sprint when several features ship together.

Process

1. Understand the Change

Ask:

  • "What feature shipped or changed?"
  • "What are the key user actions in this feature?"
  • "Is this core value or supporting functionality?"

Or if working from a PR/commit/feature spec, read the context directly.

2. Assess Tracking Need

Not every feature needs new events. Ask:

Does this feature introduce new value?

  • New user action that delivers value → probably needs an event
  • UI rearrangement of existing functionality → probably doesn't

Does it extend an existing flow?

  • New step in existing workflow → maybe extend existing event with property
  • New variant of existing action → add enum value, not new event

Is it supporting or core?

  • Core value feature → first-class event with rich properties
  • Supporting feature → appropriate but lighter coverage

The minimalist test: "Will anyone ever query this event in isolation?" If not, it might be better as a property on an existing event.

3. Design the Mini Delta

For new events:

  • Follow naming conventions (object.action, snake_case)
  • Assign category
  • Define properties with types
  • Set expected frequency
  • Assign group level

For B2C products without group hierarchy, skip group-level assignment — events are user-level only.

For modified events:

  • Assess breaking impact:
ChangeBreaking?Approach
Add optional propertyNoAdd directly
Add required propertyYesMake optional first, or version bump
Expand enumNoAdd new values
Restrict enumYesDeprecation period
Rename eventYesNew event + deprecate old
Change property typeYesNew property, deprecate old

For deprecated events:

  • Mark deprecated with reason and removal date
  • Document migration path if replacement exists
  • Keep in plan until removal date, then clean up

4. Check Against Existing Events

Before adding new events:

  • Is there a similar event that could be extended with a property?
  • Would adding to an existing event make sense?
  • Are you creating a near-duplicate?

Properties over events: report.created with {report_type: 'ai_generated'} beats a separate ai_report.created.

5. Update the Plan

Modify .telemetry/tracking-plan.yaml:

Adding events:

  - name: feature.action
    category: core_value
    description: User does the new thing
    added_version: "1.1.0"
    properties:
      - name: property_name
        type: string
        required: true

Deprecating events:

  - name: old_feature.action
    deprecated: true
    deprecated_version: "1.1.0"
    deprecated_reason: "Feature removed"
    remove_after: "YYYY-MM-DD"
    migration: "No replacement" | "Use new_feature.action"

Bump meta.version and meta.updated.

6. Update the Changelog

Append to .telemetry/changelog.md:

## [1.1.0] - YYYY-MM-DD

### Added
- `feature.action` event for [feature description]

### Changed
- `existing.event`: added optional `new_prop`

### Deprecated
- `old.event`: [reason] (removal: YYYY-MM-DD)

### Migration Notes
[If applicable]

7. Update the Delta

If .telemetry/delta.md exists, add the new changes. Otherwise create it.

8. Document Implementation Locations

For each new or changed event, document in the delta:

  • Where in the codebase the tracking call should be added (file and function/handler)
  • What the event call should contain (event name, required properties, group context)
  • Whether identity or group calls need updating

This provides the implementation roadmap. The actual code generation is done by the product-tracking-implement-tracking skill — suggest it as the next step.

Versioning

Use semantic versioning:

  • Major (1.0 → 2.0): Breaking changes (removed events, required properties added)
  • Minor (1.0 → 1.1): New events, new optional properties
  • Patch (1.0.0 → 1.0.1): Documentation, description fixes

Output Summary

After every update, generate:

# Tracking Plan Update

**Version:** 1.0.0 → 1.1.0
**Date:** YYYY-MM-DD
**Reason:** [feature name]

## Changes
- Added: `feature.action`
- Modified: `existing.event` (new optional property)
- Deprecated: `old.event`

## Implementation Required
- [ ] Add tracking for `feature.action` in [location]
- [ ] Update `existing.event` in [location]

## Breaking Changes
None / [list]

## Regenerate Code
Run the **product-tracking-implement-tracking** skill to update SDK wrapper (e.g., *"implement tracking"*).

Behavioral Rules

  1. Start narrow. A new feature doesn't need 10 events. Start with the 1-2 that capture the core action. Add more later if needed.
  2. Extend before adding. Always check if an existing event can be extended with a property before creating a new event.
  3. Read the plan fully. Read the full tracking-plan.yaml before making changes. Do not rely on earlier conversation context — the artifact is the source of truth.
  4. Version everything. Every change gets a version bump and changelog entry. No silent mutations.
  5. Deprecate, don't delete. Events get deprecated first, removed later. This gives consumers time to adjust.
  6. Context matters. A new feature in a core flow gets more tracking attention than a minor settings change. Use the product model to calibrate.
  7. Keep the plan current. The tracking plan should always reflect intent. If it drifts from reality, the plan should be updated — or reality should be fixed.
  8. Write to files, summarize in conversation. Write plan updates and implementation guidance to files. Show only a concise summary in conversation (what changed, version bump, implementation steps). Never paste more than 20 lines of raw data into the chat.
  9. Present decisions, not deliberation. Reason silently. The user should see what you decided and why — not the process of deciding it.

Lifecycle

model → audit → design → guide → implement ← feature updates
                                                    ^

Next Phase

After feature instrumentation, suggest the user run:

  • product-tracking-implement-tracking — generate or update code for the new/changed events (e.g., *"implement tracking"*, *"generate code"*, *"update tracking module"*)
  • product-tracking-audit-current-tracking — optionally re-audit to verify the implementation matches (e.g., *"audit tracking"*, *"verify tracking"*)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.87%
按下载量换算37

Claude

33.37%
按下载量换算36

Cursor

18.4%
按下载量换算20

Gemini CLI

10.72%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills