Token导航 LogoToken导航TokenDH.com
待分类只读github未标认证来源可访问许可证需确认审计通过

opponent-archetype-classifier对手原型分类器

Agent Skill

opponent-archetype-classifier 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

196

周安装

8

GitHub Stars

85

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/lyndonkl/claude --skill opponent-archetype-classifier

简介

该技能用于处理对手原型分类相关的协作任务。

  • 适用于游戏 AI、策略分析和对手建模场景。
  • 通过 GitHub 安装,支持多种 AI 编程环境使用。
  • 建议在使用前明确分类标准和评估指标。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • opponent-archetype-classifier 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Opponent Archetype Classifier

Table of Contents

Example

Scenario: Fantasy baseball league, Week 5. Classify opponent "Manager A" into one of six archetypes -- balanced, stars_and_scrubs, punt_sv, punt_sb, punt_wins_qs, hitter_heavy.

Inputs (abbreviated; full taxonomy in resources/template.md):

archetype_taxonomy:
  balanced:          {prior: 0.30, feature_distributions: {sp_roster_share: {mean: 0.40, std: 0.06}, closer_count: {mean: 2.0, std: 0.6}, sb_speed_count: {mean: 3.0, std: 1.0}, moves_per_week: {mean: 2.5, std: 1.0}, bid_aggression: {low: 0.5, high: 0.5}}}
  stars_and_scrubs:  {prior: 0.15, ...}
  punt_sv:           {prior: 0.15, feature_distributions: {closer_count: {mean: 0.3, std: 0.4}, ...}}
  punt_sb:           {prior: 0.15, feature_distributions: {sb_speed_count: {mean: 0.8, std: 0.7}, ...}}
  punt_wins_qs:      {prior: 0.10, feature_distributions: {sp_roster_share: {mean: 0.20, std: 0.05}, closer_count: {mean: 3.0, std: 0.8}, moves_per_week: {mean: 4.0, std: 1.2}, ...}}
  hitter_heavy:      {prior: 0.15, feature_distributions: {sp_roster_share: {mean: 0.28, std: 0.05}, ...}}

observed_features:
  sp_roster_share:   0.22    # low -- thin on starters
  closer_count:      3       # heavy RP
  sb_speed_count:    2       # moderate speed
  moves_per_week:    4.2     # high activity
  bid_aggression:    high    # active FAAB bidder

observation_weight: 0.7        # ~4 weeks of data

Computation (per-feature log-likelihood, summed, exponentiated, multiplied by prior, normalized):

Archetypelog L(features)L * priorNormalized Posterior
balanced-14.81.1e-70.04
stars_and_scrubs-12.55.6e-70.21
punt_sv-18.21.8e-90.00
punt_sb-22.62.3e-110.00
punt_wins_qs-10.11.8e-60.68
hitter_heavy-13.24.2e-70.16

Outputs:

posterior:
  balanced: 0.04
  stars_and_scrubs: 0.21
  punt_sv: 0.00
  punt_sb: 0.00
  punt_wins_qs: 0.68
  hitter_heavy: 0.16

map_archetype: punt_wins_qs

classification_confidence: 47.6     # = max_posterior (0.68) * observation_weight (0.7) * 100

best_response_hints:
  - "Concede K and QS; lock 6 of remaining 8 cats"
  - "Don't stream starting pitchers against them"
  - "They will dominate SV and ratios via all-RP staff; push hitting cats hard"

feature_contribution_breakdown:
  sp_roster_share:  {map_likelihood: 0.92, alternative_max: 0.15, likelihood_ratio: 6.1}   # low SP share -- strong punt_wins_qs signal
  closer_count:     {map_likelihood: 0.52, alternative_max: 0.46, likelihood_ratio: 1.1}   # 3 closers fits several archetypes
  sb_speed_count:   {map_likelihood: 0.38, alternative_max: 0.41, likelihood_ratio: 0.9}   # not discriminating
  moves_per_week:   {map_likelihood: 0.33, alternative_max: 0.28, likelihood_ratio: 1.2}
  bid_aggression:   {map_likelihood: 0.70, alternative_max: 0.60, likelihood_ratio: 1.2}

assumptions_flagged:
  - "Conditional independence across features assumed -- sp_roster_share and moves_per_week may be correlated (active punt strategy drives both)"
  - "Feature distributions are SME priors, not empirically fit -- refresh after season 1 with posterior data"

Note on confidence: posterior peaks at 0.68 but observation_weight=0.7 (only 4 weeks of data) dampens confidence to 47.6. Above the 40 threshold, so MAP is reported; but caller is advised that another 2-3 weeks of observation will sharpen the call.

Workflow

Copy this checklist and track progress:

Opponent Archetype Classification Progress:
- [ ] Step 1: Load archetype taxonomy (names, priors, feature distributions)
- [ ] Step 2: Collect observed features for the target opponent
- [ ] Step 3: Compute per-feature likelihood under each archetype
- [ ] Step 4: Combine likelihoods (assume conditional independence; flag it)
- [ ] Step 5: Apply Bayes rule, normalize posterior
- [ ] Step 6: Select MAP archetype; compute confidence
- [ ] Step 7: Check inconclusive threshold; report or defer
- [ ] Step 8: Produce feature-contribution breakdown and best-response hints

Step 1: Load archetype taxonomy

The caller supplies the taxonomy. See resources/template.md for required fields.

  • Each archetype has a name, a prior probability, and a feature distribution per observable
  • Priors sum to 1.0 (normalize if not)
  • Each feature has either a parametric distribution (Gaussian with mean/std) or a categorical (value -> probability)
  • Each archetype has a documented best_response string array

Step 2: Collect observed features

Observed features must match feature names in the taxonomy. Missing features are dropped (not imputed) and flagged.

  • Feature names match taxonomy keys exactly
  • Numeric features in the taxonomy's expected units
  • Categorical features use the taxonomy's category labels
  • observation_weight (0-1) supplied; rises with sample size -- see methodology.md

Step 3: Compute per-feature likelihood

For each (archetype, feature) pair compute P(feature_value | archetype). See methodology.md.

  • Gaussian feature: L = (1/(std*sqrt(2*pi))) * exp(-0.5 * ((x - mean)/std)^2)
  • Categorical feature: L = P_archetype[category] with Laplace smoothing if zero
  • Work in log-space (log L) to avoid underflow when combining 5+ features

Step 4: Combine likelihoods (conditional independence)

First-approximation assumption: features are conditionally independent given archetype. This is rarely exactly true; flag it.

  • Sum log-likelihoods across features per archetype
  • Flag correlated feature pairs (e.g., sp_roster_share and moves_per_week in fantasy baseball)
  • If two features are strongly correlated, consider merging them or down-weighting one; document the choice

Step 5: Apply Bayes rule, normalize

posterior_unnorm[a] = exp(sum_log_L[a]) * prior[a]
posterior[a] = posterior_unnorm[a] / sum_a(posterior_unnorm[a])
  • Compute in log-space for numerical stability, then subtract max before exponentiating
  • Verify sum(posterior) == 1.0 within rounding
  • Document any archetype with posterior < 1e-6 as "ruled out"

Step 6: Select MAP archetype; compute confidence

map_archetype = argmax(posterior)
classification_confidence = max(posterior) * observation_weight * 100
  • MAP is the most likely archetype, not the only possibility
  • Confidence blends how peaked the posterior is with how much we trust the observation

Step 7: Inconclusive threshold

If classification_confidence < 40:

  • Return map_archetype: "inconclusive"
  • Return the full posterior anyway (caller may still act on the top-2)
  • Advise: "Collect 2-3 more weeks of observation before committing to a classification"

Step 8: Feature-contribution breakdown + best-response hints

  • For each feature compute likelihood ratio: L(feature | MAP) / max_{a!= MAP} L(feature | a)
  • Pull best_response_hints from the MAP archetype's documented string array
  • Return alongside the posterior so caller sees *why* this archetype was selected

Common Patterns

Pattern 1: Fantasy sports (baseball, basketball, hockey) manager archetypes

  • Taxonomy: 5-8 archetypes like balanced, punt_<cat>, stars_and_scrubs, inactive covering category-league strategy.
  • Features: roster composition by position, transaction frequency, FAAB aggression, lineup-setting accuracy.
  • Conditional-independence risk: several features covary (an inactive manager has low moves AND low bids AND stale lineup). Down-weight or collapse.
  • Observation weight: 0.3 by Week 2, 0.6 by Week 5, 0.85 by Week 10.

Pattern 2: Poker opponent archetypes

  • Taxonomy: tight_aggressive (TAG), loose_aggressive (LAG), tight_passive (rock), loose_passive (calling station), maniac.
  • Features: VPIP, PFR, 3-bet %, aggression factor, c-bet frequency, showdown frequency.
  • Conditional-independence risk: VPIP and PFR are tightly linked; keep both but note the correlation.
  • Observation weight: rises sharply with hand count -- 0.4 at 100 hands, 0.75 at 500 hands, 0.9 at 2000+.

Pattern 3: DFS lineup-construction archetypes

  • Taxonomy: cash_game_optimizer, GPP_ceiling_chaser, contrarian_pivot, chalk_herding.
  • Features: average salary usage, stack count, ownership-vs-projection ratio, tournament vs cash entry split.
  • Conditional-independence risk: stack count and ownership-vs-projection covary for GPP players.

Pattern 4: M&A / auction bidder archetypes

  • Taxonomy: strategic_premium_bidder, financial_disciplined_bidder, fishing_expedition, structured_earnout_preferer.
  • Features: announced bid count per quarter, strategic vs financial press-release language, premium multiple paid, deal structure (cash vs stock vs earnout).
  • Observation weight: low at any single deal; rises with repeated bidding history.

Guardrails

  1. Conditional independence is almost never exactly true. Always flag it. If two features are strongly correlated (|r| > 0.6), merge them into a single composite feature or down-weight one by 50%. Otherwise the confident archetype gets credited twice for the same underlying signal.
  2. Priors matter when data is thin. Uniform priors are a choice, not a neutral default. Use domain-informed priors when the population distribution is known (e.g., in a 12-team fantasy league, inactive has a real base rate of ~1-2 managers, not 1/12).
  3. Numeric stability: work in log-space. Multiplying 5+ small likelihoods underflows to 0 in float64. Sum log-likelihoods, subtract the max log-posterior before exponentiating, then normalize.
  4. Laplace smoothing for categoricals. If an archetype has P(category=X) = 0 in its distribution and the observation is X, the posterior for that archetype becomes 0 -- permanently ruling it out on one data point. Apply add-epsilon smoothing (epsilon = 0.01 is typical).
  5. Inconclusive is a feature, not a failure. A low-confidence classification is valuable information -- it tells the caller to gather more data before committing. Don't force a MAP when confidence is below 40.
  6. Best-response hints come from the taxonomy, not the classifier. The skill should not invent strategy; it should retrieve what the taxonomy author documented for that archetype. If the taxonomy's best_response is empty, return an empty array and note that the taxonomy needs enrichment.
  7. Posterior is a distribution, not a point estimate. When downstream agents consume the output, they should ideally consume the full posterior (and make expected-value decisions over it) rather than collapsing to MAP. Expose both.
  8. Update sequentially as new observations arrive. The current week's posterior becomes next week's prior. See methodology.md for the recursive formula.
  9. Feature contribution breakdown guards against overfitting. If one feature's likelihood ratio is > 10, that single feature is driving the classification -- verify the feature was measured correctly before trusting the result.
  10. Refresh feature distributions with empirical data once available. Initial distributions are SME priors. After N opponents have been labelled and observed, fit the distributions empirically and replace the SME priors.

Quick Reference

Key formulas:

Gaussian likelihood:
  L(x | a) = (1 / (std_a * sqrt(2*pi))) * exp(-0.5 * ((x - mean_a) / std_a)^2)

Categorical likelihood (with Laplace smoothing, epsilon = 0.01):
  L(x = c | a) = (count_a[c] + epsilon) / (sum_c' count_a[c'] + epsilon * num_categories)

Joint likelihood (conditional independence assumption):
  L(features | a) = prod_f L(feature_f | a)

Log-space joint likelihood:
  log L(features | a) = sum_f log L(feature_f | a)

Bayes posterior:
  posterior(a) proportional to L(features | a) * prior(a)
  posterior(a) = posterior_unnorm(a) / sum_a' posterior_unnorm(a')

MAP selection:
  map_archetype = argmax_a posterior(a)

Classification confidence:
  confidence = max_a posterior(a) * observation_weight * 100
  if confidence < 40:
      map_archetype = "inconclusive"

Sequential update (week t):
  prior_t(a) = posterior_{t-1}(a)
  posterior_t(a) proportional to L(new_features_t | a) * prior_t(a)

Feature contribution (likelihood ratio):
  LR(feature_f) = L(feature_f | MAP) / max_{a != MAP} L(feature_f | a)

Confidence bands:

ConfidenceInterpretationAction
0-39InconclusiveGather more data
40-59Weak MAPTreat MAP as tentative; hedge downstream decisions
60-79Solid MAPAct on MAP but keep top-2 in mind
80-100Confident MAPCommit to MAP

Key resources:

Inputs required:

  • archetype_taxonomy: dict of archetype_name -> {prior, feature_distributions, best_response}
  • observed_features: dict of feature_name -> observed value
  • observation_weight: 0-1, how much to trust the observation vs the prior
  • archetype_prior (optional): dict of archetype_name -> prior; defaults to taxonomy priors (or uniform)

Outputs produced:

  • posterior: dict<archetype, probability>, sums to 1
  • map_archetype: string, most likely archetype (or "inconclusive")
  • classification_confidence: 0-100
  • best_response_hints: string[], pulled from the MAP archetype's documented best-response
  • feature_contribution_breakdown: dict<feature, {map_likelihood, alternative_max, likelihood_ratio}>
  • assumptions_flagged: string[], e.g., correlated features, smoothing applied, priors forced uniform

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.63%
按下载量换算22

Claude

30.27%
按下载量换算19

Cursor

20.5%
按下载量换算13

Gemini CLI

9.85%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills