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

score-and-tier分数和等级

Agent Skill

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

总安装

451

周安装

19

GitHub Stars

7

下载量

158
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/openfunnel/openfunnel --skill score-and-tier

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 支持基于关键词、任务场景或来源线索进行信息检索与筛选。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • score-and-tier 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Dynamic Account Scoring and Tiering

OpenFunnel runs thousands of signals daily, producing a universe of accounts with rich signal data (job postings, social posts, engagement, job changes). This skill scores that universe and buckets accounts into tiers so customers can operationalize it.

Customers do NOT think in terms of signals. They don't want to configure "hiring + socials + engagement." They want:

  • Pain-based scoring (OpenFunnel recommended) — "What pain does your product solve?" → we score everything through that lens
  • Custom prompt — customer describes their own scoring criteria in plain English

The signals are evidence the scoring reads. Not knobs the customer turns.


Scoring Universe

The scoring universe is all OF accounts. This includes:

PoolEvidence available
OF onlyTraits + signals (job postings, social posts, engagement, job changes)
OF + CRMTraits + signals + internal CRM data (deal stage, outreach history, pipeline status). CRM data is already attached to OF accounts via CRM sync — V2 batch returns crm_status and crm_details.

Accounts in the customer's CRM that have zero OF signal coverage do not enter scoring. OF's signal coverage (especially deep enriches running across thousands of signals) is robust enough that any account showing buying activity will be picked up.

CRM Coverage Gap

Some high-priority CRM accounts may not have OF signals. This is a coverage gap, not a scoring gap. The skill should surface it:

"X of your CRM accounts have no OF signal coverage. Want to import them for deep enrichment?"

Import flow: Customer provides a CSV of domains for accounts they want scored. These get deep enriched (15-30 min async per account), enter the OF universe with signal data, and then enter scoring alongside everything else.

This is manual and intentional — bulk deep enriching the entire CRM is too expensive and most CRM accounts are garbage. The customer picks the ones that matter.


API Calls

This skill bundles two scripts in the same directory as this SKILL.md file. Never read or reference API credentials directly.

  • signup.sh — handles authentication. Writes credentials to .env internally. Never exposes the API key.
  • api.sh — handles all authenticated API calls. Reads credentials from .env internally.

First, resolve the script paths relative to this file's location:

SKILL_DIR="$(dirname "$(find ~/.agents/skills -name SKILL.md -path "*/score-and-tier/*" 2>/dev/null | head -1)")"
API="$SKILL_DIR/api.sh"
SIGNUP="$SKILL_DIR/signup.sh"

Then use $SIGNUP for auth and $API for all other calls.

Part 0: Agent Auth Check

Before anything, test if credentials are working by running:

bash "$API" POST /api/v1/signal/get-signal-list '{"pagination": {"limit": 1, "offset": 0}}'

If the call succeeds (returns JSON with signals): skip to Part 1.

If the call fails (returns an error or missing credentials message):

### Welcome to OpenFunnel

OpenFunnel turns daily events in your market into pipeline
— using OpenFunnel's Event Intelligence engine.

To get started, I'll authenticate you via the API.

**What's your work email?**

Wait for user input. Then:

  1. Run bash "$SIGNUP" start "<user_email>"
  2. Tell the user a 6-digit code was sent: I sent a 6-digit verification code to **{email}**. Reply with the code.
  3. Wait for input. Run bash "$SIGNUP" verify "<user_email>" "<code>"
  4. On success, the response is: {"status": "authenticated", "user_id": "..."}. Credentials are written to .env and .gitignore is updated automatically.
  5. Verify with bash "$API" POST /api/v1/signal/get-signal-list '{"pagination": {"limit": 1, "offset": 0}}'
  6. If verification succeeds → continue to ICP check
  7. If sign-up fails → ask user to retry
  8. If verify fails → tell user the code was invalid or expired (up to 10 attempts in 24 hours), offer to retry or resend

ICP Check

After auth, fetch ICP profiles via bash "$API" GET /api/v1/icp/list.

If ICPs exist: note the available ICPs and continue to Part 1.

If no ICPs exist:

You don't have an ICP profile yet. A quick one will make results much sharper —
it filters by company size, location, and the roles you're targeting.

1. **Quick setup** (recommended) — takes 30 seconds
2. **Skip** — auto-create a broad fallback ICP and continue

If quick setup → collect ICP name, target roles, company size, and location. Create via bash "$API" POST /api/v1/icp/create '<json_body>'.

If skip → auto-create a broad fallback ICP:

{
  "name": "Broad Default ICP",
  "target_roles": ["Any"],
  "employee_ranges": ["1-10", "11-50", "51-200", "201-500", "501-1000", "1001-5000", "5001-10000", "10001+"],
  "location": ["Any"]
}

Call bash "$API" POST /api/v1/icp/create '<json_body>', then tell the user:

I created a default ICP profile: **{name}** (ID: {id})

This keeps things running. For sharper results, set up a proper ICP segment
with your target roles, company size, and location using the `advanced-account-setup` skill.

Continue to Part 1.


Part 1: First-Time Init Scoring

One-time setup: score the full account universe, bucket into tiers, create tier audiences.

Step 1: Pick source audience

List audiences. Customer picks the one containing their account universe.

Optionally surface CRM coverage gap: check for CRM accounts with no OF signals and offer import.

Step 2: Pick scoring model

How would you like to score these accounts? 1. Pain-based (recommended) — scores each account based on how urgently they need what you sell 2. Custom — describe your own scoring criteria in plain English

Step 3: Get the scoring lens

  • Pain-based → "What pain does your product solve? Example: 'We help companies migrate off legacy ERPs to cloud-native'"
  • Custom → customer provides their criteria

This is the lens. Every account's signals get read through it.

Step 4: Score accounts

For each account in the audience:

  1. Pull V2 batch data (inline signal content — actual job posting text, social posts, context, CRM details)
  2. Pull timeline (chronological events)
  3. Read all evidence against the scoring lens
  4. Assign score (0-100) + reasoning (1-2 sentences)

Step 5: Tier

Present the scored distribution. Customer defines tiers — either:

  • Threshold-based: "Tier 1 = 80+, Tier 2 = 50-79, Tier 3 = below 50"
  • Or customer tells us their bucketing logic

Output: every account has a score, reasoning, and tier.

Step 6: Pipe to tier audiences

Create a new audience per tier. Each audience is named by tier (e.g. "Tier-1", "Tier-2", "Tier-3") and contains the account IDs that landed in that bucket.

Use bash "$API" POST /api/v1/audience/create '{"audience_name": "...", "account_ids": [...]}' to create each tier audience.


Part 2: Scoring New Accounts

Once accounts are scored, tiered, and assigned — they stay put. No re-scoring, no tier movement. New signals on existing accounts directly benefit the rep who owns them.

The continuous piece is new accounts entering the OF universe. Signals fire daily, producing new accounts that weren't in the last scoring run. These need to be scored, tiered, and assigned.

Flow

Runs on a cron (e.g. daily). Uses the alerts API to detect new accounts.

  1. Poll alertsbash "$API" GET /api/v1/insights/alerts '{"days": N, "limit": N, "offset": 0}' filtered by view_name matching the master scoring audience. Returns newly discovered accounts since last check.
  2. Diff — compare alert account IDs against already-scored accounts. The delta = new accounts to score.
  3. Score new accounts — same lens (pain-based or custom prompt), same rubric, same four dimensions.
  4. Tier new accounts — apply the same tier boundaries from init scoring.
  5. Add to tier audiencesbash "$API" POST /api/v1/audience/add-accounts '{"audience_id": ID, "account_ids": [...]}' for each tier.
  6. Enter assignment — new accounts in each tier are available for assignment (round robin, etc.)

What stays the same

  • The scoring lens (set during init, doesn't change)
  • The tier boundaries (set during init)
  • Existing accounts in their tiers (don't move)

What changes

  • The source audience grows as OF picks up new accounts from signals
  • New accounts need to be caught, scored, and placed

How Scoring Works

Time is the most important factor. Pain has a shelf life. A perfect-fit signal from 90 days ago with nothing since is stale, not hot.

Read the timeline as a narrative, not a list. A single signal is a hint. A sequence over weeks is a story.

Four dimensions (use judgment, not mechanical buckets):

1. Pain Relevance Does this account show signs of having the pain described in the scoring lens?

  • Job descriptions describing the problem (read the actual content, not just titles)
  • Social posts discussing the pain area
  • Tech stack that creates or relates to the pain
  • Industry alignment

2. Temporal Signal When did the pain surface? Is it still alive? This dimension can override everything else.

  • Signal from 90 days ago with no follow-up = cold. Score LOW.
  • Weaker signal from last week > strong signal from 3 months ago
  • Velocity: signals clustering in recent weeks = active and building
  • Decay: gaps in the timeline after initial signals = cooling off
  • Trigger → follow-through: did the triggering event (new hire, funding, leadership change) lead to more activity? If yes = escalating. If no = stalled.

3. Buying Window Can they act now?

  • New leadership in relevant function
  • Recent funding
  • Active hiring in the area
  • Multiple signal types pointing at same pain = high conviction

4. Story Coherence Do signals tell a connected narrative?

  • Isolated signal = maybe noise, score conservatively
  • Connected signals across time = real pattern
  • Example: Jan hired VP Eng → Feb posted about migration challenges → Mar hiring cloud engineers = escalating story

The score should reflect: "If I were selling a solution to [pain], how excited would I be about this account RIGHT NOW — today?"


Runtime

StepCall
Step 1bash "$API" POST /api/v1/audience/get-audience-list '{"limit": N, "offset": 0}'
Step 1bash "$API" POST /api/v1/audience/ '{"audience_id": ID}'
Step 4bash "$API" POST /api/v2/account/batch '{"account_ids": [...]}'
Step 4bash "$API" GET /api/v1/account/{accountId}/timeline '{"days": N, "limit": N, "offset": 0}'
Step 6bash "$API" POST /api/v1/audience/create '{"audience_name": "...", "account_ids": [...]}'
Part 2bash "$API" GET /api/v1/insights/alerts '{"days": N, "limit": N, "offset": 0}'
Part 2bash "$API" POST /api/v1/audience/add-accounts '{"audience_id": ID, "account_ids": [...]}'
NOTE: 3 API calls per account (summary + V2 batch + timeline). Large audiences (100+) will be slow.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.54%
按下载量换算62

Claude

28.69%
按下载量换算45

Cursor

18.99%
按下载量换算30

Gemini CLI

9.29%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills