poltergeist.md•5.67 kB
---
summary: 'Poltergeist usage, migration highlights, and watchman exclusion tips'
read_when:
- Tuning local rebuild performance
- Disabling specific Poltergeist targets
- Debugging CLI vs. mac app rebuilds
- Migrating Poltergeist configs or tightening Watchman excludes
---
# Poltergeist Tips & Recommendations
## Target Enable/Disable Switches
- Each entry in `poltergeist.config.json` has an `"enabled"` flag. Set `"enabled": false` to stop Poltergeist from rebuilding that target (e.g., disable `peekaboo-mac` during CLI-heavy work).
- Re-enable the target when you need mac builds again—no script changes required.
## Sequential Build Queue
- `buildScheduling.parallelization` is now forced to `1`, so Poltergeist never runs CLI and mac builds in parallel. The intelligent queue still scores targets by focus, but it now drains one build at a time, guaranteeing the CLI artifacts are fresh before the mac target even starts.
- Keep `prioritization.enabled` true so the queue understands which target should run next; if you disable it, the fallback code will reintroduce parallel `Promise.all` builds.
```jsonc
"buildScheduling": {
"parallelization": 1,
"prioritization": {
"enabled": true
}
}
```
## Back-off For Idle Targets
- The mac target carries a higher `settlingDelay` (4 s vs. the CLI’s 1 s). That extra pause acts as a back-off window: intermittent edits in shared Core files rebuild the CLI immediately but let the mac pipeline idle unless you keep touching UI sources.
- If you start focusing on the app again, drop the delay back down or set the CLI’s `settlingDelay` higher temporarily—the knob lives directly on each target entry.
## Rebuild Triggers & Watch Paths
- Both CLI and mac targets currently watch `Core/PeekabooCore/**/*.swift` and `AXorcist/**/*.swift`, so *any* core edit triggers *both* builders.
- Action items:
- Tighten the mac target's `watchPaths` to files it really needs, or split Core globs (e.g., `Core/PeekabooCore/CLI/**` vs. `Core/PeekabooCore/App/**`).
- Consider a dedicated target for shared libraries if you need separate rebuild policies.
## Launch Behavior
- `polter peekaboo …` only waits for the CLI target to finish. The mac target may still rebuild in the background because of overlapping watch paths, but launches won't block on it.
## Caching
- Poltergeist shells into `./scripts/build-swift-debug.sh` and `./scripts/build-mac-debug.sh`. As long as those scripts keep `.build` / `DerivedData` intact, incremental builds remain cached—no cache nuking happens unless a script explicitly does it.
## Best Practices
1. **Disable unused targets** when focusing on CLI work to avoid mac rebuilds.
2. **Batch edits** so Poltergeist rebuilds once instead of after each micro-change.
3. **Run Peekaboo.app in tmux** rather than rebuilding it just to relaunch.
4. **Profile watch paths** before expanding them—every new glob increases rebuild frequency.
## Potential Improvements (Open Questions)
- **Target presets:** add `poltergeist haunt --preset cli|mac|full` (or `POLTERGEIST_TARGET_PRESET`) that toggles groups of targets without editing JSON. Internally this just flips `enabled` flags before `getTargetsToWatch` runs, making context switches a one-liner.
- **Configurable backoff:** expose optional `cooldownSeconds` / `idleMultiplier` per target so the build queue can slow rebuild cadence automatically for rarely used targets instead of relying on one-off `settlingDelay` tweaks.
- **Module-aware watch rules:** replace blanket `Core/**/*.swift` globs with a small `file → target` map (or `includeModules`) so CLI-only touches don’t wake the mac builder. `PriorityEngine.getAffectedTargets` already centralizes this logic.
- **No-op watcher mode:** a `poltergeist haunt --noop-builds` flag could keep Watchman + state tracking alive while skipping actual rebuilds, letting `polter peekaboo …` continue freshness checks during logging-only debug sessions.
- **Preflight builds:** teach the mac builder to run a fast `swift build --target PeekabooCore` (or similar) before firing the full Xcode pipeline; if nothing in shared libs changed, skip the expensive app build entirely.
- **Prompt-friendly status:** emit a terse status summary (e.g., `Peekaboo-queue.status`) whenever `StateManager.updateBuildStatus` runs so shells/Starship can show “CLI ✅ · mac 💤” directly in PS1.
- **Auto-disable idle targets:** track each target’s last launch/build timestamp; if a target sits idle for N hours, disable it and log a hint. The next `polter <target>` call would re-enable it. Keeps the daemon lean during CLI-only days.
## Implementation highlights (generic target system)
- Config now uses a **`targets` array** (no more `cli`/`mac` sections) and `poltergeist --target <name>` for selection; `poltergeist list` shows available targets.
- Builders are pluggable (executable/app) with shared watch logic; migration scripts live in the Poltergeist repo (`scripts/migrate-to-generic-targets.sh`).
- Peekaboo’s `poltergeist.config.json` has been migrated; keep using the new format for any tweaks.
## Watchman exclusion system (performance)
- Defaults ignore build/output/deps/IDE caches (`.build`, `DerivedData`, `node_modules`, `Pods`, `vendor`, `*.app`, etc.).
- Custom excludes: set in `poltergeist.config.json` under `watchman.excludeDirs` and toggle defaults via `watchman.useDefaultExclusions` (true by default).
- Poltergeist writes `.watchmanconfig` and applies subscription-level excludes, reducing recrawls and CPU. If Watchman thrashes, re-run haunt to regenerate the config and confirm excludes cover any new heavy directories.