Tier 4

sycs - So You Can See

SYCS - So You Can See

Input: $ARGUMENTS


Core Principles

  1. Implications branch exponentially. Every statement implies multiple things, each of which implies multiple things. Without principled pruning, you drown in implications. The skill must bound the expansion while preserving the important branches.

  2. Depth degrades reliability. First-order implications are usually solid. Second-order implications are plausible. Third-order and beyond are speculative. Track the depth and mark the reliability gradient.

  3. Not all implications are logical. Some implications are logical necessities (if A then necessarily B). Others are empirical predictions (if A then probably B). Others are social/practical consequences (if A then people will likely do C). Each type has different confidence.

  4. The most important implications are non-obvious. The obvious implication of “we’re cutting the budget” is “we’ll spend less.” The non-obvious implication might be “we’ll lose our best engineer who joined for the project budget enables.” Surface the non-obvious ones.

  5. Testability makes implications useful. An implication you can test is actionable. An implication you can’t test is speculation. Flag which is which.


Phase 1: Source Statement

[Y1] SOURCE: [the statement to expand, quoted]
[Y2] CONTEXT: [relevant context that affects implications]
[Y3] STATEMENT_TYPE: [claim | decision | observation | prediction | policy]

Phase 2: First-Order Implications

Direct implications — what follows immediately from the source statement.

[Y4] IMPLICATION: [what follows] — TYPE: [logical | empirical | practical | social]
  CONFIDENCE: [high | medium | low]
  OBVIOUS: [yes | no]
  TESTABLE: [yes — how | no]
[Y5] IMPLICATION: [what follows] — TYPE: [type]
  CONFIDENCE: [level]
  OBVIOUS: [yes/no]
  TESTABLE: [yes/no]
...

Implication Types

TypeWhat It MeansConfidence Basis
LogicalNecessarily follows from the statementDeductive — if A then must B
EmpiricalUsually follows based on evidence/experienceInductive — if A then probably B
PracticalFollows as a consequence of action/policyConsequential — if A then action B needed
SocialFollows from how people typically respondBehavioral — if A then people will likely B

Phase 3: Second-Order Implications

For each high-confidence or high-impact first-order implication, expand one level deeper:

[Y-N] FROM [Y-ref]: [second-order implication]
  TYPE: [logical | empirical | practical | social]
  CONFIDENCE: [typically lower than parent]
  IMPACT: [high | medium | low]
  TESTABLE: [yes — how | no]

Pruning Rules

Expand a first-order implication to second order ONLY if:

  • Its confidence is medium or higher, AND
  • Its impact is medium or higher, OR
  • It’s non-obvious (surprising implications deserve expansion even if low impact)

Do NOT expand if:

  • First-order confidence is low (speculating on speculation)
  • The implication is obvious and low-impact (not worth the depth)

Phase 4: Impact Flagging

From all implications (first and second order), identify the highest-impact ones:

[Y-N] HIGH-IMPACT IMPLICATIONS:
  1. [Y-ref]: [implication] — IMPACT: [why this matters most]
     TESTABLE: [yes — test | no]
     ACTION_IF_TRUE: [what to do about it]
  2. [Y-ref]: [implication] — IMPACT: [why]
     TESTABLE: [yes/no]
     ACTION_IF_TRUE: [action]
  3. [Y-ref]: [implication] — IMPACT: [why]
     ...

Non-Obvious Flag

[Y-N] NON-OBVIOUS IMPLICATIONS:
  1. [Y-ref]: [implication] — WHY_NON_OBVIOUS: [why most people would miss this]
  2. [Y-ref]: [implication] — WHY_NON_OBVIOUS: [why]

Phase 5: Output

IMPLICATION EXPANSION
=====================

SOURCE: [quoted statement]
CONTEXT: [relevant context]

FIRST-ORDER (direct implications):
  [Y4] [implication] — [type] — Confidence: [level] — Testable: [yes/no]
  [Y5] [implication] — [type] — Confidence: [level] — Testable: [yes/no]
  ...

SECOND-ORDER (implications of implications):
  From [Y4]:
    [Y-N] [implication] — [type] — Confidence: [level]
  From [Y5]:
    [Y-N] [implication] — [type] — Confidence: [level]
  ...

HIGH-IMPACT (prioritized):
  1. [implication] — [why high impact] — Test: [how]
  2. [implication] — [why high impact] — Test: [how]

NON-OBVIOUS:
  1. [implication] — [why most people miss this]

READY FOR:
- /ht [implication] — to formulate a testable hypothesis
- /ar [implication] — to explore what follows if this implication is right
- /aw [implication] — to stress-test a high-impact implication
- /claim [implication] — to verify a specific implication

Failure Modes

FailureSignalFix
Unbounded expansion30+ implications listed with no pruningApply pruning rules at each depth level
Only obvious implicationsEvery implication is “well, duh”Specifically search for non-obvious consequences
Confidence not trackedAll implications treated as equally likelyMark confidence at each depth level
Depth-blindThird-order implications treated with same confidence as first-orderConfidence typically decreases with depth
Type conflationLogical necessity confused with empirical predictionApply type definitions — does B NECESSARILY follow from A?
No testability checkImplications listed without actionabilityFlag testable vs not-testable for each
Impact not prioritizedFlat list with no high-impact flaggingAlways identify the top 3 highest-impact implications

Depth Scaling

DepthMin First-OrderMax DepthMin High-ImpactMin Non-Obvious
1x31st order only10
2x52nd order21
4x83rd order42
8x124th order64

Default: 2x. These are floors.


Pre-Completion Checklist

  • Source statement clearly identified with context
  • First-order implications extracted with type and confidence
  • Pruning rules applied before second-order expansion
  • Second-order implications have lower confidence than parents
  • High-impact implications flagged with reasoning
  • Non-obvious implications specifically sought and identified
  • Testability assessed for each implication
  • Action recommendations for testable high-impact implications

Integration

  • Use from: any statement analysis, strategic planning
  • Routes to: /ht, /ar, /aw, /claim for testing specific implications
  • Complementary: /aex (extracts hidden assumptions — different from implications)
  • Differs from /aex: aex finds what must be TRUE for a claim to hold; sycs finds what FOLLOWS from a claim
  • Differs from /ar: ar explores what follows if something is RIGHT; sycs expands implications neutrally