Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

agent-statsigAgent 统计

Agent Skill

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

总安装

220

周安装

9

GitHub Stars

公开资料未说明

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/shhac/agent-statsig --skill agent-statsig

简介

用于管理 Statsig 功能开关、动态配置、实验和用户分群。

  • 适合检查、修改或创建功能规则及实验状态。
  • 通过 API 与 Console 交互,支持读取后写入的安全流程。
  • 建议核验是否会触发联网、命令执行或文件读写后再使用。
  • agent-statsig 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

agent-statsig — Statsig Feature Flag CLI

Manage Statsig feature gates, dynamic configs, experiments, and segments via the Console API.

When to Use

  • User asks about a feature gate, feature flag, or rollout
  • User wants to check, modify, or create targeting rules
  • User asks about experiment status or wants to start/ship/abandon experiments
  • User asks about dynamic config values or wants to modify them
  • User wants to manage segment membership
  • User wants to organize entities with tags

Process

Always read before writing

  1. Inspect first: Run agent-statsig gate get <name> (or config/experiment/segment get) to understand the current state before making changes
  2. Check rules: Run gate rule list <name> to see rule IDs before updating/removing rules
  3. Validate criteria: Run gate criteria if unsure which condition types or operators to use

Using tags

When creating gates, configs, or experiments, apply appropriate tags if the user's intent suggests a category (e.g., "mobile feature" → use --tag mobile if such a tag exists). Check available tags with tag list first. Tags must exist before they can be applied — create missing tags with tag create first.

Making changes

  1. Read the current state
  2. Identify what needs to change (add rule, modify values, change rollout %)
  3. Make the change with the appropriate command
  4. Verify by reading again

Error handling

All errors are JSON to stderr with a classification:

  • fixable_by: agent — you made a typo or used wrong syntax. Read the hint and retry.
  • fixable_by: human — credentials or permissions issue. Tell the user.
  • fixable_by: retry — transient error. Wait and retry once.

Quick Reference

# Explore (safe, read-only)
agent-statsig gate list [--search <text>] [--tag <tag>]
agent-statsig gate get <name>
agent-statsig config get <name>
agent-statsig experiment get <name>
agent-statsig segment get <name>

# Modify gates
agent-statsig gate enable <name>
agent-statsig gate disable <name>
agent-statsig gate rollout <name> --percent 50
agent-statsig gate rule add <name> --name "Rule" --criteria email --value user@co.com
agent-statsig gate rule update <name> --rule <id> --add-value new@co.com
agent-statsig gate rule remove <name> --rule <id>

# Modify configs (return values validated against schema)
agent-statsig config rule add <name> --name "Rule" --criteria email --value user@co.com --return-value '{"key":"val"}'

# Experiment lifecycle
agent-statsig experiment start <name>
agent-statsig experiment ship <name> --group <id> --reason "text"
agent-statsig experiment abandon <name> --reason "text"

# Segment IDs
agent-statsig segment ids add <name> --id user1 --id user2
agent-statsig segment ids remove <name> --id user1

# Manage tags
agent-statsig tag list
agent-statsig tag create <name> [--description <text>] [--is-core]
agent-statsig tag get <id>
agent-statsig tag update <id> [--name <name>] [--description <text>] [--is-core]
agent-statsig tag delete <id>

# Apply tags when creating/updating entities
agent-statsig gate create <name> --tag <tag-name>
agent-statsig config create <name> --tag <tag-name>
agent-statsig experiment create <name> --tag <tag-name>
agent-statsig gate update <name> '{}' --tag <tag-name>

Detailed Reference

For full command details with examples, run per-entity usage:

agent-statsig gate usage
agent-statsig config usage
agent-statsig experiment usage
agent-statsig segment usage
agent-statsig tag usage
agent-statsig usage                  # top-level overview

Key Concepts

Rules

  • Rules are evaluated top-to-bottom; first matching rule wins
  • Conditions within a rule are AND-ed together
  • Multiple rules act as OR (first match wins)
  • Default (no rule matches) = fail for gates, defaultValue for configs

Condition Types

25 built-in types. Most common:

  • email — match by email (operators: any, none, str_contains_any, str_contains_none)
  • user_id — match by user ID
  • country — match by country code
  • custom_field — match any user attribute (use --field to specify which)
  • public — matches everyone (used for rollout percentages)
  • passes_segment / passes_gate — compose with other entities

Default operator is any (case-insensitive match). Run gate criteria for the full list.

Dynamic Config Schemas

When a config has a JSON Schema, --return-value is validated before the API call. This catches type errors, missing required fields, and unknown fields locally.

Environments

Rules can be scoped to environments (staging, production, etc.) using --env. A rule with no environments applies to all environments.

Project Setup

If the project isn't configured yet:

agent-statsig project add <alias> --console-key <key> [--client-key <key>]
agent-statsig project test

Tell the user to get their Console API key from Statsig Console → Settings → Keys & Environments.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.42%
按下载量换算27

Claude

31.86%
按下载量换算23

Cursor

18.12%
按下载量换算13

Gemini CLI

9.97%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills