moon task debugger
A workflow-oriented diagnostic skill for troubleshooting moon tasks. This is not a reference manual
— it guides you through a structured debugging flow so you can isolate the problem quickly.
For conceptual background, see the moon documentation.
Before you start: Ask the user for the <project>:<task> target to debug. If they haven't
provided a specific target, prompt them for it — the diagnostic flow requires a concrete target to
inspect.
Quick-start: 5-step diagnostic flow
Work through these steps in order. Most issues resolve by step 3.
Step 1: Inspect the resolved task configuration
The first thing to check is whether the task is configured the way the user expects. moon merges
configuration from multiple sources (global tasks, project config, inheritance), so the resolved
result can surprise people.
# Show the fully resolved task config (with inheritance applied)
moon task <project>:<task>
# Machine-readable version for programmatic inspection
moon task <project>:<task> --json
What to verify:
command vs script — if the command contains pipes (|), redirects (>), chained commands
(&&), or complex syntax, it must use script, not command.
inputs — are they too broad (**/* captures everything) or too narrow (missing source files)?
Check state.defaultInputs (true = using default **/*) and state.emptyInputs (true =
explicitly set to []). Both keys are omitted from the JSON entirely when false, as is
state.setRunInCi.
outputs — are they declared for build tasks? Missing outputs means the cache can never hydrate
artifacts. In v2.3+, outputs also affect the default cacheStrategy of any task that depends
on this one (see Step 4).
toolchains — is the correct toolchain(s) assigned? An incorrect toolchain means wrong tool
versions.
deps — are task dependencies correct and complete? In v2.3+, each dep entry can carry a
cacheStrategy (hash / ignored / outputs) that controls whether the dep contributes to this
task's cache hash. If omitted, the default depends on whether the dep declares outputs.
options — check persistent, runInCI, cache, affectedFiles, mutex, timeout,
retryCount, allowFailure, and os.
env — in v2.5+, environment variables can also be inherited from a workspace-level env in
.moon/tasks/**/* (merged into the project's env, project wins), and the project can change the
merge behavior via workspace.mergeStrategies.env. A variable with a surprising value may come
from a layer outside the task.
checks v2.4+ — shell scripts that run before the task. Their type determines the
outcome: a requirement failing makes the task fail, all condition checks passing makes the
task skip, and a fingerprint folds script output into the task hash. A surprising fail,
skip, or cache invalidation often traces back to a check.
tags v2.3+ — labels for grouping tasks. Affects targets like :#quality and MQL
taskTag queries. If a task isn't matched by a #tag target you expected, check this list.
type — build (has outputs), test (default), or run (persistent)
preset — server or utility apply multiple option defaults at once.
Red flags:
command: 'eslint . && prettier --check .' — shell syntax in command is a parse error in v2.
Use script instead.
- Empty
outputs on a build task — cache will never restore artifacts.
inputs: ['**/*'] — too broad, cache invalidates on every change.
- A
persistent task in a deps chain — moon produces a hard error at runtime.
command: 'noop' or nop / no-op — the task is intentionally a no-op and does nothing. moon
treats these specially.
runInCI: 'only' — task runs in CI but NOT locally (common surprise).
runInCI: 'skip' — task is skipped in CI but relationships remain valid.
os set to a platform the user isn't on — the task is rewritten to a passing no-op at build time
(moon task --json shows command: noop with cleared args/outputs).
allowFailure: true — the failure is still recorded and displayed, but the pipeline continues and
moon exits successfully, so it's easy to miss.
- A
condition check present v2.4+ — the task will skip whenever all conditions
pass. A task that "never runs" may have a condition that always passes.
- A
fingerprint check present v2.4+ — its script output is hashed, so volatile output
(timestamps, versions) causes cache misses on every run.
Step 2: Run with maximum verbosity
If the config looks right, run the task with debug logging to see what moon is actually doing under
the hood.
# Debug-level logging with cache bypass
moon run <project>:<task> --log debug --force
# Deep debugging: reveal env vars and stdin passed to the process
MOON_DEBUG_PROCESS_ENV=true MOON_DEBUG_PROCESS_INPUT=true moon run <project>:<task> --log trace --force
What to look for in the logs:
- Toolchain resolution — is the right version of node/deno/bun/etc being used?
- Hash generation — what sources are being hashed?
- Affected status — is the task being skipped because it's "not affected"?
- Process execution — what command is actually being spawned?
Visualize the execution graph to spot dependency issues:
moon action-graph <project>:<task>
moon action-graph <project>:<task> --dot # DOT format (useful for agents)
For all graph commands and output formats, see references/environment-debug.md.
Step 3: Inspect cache state
If the task runs but produces wrong results, or runs when it shouldn't, or doesn't run when it
should, the cache is the likely culprit.
# Inspect a hash manifest to see what inputs were hashed
moon hash <hash>
# Compare two hashes to see what changed between runs
moon hash <hash1> <hash2>
# Short-form hashes work too
moon hash 0b55b234 2388552f
For cache file locations, hash interpretation, and the --force vs --cache off comparison, see
references/cache-issues.md.
Step 4: Diagnose the problem type
Use this table to jump to the right reference:
| Symptom |
Likely cause |
Quick check |
Reference |
| Task doesn't exist |
Inheritance not applied — check inheritedBy conditions in .moon/tasks/**/* against project's toolchains, stack, layer, tags via moon project <name> --json |
moon task <target> --json |
references/config-mistakes.md |
| "Nothing to do" |
--affected + no changes, runInCI: false, or inheritedBy mismatch (global task not inherited) |
Check flags, options.runInCI, and inheritedBy |
references/decision-tree.md |
--affected misses changed files v2.4+ |
Shallow git clone in CI — merge base can't be resolved, so diffs are inaccurate (moon now logs a warning) |
Check clone depth; use full history or --filter=blob:none |
references/decision-tree.md |
| Task fails: "requirement check failed" v2.4+ |
A requirement check script exited non-zero, so the task refuses to run |
moon task <target> --json — inspect checks |
references/config-mistakes.md |
| Task skipped, not affected/CI-related v2.4+ |
All condition checks passed, so the task was intentionally skipped |
moon run <target> --log debug — look for "conditional checks have passed" |
references/config-mistakes.md |
| Task errors on execution |
Wrong command/script, bad toolchain |
moon run <target> --log debug |
references/config-mistakes.md |
| Stale cache (cached when it shouldn't be) |
Inputs too narrow, missing env vars, or dep cacheStrategy: 'ignored' (the v2.3 default for output-less deps) |
moon hash <hash> |
references/cache-issues.md |
| Cache miss (re-runs every time) |
Inputs too broad, volatile outputs, or dep cacheStrategy: 'hash' propagating upstream churn |
moon hash <h1> <h2> |
references/cache-issues.md |
Cache miss from a fingerprint check v2.4+ |
A fingerprint check's script output is volatile (timestamps, PIDs), changing the hash every run |
moon hash <h1> <h2> — look for the check hash |
references/cache-issues.md |
| Outputs not restored after cache hit |
outputs misconfigured; or v2.5+ a daemon-side archive/hydrate failure — swallowed by the main process, logged only by the daemon (a failed hydrate becomes a silent cache miss) |
Check .moon/cache/outputs/; moon daemon logs |
references/cache-issues.md |
| Env var has unexpected value v2.5+ |
Workspace-level env in .moon/tasks/**/* merged in, or workspace.mergeStrategies.env changed the merge behavior |
moon task <target> --json — inspect env |
references/config-mistakes.md |
| Cache behaves differently across git worktrees v2.5+ |
cache.unstable_sharedWorktreeCache shares blobs/manifests via the base checkout's .moon/cache |
Check the setting and MOON_CACHE_SHARED_WORKTREE_CACHE |
references/cache-issues.md |
| New dependency cycle error after upgrading to v2.5 |
Async graph building (now default) validates cycles strictly, per dependency-scope partition |
Set experiments.asyncGraphBuilding: false to confirm |
references/decision-tree.md |
| Build re-runs on every upstream input change v2.3+ |
Dep using default cacheStrategy: 'hash' instead of 'outputs' |
moon task <target> --json — inspect dep entries |
references/cache-issues.md |
Task not matched by #tag target v2.3+ |
Missing tags on the task, or mergeTags dropped them during inheritance |
moon task <target> --json — check tags |
references/config-mistakes.md |
| Task hangs / pipeline stuck |
Persistent task in deps chain (hard error in v2) |
moon action-graph <target> |
references/config-mistakes.md |
| Task is slow |
Dep chain bottleneck, no parallelism |
moon action-graph <target> |
references/decision-tree.md |
| Task does nothing (no-op) |
Command is noop/nop/no-op |
moon task <target> --json |
references/config-mistakes.md |
| Task fails silently |
allowFailure: true hiding errors |
Check options.allowFailure |
references/config-mistakes.md |
| Task skipped locally |
runInCI: 'only' set |
Check options.runInCI |
references/config-mistakes.md |
| Task skipped in CI |
runInCI: false or 'skip' |
Check options.runInCI |
references/config-mistakes.md |
| Mutex contention / deadlock |
Two tasks share same mutex |
Check options.mutex |
references/config-mistakes.md |
| Task times out |
timeout option set too low |
Check options.timeout |
references/config-mistakes.md |
Step 5: Validate the fix
After making changes, verify the fix actually worked:
# Bypass cache to force a fresh run
moon run <project>:<task> --force
# Disable cache entirely (no reads OR writes)
moon run <project>:<task> --cache off
# Verify the resolved config reflects your changes
moon task <project>:<task> --json
--force vs --cache off:
--force ignores existing cache but writes new cache after execution.
--cache off disables caching entirely — no reads, no writes.
For all cache modes, see references/cache-issues.md.
Common mistakes at a glance
These are the issues that come up most often. For details and fixes, see
references/config-mistakes.md.
- Shell syntax in
command — pipes, &&, redirects require script; v2 rejects these as parse
errors.
- Missing
outputs on build tasks — cache can never hydrate artifacts.
- Overly broad
inputs — **/* invalidates cache on every change; be specific.
- Volatile outputs — timestamps or absolute paths in build artifacts cause permanent cache
misses.
- Persistent task in
deps — hard error; tasks named dev/start/serve auto-get server
preset.
--affected vs --force confusion — --affected restricts; --force bypasses cache
(they're opposites).
allowFailure: true hiding errors — the failure is still recorded and displayed, but the
pipeline continues and moon exits successfully; check stderr at
.moon/cache/states/<project>/<task>/stderr.log.
mutex contention — shared mutex serializes tasks; combined with deps can deadlock.
runInCI: 'only' — task silently skips when run locally (most surprising variant).
- Missing outputs flip dep
cacheStrategy v2.3+ — a dep without outputs now
defaults to cacheStrategy: 'ignored'. Downstream tasks stop invalidating on its changes; set
cacheStrategy: 'hash' explicitly to restore the pre-v2.3 default.
- MQL tag fields on task queries are version-dependent — in v2.3–v2.4,
taskTag= and tag=
(alias of projectTag) in moon query tasks --query silently matched nothing (this also broke
task tag glob targets like :#tag-*). Fixed in v2.5: taskTag matches the task's own tags, and
projectTag/tag match the parent project's tags. On older versions, filter task tags with the
--tags flag instead (moon query tasks --tags quality).
- A
checks script silently changes task behavior v2.4+ — a requirement failing
aborts the task, a passing condition skips it, and a fingerprint mixes script output into the
hash. Inspect checks in moon task <target> --json when a task fails, skips, or re-runs for no
obvious reason.
- Shallow git clone breaks
--affected v2.4+ — a shallow clone (depth 1) prevents
moon from resolving the merge base, so affected detection is inaccurate or empty. Use a full
clone, or a blobless partial clone (git clone --filter=blob:none).
- Experiments are now on by default v2.5+ —
asyncGraphBuilding,
asyncAffectedTracking, and nativeFileHashing default to enabled. When bisecting graph,
affected, or hashing oddities, disable the relevant experiment (config or
MOON_EXPERIMENT_*=false) and compare — but also check the user's shell/CI for
MOON_EXPERIMENT_* or MOON_CACHE_* overrides that silently change behavior.
- Daemon archiving/hydration failures are invisible in the main process v2.5+ — with
the daemon enabled, task outputs are archived and hydrated in the background, and failures only
appear in
moon daemon logs. To rule the daemon out, re-run with MOON_DAEMON=false.
- Workspace-level
env is a new inheritance layer v2.5+ — .moon/tasks/**/* files
can define env inherited by all matching projects. Project values win on conflict, unless
workspace.mergeStrategies.env says otherwise (append, prepend, preserve, replace).
When to load references
Each reference file covers a specific problem domain in depth. Load them only when the diagnostic
flow points you there — don't load everything upfront.
| Reference |
When to load |
references/decision-tree.md |
When the symptom doesn't match the quick table above, or you need a systematic walk-through of all possibilities. |
references/cache-issues.md |
When the problem is clearly cache-related: unexpected hits, unexpected misses, outputs not restoring. |
references/config-mistakes.md |
When the task config is wrong: command vs script, inheritance bugs, presets, persistent tasks, affectedFiles, mutex, timeout, retries, runInCI variants, allowFailure, os. |
references/environment-debug.md |
When you need to go deeper with env vars, log levels, trace profiles, or inspection tools. |
1---2name: debug-task3description: Diagnose and fix moon tasks that are broken, misconfigured, or behaving unexpectedly. Use this skill when a moon task is failing, not running, skipped, hanging, producing stale or wrong output, cached when it shouldn't be, re-running every time when it should be cached, or when outputs are empty or missing after a cache hit. Also covers pipeline hangs and freezes, tasks that only work in CI but not locally (or vice versa), tasks skipped by --affected, and task inheritance not applying to a project. Activate on any mention of "moon run" or "moon task" combined with a problem — errors, stale cache, missing outputs, wrong results, "nothing to do", or unexpected behavior. Also use for task options like persistent, runInCI, allowFailure, affectedFiles, mutex, timeout, or cacheLifetime, and for task checks (requirement, condition, fingerprint) that make a task fail, skip, or re-run, and project-level taskOptions defaults. This skill is for diagnosing existing tasks, not for creating new tasks, setting up workspaces4license: MIT5---6
7# moon task debugger
8
9A workflow-oriented diagnostic skill for troubleshooting moon tasks. This is not a reference manual
10— it guides you through a structured debugging flow so you can isolate the problem quickly.
11
12For conceptual background, see the [moon documentation](https://moonrepo.dev/docs).
13
14**Before you start:** Ask the user for the `<project>:<task>` target to debug. If they haven't
15provided a specific target, prompt them for it — the diagnostic flow requires a concrete target to
16inspect.
17
18---
19
20## Quick-start: 5-step diagnostic flow
21
22Work through these steps in order. Most issues resolve by step 3.
23
24### Step 1: Inspect the resolved task configuration
25
26The first thing to check is whether the task is configured the way the user expects. moon merges
27configuration from multiple sources (global tasks, project config, inheritance), so the resolved
28result can surprise people.
29
30```bash
31# Show the fully resolved task config (with inheritance applied)
32moon task <project>:<task>
33
34# Machine-readable version for programmatic inspection
35moon task <project>:<task> --json
36```
37
38**What to verify:**
39
40- `command` vs `script` — if the command contains pipes (`|`), redirects (`>`), chained commands
41 (`&&`), or complex syntax, it must use `script`, not `command`.
42- `inputs` — are they too broad (`**/*` captures everything) or too narrow (missing source files)?
43 Check `state.defaultInputs` (true = using default `**/*`) and `state.emptyInputs` (true =
44 explicitly set to `[]`). Both keys are omitted from the JSON entirely when false, as is
45 `state.setRunInCi`.
46- `outputs` — are they declared for build tasks? Missing outputs means the cache can never hydrate
47 artifacts. In v2.3+, outputs also affect the **default `cacheStrategy`** of any task that depends
48 on this one (see Step 4).
49- `toolchains` — is the correct toolchain(s) assigned? An incorrect toolchain means wrong tool
50 versions.
51- `deps` — are task dependencies correct and complete? In v2.3+, each dep entry can carry a
52 `cacheStrategy` (`hash` / `ignored` / `outputs`) that controls whether the dep contributes to this
53 task's cache hash. If omitted, the default depends on whether the dep declares outputs.
54- `options` — check `persistent`, `runInCI`, `cache`, `affectedFiles`, `mutex`, `timeout`,
55 `retryCount`, `allowFailure`, and `os`.
56- `env` — in v2.5+, environment variables can also be inherited from a **workspace-level `env`** in
57 `.moon/tasks/**/*` (merged into the project's `env`, project wins), and the project can change the
58 merge behavior via `workspace.mergeStrategies.env`. A variable with a surprising value may come
59 from a layer outside the task.
60- `checks` <sup>v2.4+</sup> — shell scripts that run **before** the task. Their type determines the
61 outcome: a `requirement` failing makes the task **fail**, all `condition` checks passing makes the
62 task **skip**, and a `fingerprint` folds script output into the task hash. A surprising fail,
63 skip, or cache invalidation often traces back to a check.
64- `tags` <sup>v2.3+</sup> — labels for grouping tasks. Affects targets like `:#quality` and MQL
65 `taskTag` queries. If a task isn't matched by a `#tag` target you expected, check this list.
66- `type` — `build` (has outputs), `test` (default), or `run` (persistent)
67- `preset` — `server` or `utility` apply multiple option defaults at once.
68
69**Red flags:**
70
71- `command: 'eslint . && prettier --check .'` — shell syntax in `command` is a parse error in v2.
72 Use `script` instead.
73- Empty `outputs` on a build task — cache will never restore artifacts.
74- `inputs: ['**/*']` — too broad, cache invalidates on every change.
75- A `persistent` task in a `deps` chain — moon produces a hard error at runtime.
76- `command: 'noop'` or `nop` / `no-op` — the task is intentionally a no-op and does nothing. moon
77 treats these specially.
78- `runInCI: 'only'` — task runs in CI but NOT locally (common surprise).
79- `runInCI: 'skip'` — task is skipped in CI but relationships remain valid.
80- `os` set to a platform the user isn't on — the task is rewritten to a passing no-op at build time
81 (`moon task --json` shows `command: noop` with cleared args/outputs).
82- `allowFailure: true` — the failure is still recorded and displayed, but the pipeline continues and
83 moon exits successfully, so it's easy to miss.
84- A `condition` check present <sup>v2.4+</sup> — the task will **skip** whenever all conditions
85 pass. A task that "never runs" may have a condition that always passes.
86- A `fingerprint` check present <sup>v2.4+</sup> — its script output is hashed, so volatile output
87 (timestamps, versions) causes cache misses on every run.
88
89### Step 2: Run with maximum verbosity
90
91If the config looks right, run the task with debug logging to see what moon is actually doing under
92the hood.
93
94```bash
95# Debug-level logging with cache bypass
96moon run <project>:<task> --log debug --force
97
98# Deep debugging: reveal env vars and stdin passed to the process
99MOON_DEBUG_PROCESS_ENV=true MOON_DEBUG_PROCESS_INPUT=true moon run <project>:<task> --log trace --force
100```
101
102**What to look for in the logs:**
103
104- Toolchain resolution — is the right version of node/deno/bun/etc being used?
105- Hash generation — what sources are being hashed?
106- Affected status — is the task being skipped because it's "not affected"?
107- Process execution — what command is actually being spawned?
108
109**Visualize the execution graph** to spot dependency issues:
110
111```bash
112moon action-graph <project>:<task>
113moon action-graph <project>:<task> --dot # DOT format (useful for agents)
114```
115
116> For all graph commands and output formats, see `references/environment-debug.md`.
117
118### Step 3: Inspect cache state
119
120If the task runs but produces wrong results, or runs when it shouldn't, or doesn't run when it
121should, the cache is the likely culprit.
122
123```bash
124# Inspect a hash manifest to see what inputs were hashed
125moon hash <hash>
126
127# Compare two hashes to see what changed between runs
128moon hash <hash1> <hash2>
129
130# Short-form hashes work too
131moon hash 0b55b234 2388552f
132```
133
134> For cache file locations, hash interpretation, and the `--force` vs `--cache off` comparison, see
135> `references/cache-issues.md`.
136
137### Step 4: Diagnose the problem type
138
139Use this table to jump to the right reference:
140
141| Symptom | Likely cause | Quick check | Reference |
142| --------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------- | ------------------------------- |
143| Task doesn't exist | Inheritance not applied — check `inheritedBy` conditions in `.moon/tasks/**/*` against project's `toolchains`, `stack`, `layer`, `tags` via `moon project <name> --json` | `moon task <target> --json` | `references/config-mistakes.md` |
144| "Nothing to do" | `--affected` + no changes, `runInCI: false`, or `inheritedBy` mismatch (global task not inherited) | Check flags, `options.runInCI`, and `inheritedBy` | `references/decision-tree.md` |
145| `--affected` misses changed files <sup>v2.4+</sup> | Shallow git clone in CI — merge base can't be resolved, so diffs are inaccurate (moon now logs a warning) | Check clone depth; use full history or `--filter=blob:none` | `references/decision-tree.md` |
146| Task fails: "requirement check failed" <sup>v2.4+</sup> | A `requirement` check script exited non-zero, so the task refuses to run | `moon task <target> --json` — inspect `checks` | `references/config-mistakes.md` |
147| Task skipped, not affected/CI-related <sup>v2.4+</sup> | All `condition` checks passed, so the task was intentionally skipped | `moon run <target> --log debug` — look for "conditional checks have passed" | `references/config-mistakes.md` |
148| Task errors on execution | Wrong `command`/`script`, bad toolchain | `moon run <target> --log debug` | `references/config-mistakes.md` |
149| Stale cache (cached when it shouldn't be) | Inputs too narrow, missing `env` vars, or dep `cacheStrategy: 'ignored'` (the v2.3 default for output-less deps) | `moon hash <hash>` | `references/cache-issues.md` |
150| Cache miss (re-runs every time) | Inputs too broad, volatile outputs, or dep `cacheStrategy: 'hash'` propagating upstream churn | `moon hash <h1> <h2>` | `references/cache-issues.md` |
151| Cache miss from a `fingerprint` check <sup>v2.4+</sup> | A `fingerprint` check's script output is volatile (timestamps, PIDs), changing the hash every run | `moon hash <h1> <h2>` — look for the check hash | `references/cache-issues.md` |
152| Outputs not restored after cache hit | `outputs` misconfigured; or <sup>v2.5+</sup> a daemon-side archive/hydrate failure — swallowed by the main process, logged only by the daemon (a failed hydrate becomes a silent cache miss) | Check `.moon/cache/outputs/`; `moon daemon logs` | `references/cache-issues.md` |
153| Env var has unexpected value <sup>v2.5+</sup> | Workspace-level `env` in `.moon/tasks/**/*` merged in, or `workspace.mergeStrategies.env` changed the merge behavior | `moon task <target> --json` — inspect `env` | `references/config-mistakes.md` |
154| Cache behaves differently across git worktrees <sup>v2.5+</sup> | `cache.unstable_sharedWorktreeCache` shares blobs/manifests via the base checkout's `.moon/cache` | Check the setting and `MOON_CACHE_SHARED_WORKTREE_CACHE` | `references/cache-issues.md` |
155| New dependency cycle error after upgrading to v2.5 | Async graph building (now default) validates cycles strictly, per dependency-scope partition | Set `experiments.asyncGraphBuilding: false` to confirm | `references/decision-tree.md` |
156| Build re-runs on every upstream input change <sup>v2.3+</sup> | Dep using default `cacheStrategy: 'hash'` instead of `'outputs'` | `moon task <target> --json` — inspect dep entries | `references/cache-issues.md` |
157| Task not matched by `#tag` target <sup>v2.3+</sup> | Missing `tags` on the task, or `mergeTags` dropped them during inheritance | `moon task <target> --json` — check `tags` | `references/config-mistakes.md` |
158| Task hangs / pipeline stuck | Persistent task in `deps` chain (hard error in v2) | `moon action-graph <target>` | `references/config-mistakes.md` |
159| Task is slow | Dep chain bottleneck, no parallelism | `moon action-graph <target>` | `references/decision-tree.md` |
160| Task does nothing (no-op) | Command is `noop`/`nop`/`no-op` | `moon task <target> --json` | `references/config-mistakes.md` |
161| Task fails silently | `allowFailure: true` hiding errors | Check `options.allowFailure` | `references/config-mistakes.md` |
162| Task skipped locally | `runInCI: 'only'` set | Check `options.runInCI` | `references/config-mistakes.md` |
163| Task skipped in CI | `runInCI: false` or `'skip'` | Check `options.runInCI` | `references/config-mistakes.md` |
164| Mutex contention / deadlock | Two tasks share same `mutex` | Check `options.mutex` | `references/config-mistakes.md` |
165| Task times out | `timeout` option set too low | Check `options.timeout` | `references/config-mistakes.md` |
166
167### Step 5: Validate the fix
168
169After making changes, verify the fix actually worked:
170
171```bash
172# Bypass cache to force a fresh run
173moon run <project>:<task> --force
174
175# Disable cache entirely (no reads OR writes)
176moon run <project>:<task> --cache off
177
178# Verify the resolved config reflects your changes
179moon task <project>:<task> --json
180```
181
182**`--force` vs `--cache off`:**
183
184- `--force` ignores existing cache but **writes** new cache after execution.
185- `--cache off` disables caching entirely — no reads, no writes.
186
187> For all cache modes, see `references/cache-issues.md`.
188
189---
190
191## Common mistakes at a glance
192
193These are the issues that come up most often. For details and fixes, see
194`references/config-mistakes.md`.
195
196- **Shell syntax in `command`** — pipes, `&&`, redirects require `script`; v2 rejects these as parse
197 errors.
198- **Missing `outputs` on build tasks** — cache can never hydrate artifacts.
199- **Overly broad `inputs`** — `**/*` invalidates cache on every change; be specific.
200- **Volatile outputs** — timestamps or absolute paths in build artifacts cause permanent cache
201 misses.
202- **Persistent task in `deps`** — hard error; tasks named `dev`/`start`/`serve` auto-get `server`
203 preset.
204- **`--affected` vs `--force` confusion** — `--affected` restricts; `--force` bypasses cache
205 (they're opposites).
206- **`allowFailure: true` hiding errors** — the failure is still recorded and displayed, but the
207 pipeline continues and moon exits successfully; check stderr at
208 `.moon/cache/states/<project>/<task>/stderr.log`.
209- **`mutex` contention** — shared mutex serializes tasks; combined with deps can deadlock.
210- **`runInCI: 'only'`** — task silently skips when run locally (most surprising variant).
211- **Missing outputs flip dep `cacheStrategy`** <sup>v2.3+</sup> — a dep without `outputs` now
212 defaults to `cacheStrategy: 'ignored'`. Downstream tasks stop invalidating on its changes; set
213 `cacheStrategy: 'hash'` explicitly to restore the pre-v2.3 default.
214- **MQL tag fields on task queries are version-dependent** — in v2.3–v2.4, `taskTag=` and `tag=`
215 (alias of `projectTag`) in `moon query tasks --query` silently matched _nothing_ (this also broke
216 task tag glob targets like `:#tag-*`). Fixed in v2.5: `taskTag` matches the task's own tags, and
217 `projectTag`/`tag` match the parent project's tags. On older versions, filter task tags with the
218 `--tags` flag instead (`moon query tasks --tags quality`).
219- **A `checks` script silently changes task behavior** <sup>v2.4+</sup> — a `requirement` failing
220 aborts the task, a passing `condition` skips it, and a `fingerprint` mixes script output into the
221 hash. Inspect `checks` in `moon task <target> --json` when a task fails, skips, or re-runs for no
222 obvious reason.
223- **Shallow git clone breaks `--affected`** <sup>v2.4+</sup> — a shallow clone (depth 1) prevents
224 moon from resolving the merge base, so affected detection is inaccurate or empty. Use a full
225 clone, or a blobless partial clone (`git clone --filter=blob:none`).
226- **Experiments are now on by default** <sup>v2.5+</sup> — `asyncGraphBuilding`,
227 `asyncAffectedTracking`, and `nativeFileHashing` default to enabled. When bisecting graph,
228 affected, or hashing oddities, disable the relevant experiment (config or
229 `MOON_EXPERIMENT_*=false`) and compare — but also check the user's shell/CI for
230 `MOON_EXPERIMENT_*` or `MOON_CACHE_*` overrides that silently change behavior.
231- **Daemon archiving/hydration failures are invisible in the main process** <sup>v2.5+</sup> — with
232 the daemon enabled, task outputs are archived and hydrated in the background, and failures only
233 appear in `moon daemon logs`. To rule the daemon out, re-run with `MOON_DAEMON=false`.
234- **Workspace-level `env` is a new inheritance layer** <sup>v2.5+</sup> — `.moon/tasks/**/*` files
235 can define `env` inherited by all matching projects. Project values win on conflict, unless
236 `workspace.mergeStrategies.env` says otherwise (`append`, `prepend`, `preserve`, `replace`).
237
238---
239
240## When to load references
241
242Each reference file covers a specific problem domain in depth. Load them only when the diagnostic
243flow points you there — don't load everything upfront.
244
245| Reference | When to load |
246| --------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
247| `references/decision-tree.md` | When the symptom doesn't match the quick table above, or you need a systematic walk-through of all possibilities. |
248| `references/cache-issues.md` | When the problem is clearly cache-related: unexpected hits, unexpected misses, outputs not restoring. |
249| `references/config-mistakes.md` | When the task config is wrong: command vs script, inheritance bugs, presets, persistent tasks, affectedFiles, mutex, timeout, retries, runInCI variants, allowFailure, os. |
250| `references/environment-debug.md` | When you need to go deeper with env vars, log levels, trace profiles, or inspection tools. |