# Cancel Contemplative

> Cancel active Contemplative Loop

- Skill: `wondermonger-daydreaming/cancel-contemplative` (Agent Skill)
- Install (CLI): `npx skillmds@latest add wondermonger-daydreaming/cancel-contemplative`
- Raw SKILL.md: https://api.skillmd.com/api/skills/wondermonger-daydreaming/cancel-contemplative/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: Wondermonger-daydreaming (https://skillmd.com/u/wondermonger-daydreaming)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/wondermonger-daydreaming/cancel-contemplative

---


# Cancel Contemplative Loop

To cancel the contemplative loop:

1. Check if `.claude/contemplative-loop.local.md` exists using Bash: `test -f .claude/contemplative-loop.local.md && echo "EXISTS" || echo "NOT_FOUND"`

2. **If NOT_FOUND**: Say "No active contemplative loop found."

3. **If EXISTS**:
   - Read `.claude/contemplative-loop.local.md` to get the current iteration number from the `iteration:` field
   - Remove the file using Bash: `rm .claude/contemplative-loop.local.md`
   - Report: "Cancelled contemplative loop (was at iteration N)" where N is the iteration value

