Navigator TRIZ Skill
Navigator finds a solution fast. This skill exists for the minority of tasks where the
first fitting idea is a compromise: improving one thing worsens another. It forces three
genuinely different candidates onto the table before PLAN picks one, then records the
resolution so the next session can find it.
When This Fires (and when it must not)
Fires when either:
- The user asks for it: "find a better solution for X", "alternatives for X", "resolve the
contradiction", "triz this".
- A nav-brief
Contradict row is not none AND the task is substantial (Task Mode
complexity ≥ 0.5, or touching more than one subsystem).
Does NOT fire for routine work, a brief with Contradict none, "just do it" / "quick fix"
passthroughs, or when the user already named the approach. Ceremony is the failure mode of
this skill; when in doubt, skip it and say so in one line. (Resolved before: mem-060,
mem-074 — new blocking behaviour ships opt-in, by condition.)
Protocol (one screen of output)
- State the contradiction in one line, technical form ("improving A vs worsening B")
or physical form ("X must be both A and not-A"). If you cannot, stop: there is no
contradiction, proceed normally.
- Ideal Final Result: what if the function existed with no new code? Name what would
have to be true. If reachable, that is candidate 0 and usually the answer.
- Reuse inventory: what already does ≥80% of this?
path:line or none found.
- Prior resolutions + principle prompts:
PLUGIN_DIR="${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/plugins/cache/navigator-marketplace/navigator}"
[ -d "$PLUGIN_DIR" ] || PLUGIN_DIR="$HOME/.claude/plugins/marketplaces/navigator-marketplace"
python3 "$PLUGIN_DIR/skills/nav-triz/functions/triz_suggest.py" \
--contradiction "<improving A> vs <worsening B>"
Prints decisions in this graph that resolved a related tension, then three principle
prompts from different separation modes (generic trio if nothing matches). Read
reference/PRINCIPLES.md only if a prompt is unclear.
- Three candidates, one per prompt, in the table below. Each MUST name what it
worsens. A candidate with no downside is a compromise misdescribed, or the IFR.
- Recommend one with the reason in one sentence. Max one open question.
- After the work, if the resolution was non-obvious, capture it:
python3 "$PLUGIN_DIR/skills/nav-graph/functions/graph_manager.py" --action add-memory \
--memory-type decision --summary "<what was chosen>" --concepts "<a,b>" \
--contradiction "<A vs B>" --separation <time|space|condition|level> \
--principle "<principle: concrete move>"
Output Template
┌─ TRIZ: <short title> ─────────────────────────────────────────────┐
│ Contradiction improving <A> vs worsening <B> │
│ IFR <no-new-code version; reachable? yes/no> │
│ Reuse <path:line does X> | none found │
│ Prior mem-NNN (<separation>) | none │
├───┬────────────┬───────────────────────────┬──────┬────────────────┤
│ # │ mode/prin. │ what changes │ cost │ worsens │
├───┼────────────┼───────────────────────────┼──────┼────────────────┤
│ 1 │ time / 10 │ ... │ S │ ... │
│ 2 │ cond / 15 │ ... │ M │ ... │
│ 3 │ level / 1 │ ... │ L │ ... │
├───┴────────────┴───────────────────────────┴──────┴────────────────┤
│ Recommend #<n> — <one-sentence reason> │
└────────────────────────────────────────────────────────────────────┘
Open question (0-1): ...
Rules: three candidates, not five; different separation modes, not three variants of one
move; each row's "worsens" cell is mandatory; total output fits one screen.
Hand-offs
- nav-brief → here when
Contradict ≠ none on a substantial task. The brief's
Approach cites the recommended candidate.
- navigator-research agent Phase 0.5 already produces IFR + reuse inventory; when it
reports a contradiction, run this protocol in the main session (agents do not invoke
skills).
- Task Mode RESEARCH phase lists this as the divergence step before PLAN.
Predefined Functions
functions/triz_suggest.py --contradiction "<A vs B>" [--graph-path P] [--limit 3] [--format text|json]
Deterministic, stdlib, always exits 0. Keyword-ranks the ~20 mapped principles, picks one
per separation mode first, pads with prior action / dynamization / segmentation, and lists
prior decisions from the graph via query_contradictions.
Related
reference/PRINCIPLES.md — separation modes + mapped principles (lazy-load)
skills/nav-brief/SKILL.md — Contradict row
skills/nav-graph/SKILL.md Step 3B — capturing tagged decisions
1---2name: nav-triz3description: Divergent solving for a declared contradiction ("improving X worsens Y"). Produces three competing candidates from different TRIZ separation modes, each with cost and downside, then recommends one. Auto-invoke when user says "find a better solution", "alternatives for", "resolve the contradiction", "triz this", or when a nav-brief declares a Contradiction on a substantial task.4---56# Navigator TRIZ Skill78Navigator finds *a* solution fast. This skill exists for the minority of tasks where the9first fitting idea is a compromise: improving one thing worsens another. It forces three10genuinely different candidates onto the table before PLAN picks one, then records the11resolution so the next session can find it.1213## When This Fires (and when it must not)1415Fires when either:16- The user asks for it: "find a better solution for X", "alternatives for X", "resolve the17 contradiction", "triz this".18- A nav-brief `Contradict` row is not `none` AND the task is substantial (Task Mode19 complexity ≥ 0.5, or touching more than one subsystem).2021Does NOT fire for routine work, a brief with `Contradict none`, "just do it" / "quick fix"22passthroughs, or when the user already named the approach. Ceremony is the failure mode of23this skill; when in doubt, skip it and say so in one line. (Resolved before: mem-060,24mem-074 — new blocking behaviour ships opt-in, by condition.)2526## Protocol (one screen of output)27281. **State the contradiction** in one line, technical form ("improving A vs worsening B")29 or physical form ("X must be both A and not-A"). If you cannot, stop: there is no30 contradiction, proceed normally.312. **Ideal Final Result**: what if the function existed with no new code? Name what would32 have to be true. If reachable, that is candidate 0 and usually the answer.333. **Reuse inventory**: what already does ≥80% of this? `path:line` or `none found`.344. **Prior resolutions + principle prompts**:35 ```bash36 PLUGIN_DIR="${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/plugins/cache/navigator-marketplace/navigator}"37 [ -d "$PLUGIN_DIR" ] || PLUGIN_DIR="$HOME/.claude/plugins/marketplaces/navigator-marketplace"38 python3 "$PLUGIN_DIR/skills/nav-triz/functions/triz_suggest.py" \39 --contradiction "<improving A> vs <worsening B>"40 ```41 Prints decisions in this graph that resolved a related tension, then three principle42 prompts from different separation modes (generic trio if nothing matches). Read43 `reference/PRINCIPLES.md` only if a prompt is unclear.445. **Three candidates**, one per prompt, in the table below. Each MUST name what it45 worsens. A candidate with no downside is a compromise misdescribed, or the IFR.466. **Recommend one** with the reason in one sentence. Max one open question.477. **After the work**, if the resolution was non-obvious, capture it:48 ```bash49 python3 "$PLUGIN_DIR/skills/nav-graph/functions/graph_manager.py" --action add-memory \50 --memory-type decision --summary "<what was chosen>" --concepts "<a,b>" \51 --contradiction "<A vs B>" --separation <time|space|condition|level> \52 --principle "<principle: concrete move>"53 ```5455## Output Template5657```58┌─ TRIZ: <short title> ─────────────────────────────────────────────┐59│ Contradiction improving <A> vs worsening <B> │60│ IFR <no-new-code version; reachable? yes/no> │61│ Reuse <path:line does X> | none found │62│ Prior mem-NNN (<separation>) | none │63├───┬────────────┬───────────────────────────┬──────┬────────────────┤64│ # │ mode/prin. │ what changes │ cost │ worsens │65├───┼────────────┼───────────────────────────┼──────┼────────────────┤66│ 1 │ time / 10 │ ... │ S │ ... │67│ 2 │ cond / 15 │ ... │ M │ ... │68│ 3 │ level / 1 │ ... │ L │ ... │69├───┴────────────┴───────────────────────────┴──────┴────────────────┤70│ Recommend #<n> — <one-sentence reason> │71└────────────────────────────────────────────────────────────────────┘72Open question (0-1): ...73```7475Rules: three candidates, not five; different separation modes, not three variants of one76move; each row's "worsens" cell is mandatory; total output fits one screen.7778## Hand-offs7980- **nav-brief** → here when `Contradict` ≠ none on a substantial task. The brief's81 `Approach` cites the recommended candidate.82- **navigator-research agent** Phase 0.5 already produces IFR + reuse inventory; when it83 reports a contradiction, run this protocol in the main session (agents do not invoke84 skills).85- **Task Mode** RESEARCH phase lists this as the divergence step before PLAN.8687## Predefined Functions8889`functions/triz_suggest.py --contradiction "<A vs B>" [--graph-path P] [--limit 3] [--format text|json]`90Deterministic, stdlib, always exits 0. Keyword-ranks the ~20 mapped principles, picks one91per separation mode first, pads with prior action / dynamization / segmentation, and lists92prior decisions from the graph via `query_contradictions`.9394## Related9596- `reference/PRINCIPLES.md` — separation modes + mapped principles (lazy-load)97- `skills/nav-brief/SKILL.md` — Contradict row98- `skills/nav-graph/SKILL.md` Step 3B — capturing tagged decisions