mise-tasks

Define and run multi-step project workflows in .mise.toml.

62|10|Updated Dec 4, 2025
One-click install
npx skills add https://github.com/terrylica/cc-skills --skill mise-tasks
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: mise-tasks
Source: https://github.com/terrylica/cc-skills/tree/main/plugins/itp/skills/mise-tasks
Command: npx skills add https://github.com/terrylica/cc-skills --skill mise-tasks

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill helps you orchestrate multi-step project workflows by defining tasks, dependencies, and triggers in a centralized configuration. It reduces manual coordination, ensures proper execution order, and simplifies complex automation.

Core Features & Use Cases

  • Task Definitions & Dependencies: Define tasks under [tasks] with dependencies (depends, depends_post) and optional environments.
  • Workflow Automation: Compose full pipelines (build, test, deploy) with deterministic ordering and optional parallelism.
  • Context & Arguments: Pass runtime arguments to tasks and manage working directories.
  • Use Case: In a monorepo, auto-run a chain like lint → test → build, and notify on completion.

Quick Start

Create a minimal task block in your .mise.toml: [tasks.hello] description = "Say hello" run = "echo Hello"

Then run: mise run hello