flashinfer-submission-tagger

flashinfer-submission-tagger is a skill for Codex from syhya/mlsys26-flashinfer-contest. It costs 100 tokens per session (1,585 once invoked), scanned A, original, Apache-2.0.

A tool for creating and pushing FlashInfer contest submission tags, such as submission-v3, in a Git repository.

In plain words
What is it for?
Use it when preparing a FlashInfer submission, including checking the repository, validating config.toml, creating the next tag, pushing it, and confirming the tagged commit.
Why use it?
It chooses the next tag safely, checks the repository and configuration layout, and verifies exactly which commit the contest evaluator will use.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: mentions Codex.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /Users/yue/.codex/skills/flashinfer-submission-tagger/scripts/check_config_topology.py.

Good fit Use it when preparing a FlashInfer submission, including checking the repository, validating config.toml, creating the next tag, pushing it, and confirming the tagged commit.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for flashinfer-submission-tagger

README.md
[![agentmods](https://agentmods.dev/badge/skills/syhya/mlsys26-flashinfer-contest/flashinfer-submission-tagger/github.svg)](https://agentmods.dev/skills/syhya/mlsys26-flashinfer-contest/flashinfer-submission-tagger)
Your own site
<a href="https://agentmods.dev/skills/syhya/mlsys26-flashinfer-contest/flashinfer-submission-tagger"><img src="https://agentmods.dev/badge/skills/syhya/mlsys26-flashinfer-contest/flashinfer-submission-tagger/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for flashinfer-submission-tagger

Your own site · 80×15
<a href="https://agentmods.dev/skills/syhya/mlsys26-flashinfer-contest/flashinfer-submission-tagger"><img src="https://agentmods.dev/badge/skills/syhya/mlsys26-flashinfer-contest/flashinfer-submission-tagger.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 100 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,585 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00100 $0.01585
Opus 5 $0.00050 $0.00792
Sonnet 5 $0.00020 $0.00317
Haiku 4.5 $0.00010 $0.00159

Measured 10d ago against content hash b34f76499072, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

flashinfer-submission-tagger scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/check_config_topology.py, scripts/tag_submission.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

agent-assisted/skills/flashinfer-submission-tagger/SKILL.md · 120 lines

How it starts

The opening of the file, as written. The whole thing — 120 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Flashinfer Submission Tagger

Overview

Create a new submission-vN tag for the current commit, push that tag to the remote repository, and verify the exact tag and commit that FlashInfer contest evaluation should consume.

Use the bundled script to compute the next tag deterministically instead of re-implementing version selection by hand. Use the bundled topology checker to block invalid config.toml layouts before commit, tag, or push.

Workflow

  1. Check repository state before tagging.
  • Read the current branch, commit SHA, existing submission-* tags, and remotes.
  • Assume origin is the push remote unless the user explicitly asks for another remote or origin is missing.
  1. Choose the tag name.
  • If the user provides a concrete tag, use it exactly.
  • Otherwise, select the next numeric version after the highest existing submission-vN.
  • Never reuse or retarget an existing tag unless the user explicitly asks for that destructive action.
  1. Validate config.toml topology before touching metadata. This is a hard gate.
  • Run:
python3 /Users/yue/.codex/skills/flashinfer-submission-tagger/scripts/check_config_topology.py --repo /path/to/repo
  • If the checker exits non-zero, STOP. Do not commit, tag, or push until the layout is fixed.
  • The checker only evaluates the submission surface: the repo root, immediate definition subdirectories, and the solution/ trees attached to them. It intentionally ignores archived artifacts under directories such as optimize_ops/ or reference/.
  • Accepted layouts:
    • Single-definition root layout: root config.toml + root solution/<language>/...
    • Definition-subdir layout: one or more <definition>/config.toml files, each paired with <definition>/solution/<language>/...
  • Forbidden layouts:
    • root config.toml in a multi-definition repo
    • both root config.toml and definition-subdir configs in the same repo
    • any config.toml nested under solution/
    • a config whose entry_point file does not exist under the resolved source dir
    • a resolved source dir with zero real source files

Read the full file on GitHub · 120 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 120 lines · 100 tokens per session scan A b34f76499072

Subscribe to this mod's changes

flashinfer-submission-tagger is a skill published in the GitHub repository syhya/mlsys26-flashinfer-contest (22 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 100 tokens to every session and 1,585 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.