mise-complete

mise-complete is a skill for Claude Code from pantheon-org/tekhne. It costs 76 tokens per session (1,022 once invoked), scanned A, original, MIT.

A skill for using Mise, a tool that installs and manages programming-language runtimes and project commands. It standardizes settings in a mise.toml file for local development and continuous integration (CI).

In plain words
What is it for?
It helps install runtimes, define project tasks, manage environment variables, migrate from tools such as asdf or nvm, and diagnose Mise setup problems.
Why use it?
It reduces differences between developers' machines and CI by pinning tool versions and making common tasks repeatable.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is sh skills/agentic-harness/skill-quality-auditor/scripts/evaluate.sh mise-complete --json.

Good fit It helps install runtimes, define project tasks, manage environment variables, migrate from tools such as asdf or nvm, and diagnose Mise setup problems.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/pantheon-org/tekhne
agentmods
npx agentmods add skills/pantheon-org/tekhne/mise-complete

Made for: Claude Code.

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 mise-complete

README.md
[![agentmods](https://agentmods.dev/badge/skills/pantheon-org/tekhne/mise-complete/github.svg)](https://agentmods.dev/skills/pantheon-org/tekhne/mise-complete)
Your own site
<a href="https://agentmods.dev/skills/pantheon-org/tekhne/mise-complete"><img src="https://agentmods.dev/badge/skills/pantheon-org/tekhne/mise-complete/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 mise-complete

Your own site · 80×15
<a href="https://agentmods.dev/skills/pantheon-org/tekhne/mise-complete"><img src="https://agentmods.dev/badge/skills/pantheon-org/tekhne/mise-complete.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,022 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Tool Misuse · line 114
    Tool defaults are unsafe or overly permissive (e.g. disabled TLS verification, no authentication, world-writable permissions). Unsafe defaults widen the attack surface.
    Fix: Override unsafe defaults with secure settings (verify=True, auth required, restrictive permissions). Review and harden all tool configurations.
How audits are shown
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.00076 $0.01022
Opus 5 $0.00038 $0.00511
Sonnet 5 $0.00015 $0.00204
Haiku 4.5 $0.00008 $0.00102

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

Security

Grade A, and why

mise-complete 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 9d ago.

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.

skills/package-mgmt/mise-complete/SKILL.md · 163 lines

How it starts

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

Mise Complete

When to Use

Use this skill when setup, version management, or task automation needs to be standardized with Mise.

When Not to Use

Do not use this skill when the repository intentionally uses another tool manager as the source of truth.

Core Principles

  1. Keep one canonical mise.toml per project scope.
  2. Pin tool versions for reproducible builds.
  3. Make tasks deterministic and non-interactive by default.
  4. Keep secrets out of committed task definitions.

Deterministic Workflow

  1. Detect existing tool managers and migration constraints.
  2. Define or update mise.toml tool versions.
  3. Add or normalize tasks for common workflows.
  4. Configure environment variables by scope.
  5. Install configured tools and validate with mise install && mise doctor.
  6. If mise install fails, run mise doctor to diagnose path or plugin issues, then re-run mise install.

Quick Commands

Install configured tools

mise install

Expected result: configured runtimes are installed for the current project.

Verify environment health after install

mise doctor

Expected result: no errors reported; any warnings indicate misconfigured plugins or PATH issues to resolve before proceeding.

Verify active tool versions match pinned values

mise ls

Expected result: each tool shows the pinned version from mise.toml as the active version.

Pin a tool version

mise use node@22

Expected result: mise.toml updated with pinned Node version.

Run a named task

mise run test

Expected result: task executes with the environment defined by Mise.

Inspect effective environment

mise env

Expected result: resolved environment variables and tool paths are printed.

Evaluate this skill quality

sh skills/agentic-harness/skill-quality-auditor/scripts/evaluate.sh mise-complete --json

Expected result: updated audit dimensions and grade.

mise.toml Example

Read the full file on GitHub · 163 lines

Files

What ships with it

36 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. 9d ago First seen · 163 lines · 76 tokens per session scan A aac9891e54fc

Subscribe to this mod's changes

mise-complete is a skill published in the GitHub repository pantheon-org/tekhne (10 stars, last pushed yesterday), licensed MIT. It adds 76 tokens to every session and 1,022 once invoked, about $0.0004 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-09-03.

Related

Other skills, from other repositories

ci-cd-and-automation

Automates CI/CD pipeline setup. Use when setting up or modifying build and deployment pipelines. Use when you need to automate quality gates, configure test runners in CI, or establish deployment strategies.

addyosmani/agent-skills · 45 tokens

google-cloud-slo-alert-configuration

Configures PromQL-based Service Level Objective (SLO) alerting policies for Google Cloud resources registered in App Hub or individually specified. Generates Terraform output. Use when the user asks to configure an SLO or Service Level Objective. Don't use for standard alerting policies.

google/skills · 62 tokens

chinese-git-workflow

A reference for configuring Git with Chinese code-hosting services such as Gitee, Coding.net, GitLab China, and CNB, including SSH, HTTPS, credentials, CI, and repository mirroring.

jnMetaCode/superpowers-zh · 69 tokens

kotlin-tooling-gradle-to-kotlin-toolchain-project

Load when migrating or converting an entire Gradle Kotlin project (build.gradle(.kts), wrapper, libs.versions.toml, buildSrc) to the Kotlin Toolchain, including rewriting CI and replacing Gradle plugins that have no native Toolchain equivalent. Skip for porting one Gradle plugin or general Toolchain work once Gradle…

Kotlin/kotlin-agent-skills · 83 tokens

comet-github-ci-triage

A workflow for diagnosing failed GitHub Actions checks on a Comet pull request. GitHub Actions runs automated builds and tests; a pull request is a proposed code change waiting to be reviewed and merged.

rpamis/comet · 72 tokens

review-tooling

Detect what dev tooling infrastructure a project has and flag gaps across linters, formatters, pre-commit hooks, test runners, and CI/CD pipelines. Returns structured findings without applying changes. Use when the user asks to "review tooling", "check project tooling", "what tooling is missing", "review dev…

tobihagemann/turbo · 74 tokens