The complete skill is one SKILL.md file. It needs no package, API key, server, or database of its own. Set up your host agent separately.
For Codex local skills, choose one scope. Locations and CLI / IDE invocation follow the official skills documentation.
| Scope | Folder containing SKILL.md |
| Project: sessions in this project | <project>/.agents/skills/falsify-the-problem/ |
| User: sessions across your projects | ~/.agents/skills/falsify-the-problem/ |
Run these commands in a terminal with Git installed. Project commands start in the target project root; user commands work from any directory. An existing populated destination makes the clone fail. Preserve existing installations.
Windows PowerShell
Project scope
New-Item -ItemType Directory -Force -Path .agents/skills | Out-Null
git clone https://github.com/ordinary-s/falsify-the-problem.git .agents/skills/falsify-the-problem
User scope
$skillRoot = Join-Path $env:USERPROFILE '.agents/skills'
New-Item -ItemType Directory -Force -Path $skillRoot | Out-Null
git clone https://github.com/ordinary-s/falsify-the-problem.git (Join-Path $skillRoot 'falsify-the-problem')
macOS / Linux: Bash or Zsh
Project scope
mkdir -p .agents/skills
git clone https://github.com/ordinary-s/falsify-the-problem.git .agents/skills/falsify-the-problem
User scope
mkdir -p "$HOME/.agents/skills"
git clone https://github.com/ordinary-s/falsify-the-problem.git "$HOME/.agents/skills/falsify-the-problem"
You can also copy only SKILL.md from a downloaded repository into the chosen folder. Codex detects changes automatically; restart it if the skill does not appear. In Codex CLI or the IDE extension, use /skills or type $ to select it.
Then, inside Codex CLI or the IDE extension
Paste this into the Codex prompt, not a terminal:
$falsify-the-problem
Our API has become slower and we are considering a cache.
Inspect the available evidence, distinguish observations from assumptions,
and test the problem framing before proposing a solution.
These setup commands do not establish skill activation or model behavior. macOS and Linux installation and cross-host behavior have not been verified in this documentation change.
Using another host? Follow its documented skill-folder mechanism, or load the complete Markdown instructions and explicitly ask to use them. Discovery, invocation, and permissions vary; identical behavior across hosts is not guaranteed. See the full installation guide.