setup — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited setup (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
~/.mindfunnel/Seed the user's personal ~/.mindfunnel/ directory with the editable scaffolding the other mindfunnel skills depend on. Run once per machine. Idempotent: if ~/.mindfunnel/ already looks complete, say so and stop.
SOUL.md or USER.md — destroying them is unacceptable.AGENTS.md in the same directory. This is the standard convention; both names point at the same content./mf:prime. This skill symlinks ~/.claude/{SOUL,USER}.md and ~/.codex/{SOUL,USER}.md to the corresponding files in ~/.mindfunnel/ so both agents reach the same source of truth.~/.mindfunnel/ existsmkdir -p "$HOME/.mindfunnel"For each pair below, copy from the bundled template to the target only if the target is absent.
| Template | Target |
|---|---|
${CLAUDE_PLUGIN_ROOT}/templates/AGENTS.md | ~/.mindfunnel/AGENTS.md |
${CLAUDE_PLUGIN_ROOT}/templates/SOUL.md | ~/.mindfunnel/SOUL.md |
${CLAUDE_PLUGIN_ROOT}/templates/USER.md | ~/.mindfunnel/USER.md |
${CLAUDE_PLUGIN_ROOT}/templates/PROJECT.md | ~/.mindfunnel/PROJECT.md.example |
Note the asymmetry: PROJECT.md lands as PROJECT.md.example in ~/.mindfunnel/ because the live PROJECT.md belongs in each _project_, not in the shared scaffolding. The .example suffix makes that intent obvious.
Shell form (avoid clobbering):
cp -n "${CLAUDE_PLUGIN_ROOT}/templates/AGENTS.md" "$HOME/.mindfunnel/AGENTS.md"
cp -n "${CLAUDE_PLUGIN_ROOT}/templates/SOUL.md" "$HOME/.mindfunnel/SOUL.md"
cp -n "${CLAUDE_PLUGIN_ROOT}/templates/USER.md" "$HOME/.mindfunnel/USER.md"
cp -n "${CLAUDE_PLUGIN_ROOT}/templates/PROJECT.md" "$HOME/.mindfunnel/PROJECT.md.example"cp -n is "no-clobber"; it silently skips an existing target. That is the desired behavior.
CLAUDE.md symlink inside ~/.mindfunnel/ln -sfn AGENTS.md "$HOME/.mindfunnel/CLAUDE.md"-f replaces a broken or pre-existing symlink, -n prevents following an existing CLAUDE.md symlink into its target when forcing. Safe because we're only ever symlinking to AGENTS.md in the same directory.
SOUL.md and USER.md symlinks into ~/.claude/ and ~/.codex/Both SOUL.md and USER.md are user-global. Both Claude Code and Codex should reach the same source of truth at ~/.mindfunnel/. For each agent dotdir that exists, install a symlink for each of the two files — idempotently, and without clobbering a non-symlink file the user may have authored themselves.
for name in SOUL.md USER.md; do
for agent_dir in "$HOME/.claude" "$HOME/.codex"; do
[ -d "$agent_dir" ] || continue
target="$agent_dir/$name"
src="$HOME/.mindfunnel/$name"
if [ ! -e "$src" ]; then
# Template seeding was declined above; nothing to point at.
continue
fi
if [ -L "$target" ]; then
# Already a symlink. Only re-point if it's pointing elsewhere.
if [ "$(readlink "$target")" != "$src" ]; then
ln -sfn "$src" "$target"
fi
elif [ -e "$target" ]; then
# Real file — don't touch. Flag in the report.
:
else
ln -s "$src" "$target"
fi
done
doneSkip an agent dir that doesn't exist (e.g. ~/.codex/ on a Claude-only machine). Don't create agent dirs yourself — they're owned by the respective agent installer.
Emit a short summary, ≤ 14 lines, listing for each target: created, already present (skipped), symlinked, or skipped (real file in the way). Example:
~/.mindfunnel/
AGENTS.md created
SOUL.md created
USER.md created
PROJECT.md.example already present
CLAUDE.md symlinked → AGENTS.md
~/.claude/SOUL.md symlinked → ~/.mindfunnel/SOUL.md
~/.claude/USER.md symlinked → ~/.mindfunnel/USER.md
~/.codex/SOUL.md symlinked → ~/.mindfunnel/SOUL.md
~/.codex/USER.md symlinked → ~/.mindfunnel/USER.mdIf everything was already present, say so in one line and skip the table:
~/.mindfunnel/ is already set up. Nothing to do.SOUL.md and USER.mdOn a fresh install (anything was created), close with:
Edit~/.mindfunnel/SOUL.mdto describe who you are, how you work, and what to avoid. Edit~/.mindfunnel/USER.mdto capture your shell, Python defaults, formatter paths, and any per-machine tooling the agent needs to know about. Neither file is checked into any project — they shape how every agent collaborates with you across every project.
>
Then run /mf:prime from a project root to prime it for the mindfunnel workflow.On a no-op run, skip this paragraph.
~/.mindfunnel/
AGENTS.md created
SOUL.md created
USER.md created
PROJECT.md.example created
CLAUDE.md symlinked → AGENTS.md
~/.claude/SOUL.md symlinked → ~/.mindfunnel/SOUL.md
~/.claude/USER.md symlinked → ~/.mindfunnel/USER.md
~/.codex/SOUL.md symlinked → ~/.mindfunnel/SOUL.md
~/.codex/USER.md symlinked → ~/.mindfunnel/USER.mdFollowed by the "edit SOUL.md / USER.md" hint.
~/.mindfunnel/ is already set up. Nothing to do.SOUL.md and re-ran setup~/.mindfunnel/
AGENTS.md already present
SOUL.md created
USER.md already present
PROJECT.md.example already present
CLAUDE.md symlinked → AGENTS.md
~/.claude/SOUL.md already symlinked correctly
~/.claude/USER.md already symlinked correctly
~/.codex/SOUL.md already symlinked correctly
~/.codex/USER.md already symlinked correctly~/.codex/)~/.mindfunnel/
AGENTS.md created
SOUL.md created
USER.md created
PROJECT.md.example created
CLAUDE.md symlinked → AGENTS.md
~/.claude/SOUL.md symlinked → ~/.mindfunnel/SOUL.md
~/.claude/USER.md symlinked → ~/.mindfunnel/USER.md
~/.codex/ not present; skipped${CLAUDE_PLUGIN_ROOT}; the cache path changes on every update./mf:setup only writes inside ~/.mindfunnel/ and creates the SOUL.md / USER.md symlinks in ~/.claude/ / ~/.codex/. Per-project work is /mf:prime's job.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.