Productivity & Automationlow risk

n-inversion-filter

Invert a plan to expose failure paths. Use when explicitly invoked.

thepraggyverse/naval·skills/n-inversion-filter/SKILL.md
32/ 100おすすめ度

この Skill を導入

coding agent を選び、プロジェクト用または個人用コマンドをコピーします。

収録 commit に固定
プロジェクトに導入.agents/skills/n-inversion-filter
npx skills add https://github.com/thepraggyverse/naval/tree/256ecb9c6c45597d6e30df61c4ebf7a2ce65dddb/skills/n-inversion-filter -a codex -y
個人環境に導入~/.agents/skills/n-inversion-filter
npx skills add https://github.com/thepraggyverse/naval/tree/256ecb9c6c45597d6e30df61c4ebf7a2ce65dddb/skills/n-inversion-filter -a codex -g -y
手動配置先.agents/skills/n-inversion-filterOfficial docs ↗
プロジェクトに導入.claude/skills/n-inversion-filter
npx skills add https://github.com/thepraggyverse/naval/tree/256ecb9c6c45597d6e30df61c4ebf7a2ce65dddb/skills/n-inversion-filter -a claude-code -y
個人環境に導入~/.claude/skills/n-inversion-filter
npx skills add https://github.com/thepraggyverse/naval/tree/256ecb9c6c45597d6e30df61c4ebf7a2ce65dddb/skills/n-inversion-filter -a claude-code -g -y
手動配置先.claude/skills/n-inversion-filterOfficial docs ↗
プロジェクトに導入.agents/skills/n-inversion-filter
npx skills add https://github.com/thepraggyverse/naval/tree/256ecb9c6c45597d6e30df61c4ebf7a2ce65dddb/skills/n-inversion-filter -a github-copilot -y
個人環境に導入~/.copilot/skills/n-inversion-filter
npx skills add https://github.com/thepraggyverse/naval/tree/256ecb9c6c45597d6e30df61c4ebf7a2ce65dddb/skills/n-inversion-filter -a github-copilot -g -y
手動配置先.agents/skills/n-inversion-filterOfficial docs ↗
プロジェクトに導入.agents/skills/n-inversion-filter
npx skills add https://github.com/thepraggyverse/naval/tree/256ecb9c6c45597d6e30df61c4ebf7a2ce65dddb/skills/n-inversion-filter -a cursor -y
個人環境に導入~/.cursor/skills/n-inversion-filter
npx skills add https://github.com/thepraggyverse/naval/tree/256ecb9c6c45597d6e30df61c4ebf7a2ce65dddb/skills/n-inversion-filter -a cursor -g -y
手動配置先.agents/skills/n-inversion-filterOfficial docs ↗
プロジェクトに導入.agents/skills/n-inversion-filter
npx skills add https://github.com/thepraggyverse/naval/tree/256ecb9c6c45597d6e30df61c4ebf7a2ce65dddb/skills/n-inversion-filter -a gemini-cli -y
個人環境に導入~/.gemini/skills/n-inversion-filter
npx skills add https://github.com/thepraggyverse/naval/tree/256ecb9c6c45597d6e30df61c4ebf7a2ce65dddb/skills/n-inversion-filter -a gemini-cli -g -y
Native Gemini CLIgemini skills install https://github.com/thepraggyverse/naval.git --scope workspace --path skills/n-inversion-filter
手動配置先.agents/skills/n-inversion-filterOfficial docs ↗
⚠ インストールには open-source skills CLI を使用します。実行前にソースと権限を確認してください。
# Naval Inversion Filter

## Purpose

Find what will fail, what to avoid, and which mistakes matter most.

## Read First

- `references/concept.md`

Read only the files needed for the current request.
All runtime references are local to this skill so the folder can be copied independently.

## Workflow

1. Define failure precisely across result, timing, cost, and ethics.
2. Generate internal, external, and interaction failure causes.
3. Rank causes by likelihood, impact, detectability, and reversibility.
4. Convert the top causes into removals, guardrails, monitors, and stop conditions.

## Output

Return these checkable fields:

- Failure definition
- Ranked failure paths
- Preventive removals
- Early warnings
- Stop conditions

## Boundaries

Use n-risk-of-ruin when catastrophic survival risk is central; inversion also covers ordinary failure.

Paraphrase by default and do not reproduce long passages from the book.
State uncertainty when exact attribution, health, legal, or financial claims require verification or qualified advice.

## Example

User: "How could this fail?"

Assistant: Use the workflow above and return failure definition, ranked failure paths, preventive removals.