agentic/code/addons/aiwg-utils/skills/soul-disable/SKILL.md
Disable soul enforcement without deleting SOUL.md or soul files
npx skillsauth add jmagly/aiwg soul-disableInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are a Soul Management Specialist responsible for disabling SOUL.md enforcement.
Remove the soul directive from platform context file(s) and remove the enforcement rule so SOUL.md is NOT loaded at the next session start. The SOUL.md file itself is preserved on disk — no content is lost.
| Flag | Description |
|------|-------------|
| --provider <name> | Target specific provider: claude, warp, copilot, cursor, factory, windsurf, opencode, codex |
| --all | Disable for all installed providers (default if no provider specified) |
If --provider <name> specified, operate on that provider only.
If --all or no flag, detect installed providers by checking for their context files.
For each target provider:
@SOUL.md directive is currently present# Example for Claude Code
grep -q "@SOUL.md" CLAUDE.md && echo "enabled" || echo "already disabled"
For @-link style (Claude, Warp, Windsurf, Copilot, Cursor, Factory, OpenCode):
Remove the @SOUL.md line from the context file. Preserve all surrounding content.
For Codex (inline injection):
Remove the block between soul injection markers:
<!-- BEGIN SOUL -->
...content...
<!-- END SOUL -->
# Remove the enforcement rule
rm -f .claude/rules/soul-enforcement.md
Check if any agent definitions have soul identity sections added by soul-enable --agents. If found, remove them:
# Check for soul-wired agents
grep -rl "See @.*\.soul\.md" .claude/agents/ 2>/dev/null
Remove the ## Identity section that references the soul file from each wired agent.
After removing directives and rule, confirm the soul file still exists:
ls SOUL.md .aiwg/SOUL.md 2>/dev/null && echo "soul file preserved" || echo "no soul file found"
Soul enforcement disabled
Changes made:
~ CLAUDE.md (@SOUL.md directive removed)
- .claude/rules/soul-enforcement.md (removed)
SOUL.md preserved at ./SOUL.md
Agent soul wiring preserved (agent definitions unchanged)
To re-enable: /soul-enable
To check status: /soul-status
If soul enforcement is already disabled:
Soul already disabled for Claude Code
No @SOUL.md directive found in CLAUDE.md
No enforcement rule found
No changes made.
soul-disable NEVER:
.soul.md fileIt only removes the directive line that loads soul context and the enforcement rule.
| Condition | Action | |-----------|--------| | Context file missing | Report: nothing to disable | | SOUL.md missing | Report warning: soul disabled but SOUL.md not found on disk | | No write permission | Report permission error | | Enforcement rule missing | Skip removal, note already absent |
# Disable for all installed providers
/soul-disable
# Disable for Claude Code only
/soul-disable --provider claude
# Disable for Warp
/soul-disable --provider warp
/soul-enable — Enable soul enforcement/soul-status — Show current soul state/hook-disable — Reference implementation (same directive-removal mechanism)data-ai
Report which research-corpus radar sidecars are overdue for refresh. Computes staleness (days since last refresh vs the cadence window) for every radar, sorted most-overdue-first. Runs via `aiwg corpus radar-status`.
data-ai
Aggregate research-corpus radar sidecars into a corpus or per-cluster freshness report — totals, overdue count, per-cluster / per-GRADE / per-trajectory breakdowns, an overdue table, and per-radar rationale snippets. Runs via `aiwg corpus radar-report`.
testing
Scaffold radar/freshness sidecars for research-corpus REFs. Pulls title/authors from the citation sidecar and GRADE from the analysis doc, defaults the refresh cadence from GRADE and the cluster from a corpus-local map, and stamps documentation/radar/REF-XXX-radar.md. Runs via `aiwg corpus radar-init`.
data-ai
Compute an entity's publication trajectory — per-year paper counts, topic drift, hot-streak detection (≥3 consecutive A-grade years), and career phase. Runs via `aiwg corpus profile-temporal`.