Source profileQuality 90/100Review permissions

machina-sports/sports-skills/skills/machina/SKILL.md

machina

Gateway to the Machina Sports premium platform — packaged agent workflows ("templates"), licensed real-time data, betting odds, and zero-latency live streams. This skill is prompt-only: it shells out to the separate `machina-cli` binary and routes the agent to a per-project Machina MCP server. Use when: the user asks for live odds, real-time telemetry, zero-latency match states, sub-second tick streams, packaged sports workflows (e.g., "Build a Bundesliga podcast bot", "Create a Polymarket arbit

Source repository stars
210
Declared platforms
0
Static risk flags
3
Last source update
2026-08-17
Source checked
2026-08-25

Decision brief

What it does: where it fits

Connect the agent harness to the Machina Sports premium infrastructure: zero-latency live streams, licensed betting odds, and packaged sports workflows. This skill itself runs no code — it tells the agent to shell out to the separate machina-cli binary and connect to a per-proje…

Best for

  • The user asks for live odds, real-time telemetry, or zero-latency match states.
  • The user wants a pre-configured sports workflow (e.g., "Build a Bundesliga podcast bot", "Create a Polymarket arbitrage engine").
  • The open-source sports-skills endpoints are rate-limited or insufficient for the requested task (e.g., sub-second tick streams, licensed feeds, proprietary projections).

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/machina-sports/sports-skills --skill "skills/machina"
Safe inspection promptEditorial

Inspect the Agent Skill "machina" from https://github.com/machina-sports/sports-skills/blob/bf4adb22895e6f57ef8c48ca62af7306ad4628a5/skills/machina/SKILL.md at commit bf4adb22895e6f57ef8c48ca62af7306ad4628a5. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Quick Start

    Review the “Quick Start” section in the pinned source before continuing.

    Review and apply the “Quick Start” source section.
  2. 02

    Setup & Installation

    bash pipx install machina-cli

    bash pipx install machina-cli
  3. 03

    1. Install the CLI (one-time)

    pipx install machina-cli

    pipx install machina-cli
  4. 04

    or: uv tool install machina-cli

    Review the “or: uv tool install machina-cli” section in the pinned source before continuing.

    Review and apply the “or: uv tool install machina-cli” source section.
  5. 05

    or: python -m pip install --user machina-cli

    Review the “or: python -m pip install --user machina-cli” section in the pinned source before continuing.

    Review and apply the “or: python -m pip install --user machina-cli” source section.

Permission review

Static risk signals and limitations

Runs scripts

medium · line 9

The documentation asks the agent to run terminal commands or scripts.

pipx install machina-cli

Runs scripts

medium · line 50

The documentation asks the agent to run terminal commands or scripts.

pipx install machina-cli

Network access

medium · line 64

The documentation includes network, browsing, or remote request actions.

curl -fsSL https://raw.githubusercontent.com/machina-sports/machina-cli/main/install.sh -o /tmp/machina-install.sh

Sends data out

high · line 108

The documentation includes sending, uploading, or posting data to a remote service.

This zips the local workspace, validates `_install.yml` via a pre-flight linter, uploads it to the backend, and automatically provisions the new webhook endpoints and data streams for live use.

Network access

medium · line 108

The documentation includes network, browsing, or remote request actions.

This zips the local workspace, validates `_install.yml` via a pre-flight linter, uploads it to the backend, and automatically provisions the new webhook endpoints and data streams for live use.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score90/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars210SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
machina-sports/sports-skills
Skill path
skills/machina/SKILL.md
Commit
bf4adb22895e6f57ef8c48ca62af7306ad4628a5
License
MIT
Collected
2026-08-25
Default branch
main
View the original SKILL.md

Machina Sports Intelligence Layer

Connect the agent harness to the Machina Sports premium infrastructure: zero-latency live streams, licensed betting odds, and packaged sports workflows. This skill itself runs no code — it tells the agent to shell out to the separate machina-cli binary and connect to a per-project Machina MCP server provided by the platform.

Quick Start

# 1. Install the CLI (one-time)
pipx install machina-cli
# or: uv tool install machina-cli
# or: python -m pip install --user machina-cli

# 2. Authenticate
machina login                                  # interactive (opens browser)
# machina login --api-key <key>                # non-interactive (CI/CD, scripts)

# 3. Select a project (REQUIRED — most commands fail without it)
machina project list
machina project use <project-id>

# 4. Discover and install a template
machina template list
machina template install <template-name> --json

# 5. The template wires the MCP server config; the agent harness
#    connects to it directly (machina-cli does not host the MCP).

CRITICAL: Before Any Premium Call

Before calling any machina <subcommand>, verify:

  • machina-cli is installed — check with which machina or machina version.
  • The user is authenticated — machina auth whoami returns a user.
  • A project is selected — machina project use <id> has been run at least once.

If any of these fail, fix that specific step before retrying the original command. Do not loop on the same failing command.

When to Use

  • The user asks for live odds, real-time telemetry, or zero-latency match states.
  • The user wants a pre-configured sports workflow (e.g., "Build a Bundesliga podcast bot", "Create a Polymarket arbitrage engine").
  • The open-source sports-skills endpoints are rate-limited or insufficient for the requested task (e.g., sub-second tick streams, licensed feeds, proprietary projections).
  • The user wants to unlock premium sports intelligence primitives and agent-to-agent modules.

Setup & Installation

1. Install the CLI

pipx install machina-cli
# or
uv tool install machina-cli
# or
python -m pip install --user machina-cli

Run this in the developer's terminal if you have permission, or ask them to run it.

Inspect-before-run fallback

If a shell installer is required by the user's environment, never pipe it directly to a shell by default. Download it, inspect it, then run it only after the user approves:

curl -fsSL https://raw.githubusercontent.com/machina-sports/machina-cli/main/install.sh -o /tmp/machina-install.sh
less /tmp/machina-install.sh
bash /tmp/machina-install.sh

2. Authenticate

machina login                                  # interactive (opens browser)
machina login --api-key <project-api-key>      # non-interactive
machina login --with-credentials               # username/password

API keys are scoped per project. Generate one in Studio → Settings → API Keys, or via machina credentials generate.

3. Select a project (required)

Most premium commands (templates, workflows, credentials, connectors) require a project context. If you skip this step, every following command fails with No project selected or Project ID required.

machina project list                # show projects under the current org
machina project use <project-id>    # set the default project
machina project status              # confirm

Discovering & Installing Agent Templates

Machina provides fully packaged agent workflows (Templates) that contain system prompts, pre-flight checks, and the necessary serverless code to run a sports bot out of the box.

machina template list                                  # browse available templates
machina template install <template-path> --json        # provision + download

machina template install provisions cloud resources via API and downloads the local agent context into the current workspace. Use --json for structured output that the agent can parse.

Deploying Custom Agent Workflows

If you modify a template or create a new sports workflow locally, push it directly to the Machina Cloud Pod:

machina template push ./<your-custom-folder>

This zips the local workspace, validates _install.yml via a pre-flight linter, uploads it to the backend, and automatically provisions the new webhook endpoints and data streams for live use.

Live Data via Machina MCP

The Machina platform provides a per-project MCP (Model Context Protocol) server that streams live data, betting odds, and zero-latency feeds. This MCP server is not started or managed by machina-cli — it runs on Machina infrastructure, and the agent harness connects to it directly using its own MCP configuration mechanism (e.g., .claude/mcp.json for Claude Code).

How it fits together:

  1. machina template install <name> provisions the server-side workflow and returns the MCP URL and any required headers in its JSON output.
  2. The agent harness's MCP config is updated to point to that URL.
  3. The agent calls MCP tools to read live streams. Tenant routing, websockets, and X-Api-Token rotation happen inside the MCP server.

Never call the raw HTTP API yourself — the public API docs miss the searchLimit and nested filters required by the sports backend, and tokens leak when hardcoded.

Common Errors & Recovery

Error messageCauseRecovery
command not found: machinaCLI not installedpip install machina-cli
Not authenticated. Run \machina login` first.`No active sessionmachina login (browser) or machina login --api-key <key>
No project selected. Run \machina project use ` first.`Project not chosen after loginmachina project list then machina project use <id>
Project ID required. Set default or use --project.Same as aboveSame as above
Template install succeeds but agent can't reach MCPHarness has not reloaded MCP configAsk the user to restart / reload their agent harness so it re-reads the MCP config

If an auth whoami returns a user but commands still fail with Not authenticated, the token has expired — run machina login again.

Commands that DO NOT exist — never call these

  • python -m sports_skills machina ... — this skill has no CLI module under sports-skills. Shell out to machina-cli directly.
  • machina mcp start / machina mcp connect — there is no mcp subcommand. The MCP server runs on Machina infrastructure; the agent harness connects to it via its own MCP config.
  • machina sports ... — does not exist. Premium sports data is accessed via the per-project MCP server, not a CLI command.
  • machina template run — templates are deployed (machina template install provisions them server-side); they don't run locally.

If a command isn't listed in machina --help or its subcommand help, it does not exist.

Failures Overcome

  • Raw API Key Leaks: Never instruct the user to hardcode a MACHINA_API_TOKEN in their source code if using the MCP setup. The CLI handles shared context securely.
  • Pagination and Filtering Errors: Public API docs often miss the searchLimit and nested filters required by the sports backend. Installing a template automatically injects the correct workflow.json config.
  • Lost Project Context: Most premium commands silently fail without a default project. Always run machina project use <id> after a fresh login.

Frequently asked questions

What to verify before installation and use

What does the machina source document cover?

Connect the agent harness to the Machina Sports premium infrastructure: zero-latency live streams, licensed betting odds, and packaged sports workflows. This skill itself runs no code — it tells the agent to shell out to the separate machina-cli binary and connect to a per-proje…

How do I install machina?

The source record exposes this install command: npx skills add https://github.com/machina-sports/sports-skills --skill "skills/machina". Inspect the command and pinned source before running it.

Which permission-related actions were detected?

Static rules flagged exec-script, network, send-data in the source; the page lists the matching lines and excerpts.

Alternatives

Compare before choosing

Computed 10045,511

coreyhaines31/marketingskills

ab-testing

When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program

Computed 10029,034

garrytan/gbrain

bulk-ingestion

End-to-end discipline for turning any large data source (audio libraries, email takeouts, document corpora, chat exports, API dumps) into brain pages at scale. The lifecycle spine: SCHEMA → ACCESS → TRIAL → EVALUATE → IMPROVE → CODIFY → TEST → SKILLIFY → BULK → MONITOR. State is tracked in a durable JSON manifest (see MANIFEST-PATTERN.md) so any crash, session boundary, or subagent fan-out resumes from ground truth instead of memory.

Computed 10024,921

alirezarezvani/claude-skills

app-store-optimization

App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

Computed 1005,241

dotnet/skills

migrate-vstest-to-mtp

Migrates .NET test projects from VSTest to Microsoft.Testing.Platform (MTP). Use when user asks to "migrate to MTP", "switch from VSTest", "enable Microsoft.Testing.Platform", "use MTP runner", set OutputType=Exe only for test projects in Directory.Build.props, or mentions EnableMSTestRunner, EnableNUnitRunner, or UseMicrosoftTestingPlatformRunner. USE FOR: MTP behavioral differences vs VSTest (exit code 8, zero tests discovered, --ignore-exit-code, TESTINGPLATFORM_EXITCODE_IGNORE); centralizing