Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

nutmeg-learn肉豆蔻学习

Agent Skill

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

总安装

1,014

周安装

41

GitHub Stars

18

下载量

318
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/withqwerty/nutmeg --skill nutmeg-learn

简介

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

  • 适用于需要根据关键词或任务场景从来源线索中检索内容的场景。
  • 通过 npx skills add 命令安装,需指定 GitHub 仓库路径。
  • 安装前建议确认权限范围和维护状态,避免触发联网或文件读写操作。
  • 可结合原始 README 进一步核验具体用法和功能边界。

SKILL.md

Learn

Teach football analytics concepts, recommend resources, provide a learning path, and answer questions about data provider documentation — all adapted to the user's level.

Accuracy

Read and follow docs/accuracy-guardrail.md before answering any question about provider-specific facts (IDs, endpoints, schemas, coordinates, rate limits). Always use search_docs — never guess from training data.

First: check profile

Read .nutmeg.user.md. If it doesn't exist, tell the user to run /nutmeg first.

Glossary of core concepts

Chance quality metrics

MetricWhat it meansIntuition
xG (Expected Goals)Probability a shot results in a goal (0-1)"How good was the chance?"
xGOT (xG on Target)xG adjusted for shot placement in the goal"How good was the finish?"
xA (Expected Assists)xG of the shot that resulted from a pass"How good was the chance created?"
xT (Expected Threat)Value added by moving the ball to a more dangerous area"How much did this pass/carry increase goal threat?"
PSxG (Post-Shot xG)Same as xGOT. StatsBomb terminology.

Possession and pressing

MetricWhat it means
PPDAPasses allowed per defensive action. Lower = more pressing
High pressDefensive actions in the opponent's defensive third
CounterpressureImmediate defensive reaction after losing the ball
Build-upHow a team progresses the ball from defence to attack
Possession valueHow much each action contributes to scoring probability

Passing

MetricWhat it means
Progressive passPass that moves the ball significantly toward the opponent's goal
Key passPass directly leading to a shot
AssistPass directly leading to a goal
Through ballPass played into space behind the defence
Switch of playLong pass crossing the centre of the pitch
Pass completion %Successful passes / total passes (misleading in isolation)

Shooting

MetricWhat it means
Shots per 90Shot volume normalised by playing time
Conversion rateGoals / shots (noisy, small sample issues)
Big chanceHigh-xG opportunity (typically xG > 0.3)
Shot on target %Shots on target / total shots

Defensive

MetricWhat it means
Tackles wonSuccessful tackle attempts
InterceptionsReading and intercepting opponent passes
ClearancesDefensive clearances (often under pressure)
BlocksBlocking shots or passes
Aerial duels wonHeaders contested and won

Per-90 normalisation

Always normalise player stats per 90 minutes, not per match:

per_90 = (raw_stat / minutes_played) * 90

Why: a player with 2 goals in 180 minutes (per 90: 1.0) is performing the same as one with 1 goal in 90 minutes. Per-match stats penalise part-time players.

Minimum sample: ~900 minutes (10 full matches) before per-90 stats are meaningful.

Learning path

Stage 1: Getting started

  1. Read: "The Numbers Game" by Chris Anderson and David Sally. Accessible introduction to football analytics.
  2. Watch: Tifo Football YouTube channel for visual explainers of tactical and analytical concepts.
  3. Do: Load StatsBomb open data and make a shot map. Just plot the x,y coordinates of shots, colour by goal/no goal.
  4. Understand: What xG is and isn't. Read StatsBomb's public xG methodology.

Stage 2: Building skills

  1. Read: "Soccermatics" by David Sumpter. Mathematical modelling applied to football.
  2. Learn: How to make pass networks and xG timelines.
  3. Practice: Analyse a full match. Write up what happened and what the data shows.
  4. Explore: FBref for season-level stats. Compare teams across multiple dimensions.
  5. Tool up: Learn pandas/polars (Python), tidyverse (R), or D3.js (JavaScript) for data manipulation and visualisation.

Stage 3: Going deeper

  1. Read key papers:

- Decroos et al. (2019) "Actions Speak Louder than Goals" (VAEP model) - Fernandez & Bornn (2018) "Wide Open Spaces" (pitch control) - Karun Singh (2018) "Introducing Expected Threat" (xT) - Spearman (2018) "Beyond Expected Goals" (pitch control + off-ball)

  1. Build a model: Train your own xG model. Compare with provider xG.
  2. Tracking data: If you can access it, explore player positioning data.
  3. Community: Join football analytics Twitter/X, attend OptaPro Forum or StatsBomb Conference talks (many are free online).

Stage 4: Professional level

  1. Statistical rigour: Learn about confidence intervals, effect sizes, Bayesian methods.
  2. Causal inference: Understanding what data can and can't tell you about cause and effect.
  3. Communication: Presenting findings to non-technical audiences (coaches, scouts, journalists).
  4. Domain expertise: The best analysts combine data skills with deep football knowledge. Watch matches, understand tactics.

Community resources

ResourceWhat it is
StatsBomb open dataFree event data, best starting point
Friends of Tracking (YouTube)University-level video lectures on football analytics
McKay Johns (YouTube)Python football analytics tutorials
FBrefFree season stats, powered by StatsBomb data
The AthleticJournalism with analytics focus
OptaPro ForumAnnual analytics conference (talks online)
StatsBomb ConferenceAnnual conference with published research
r/socceranalyticsReddit community
Football Analytics SlackCommunity workspace

Common misconceptions

  1. "More possession = better." Possession without purpose is meaningless. Quality of chances matters more.
  2. "xG is a prediction." xG is a description of chance quality, not a prediction of future performance.
  3. "This player has 0.8 xG per 90, so they'll score 30 goals." Small samples, regression to the mean, context all matter.
  4. "Data analytics replaces scouting." It complements it. Data finds candidates; humans evaluate fit, personality, potential.
  5. "All xG models are the same." They vary significantly by input features, training data, and methodology.

Provider documentation

When the user asks about provider-specific details — event types, qualifier IDs, coordinate systems, API schemas, field mappings — use the football-docs MCP tools.

Answering specific questions

Use search_docs with the user's query. Add a provider filter if they're asking about a specific provider.

Examples:

  • "What qualifier ID is a headed goal in Opta?" → search_docs(query="headed goal qualifier", provider="opta")
  • "How does StatsBomb represent xG?" → search_docs(query="xG expected goals", provider="statsbomb")
  • "What free data sources have shot-level data?" → search_docs(query="shot data free", provider="free-sources")

Comparing providers

Use compare_providers when the user wants to understand differences.

Examples:

  • "How do Opta and StatsBomb represent passes differently?" → compare_providers(topic="pass event types", providers=["opta", "statsbomb"])
  • "Which providers have xG data?" → compare_providers(topic="xG expected goals")

Discovering what's available

Use list_providers to show what documentation is indexed and its coverage.

Cross-referencing with kloppy

When comparing providers, also search for kloppy's mapping documentation. kloppy defines how each provider's events map to a canonical model, which helps the user understand what maps cleanly between providers, what information is lost in translation, and what becomes a GenericEvent (unmapped).

Response format

  1. Give the direct answer first (the qualifier ID, the field name, etc.)
  2. Add context about how it works in practice
  3. If relevant, mention how other providers handle the same concept
  4. Adapt technical depth to the user's experience level

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.54%
按下载量换算107

Claude

30.19%
按下载量换算96

Cursor

18.3%
按下载量换算58

Gemini CLI

8.36%
按下载量换算27

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills