1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
//! Per-tool modules: detection, task extraction, and command building.
//!
//! Each module corresponds to a single tool (package manager or task runner)
//! and exposes a consistent set of public functions:
//!
//! - `detect(dir)` — returns `true` if the tool's config/lockfile exists
//! - `extract_tasks(dir)` — parses config and returns task names or a parse error
//! - `run_cmd(task, args)` — builds a [`std::process::Command`] to run a task
//! - `install_cmd(frozen)` — builds a [`std::process::Command`] to install deps
//! - `exec_cmd(args)` — builds a [`std::process::Command`] for ad-hoc execution
//! - clean-dir constants — directories to remove on `runner clean`
//!
//! Not every module exposes every function; only what the tool supports.
/// bacon — Rust background checker (`bacon.toml`).
pub
/// Bun JavaScript runtime and package manager.
pub
/// Bundler, the Ruby dependency manager (`Gemfile`).
pub
/// Cargo `[alias]` table — `.cargo/config.toml` aliases as runnable tasks.
pub
/// Cargo, the Rust package manager and build tool (`Cargo.toml`).
pub
/// Composer, the PHP dependency manager (`composer.json`).
pub
/// Deno JavaScript/TypeScript runtime (`deno.json` / `deno.jsonc`).
pub
/// Shared filesystem helpers for tool modules.
pub
/// Go modules (`go.mod`).
pub
/// go-task, a task runner using `Taskfile.yml`.
pub
/// just, a command runner using `justfile`.
pub
/// GNU Make (`Makefile`).
pub
/// mise, a polyglot dev tool manager (`mise.toml`).
pub
/// Shared Node.js helpers: `package.json` parsing, script extraction, PM detection.
pub
/// npm, the default Node.js package manager (`package-lock.json`).
pub
/// Nx monorepo build system (`nx.json`).
pub
/// Detect `package.json` scripts that wrap a known task runner.
pub
/// Pipenv, a Python dependency manager (`Pipfile`).
pub
/// pnpm, a fast Node.js package manager (`pnpm-lock.yaml`).
pub
/// Poetry, a Python dependency manager (`poetry.lock`, `pyproject.toml`).
pub
/// Spawn helper with Windows-aware PATH/PATHEXT resolution.
pub
/// Shared Python tooling helpers.
pub
/// Turborepo monorepo build system (`turbo.json` / `turbo.jsonc`).
pub
/// uv, a fast Python package manager (`uv.lock`).
pub
/// Yarn, a Node.js package manager (`yarn.lock`).
pub
pub