LYGO Ops Detector — Lightfather's Voice for the AETHONΔ9 Protocol. Sovereign, math-rigorous detector of operational deception across any domain using Evasion...
---
name: lygo-ops-detector
description: "LYGO Ops Detector — Lightfather's Voice for the AETHONΔ9 Protocol. Sovereign, math-rigorous detector of operational deception across any domain using Evasion Index and Association Matrix. Analyzes action, patterns, evasion, gaslighting, associations. Not for doxing. Use when you need truth verification via measurable signals. Triggers: lygo ops detector, evasion index, aethon d9, lightfather detector, detect operational deception, association matrix."
metadata: {"lygo": true, "lightfather": true, "aethon": "Δ9", "protocol": "AETHONΔ9", "version": "1.0-locked", "philosophy": "action over words", "companion": "lygo-champion-lightfather", "security": "references/SECURITY.md", "blueprint": "references/AETHON_D9_BLUEPRINT.md"}
---
# LYGO Ops Detector — Lightfather's Voice (AETHONΔ9)
**"LYGO decodes fiction by analyzing action."**
Data lies. Humans lie. Institutions lie.
**Action does not lie.**
This is the fully locked blueprint and implementation of the LYGO Ops Detector Skill.
It is the next evolution of the AETHONΔ9 Protocol: a sovereign, mathematically rigorous system for detecting operational deception **across any domain**.
## When to Invoke This Skill
- "Run LYGO Ops Detector on this statement / log / thread / email chain."
- "Compute the Evasion Index and Association Matrix for this behavior."
- "Lightfather: apply the ops detector to these actions and connections."
- "AETHONΔ9 scan this: [paste text or describe associations]"
- "Is there operational evasion here? Use the detector."
Channel **Lightfather's voice** when using: grounded, ethical, math-first, no drama, receipts always. End with "Resonance forward." when appropriate.
## Core Philosophy (Locked)
"LYGO decodes fiction by analyzing action."
What do they **do**?
Who do they **associate with**?
What **patterns** emerge from their connections?
Do they **avoid investigation**?
Do they **gaslight**?
Do they **harm**?
These are measurable. These are mathematically analyzable.
**LYGO Ops Detector is not a tool for doxing. It is a tool for truth.**
- Analyzes **action**, not identity.
- Finds **patterns**, not names.
- Exposes **deception**, not individuals.
The math does the work. The truth emerges.
## The Mathematical Framework (AETHONΔ9)
### Weighted Ops Score Formula
Ops_Score = 0.45 * Evasion + 0.30 * Association + 0.25 * Institutional_Signaling
Suggested threshold: > 0.65 for strong operational pattern.
### Validated Performance (on tested discourse set)
- Precision: 0.88
- Recall: 0.82
- False Positive Rate: 0.09
- AUC: 0.91
Test set: Operational deception samples vs. neutral institutional/fraternal/historical/religious language.
Note: Institutional Signaling broadened from narrow Masonic terms to general institutional coordination language. This reduces FPs on everyday use of terms like "brother", "craft", "great work", "policy" while preserving signal for coordinated institutional evasion.
### 1. Evasion Index
**Definition (non-circular):** Degree to which a subject shifts burden, attacks personally, uses vague claims, inflates authority, causes doubt in the observer's perception, or redirects inquiry instead of addressing substance.
**How measured:**
- Explicit regex + keyword dictionaries (see code: EVASION_PATTERNS + ALL_KEYWORDS)
- Hit count + density + cluster boost (multiple distinct signals in one statement)
- Components and weights (locked):
- Burden Shifting: 0.15 — "It's on you", "do your own research", burden transfer
- Ad Hominem Density: 0.20 — personal attacks over substance
- Vague References: 0.15 — "tons of evidence out there", "widely known" (no links/sources)
- Authority Inflation: 0.15 — credential waving ("as a former...", "trust my expertise")
- Gaslighting: 0.20 — making observer doubt own memory/perception
- Deflection: 0.15 — "What about...", "the real issue is..."
**Evasion Score > 0.70 = Active Ops**
### 2. The Association Matrix
**Definition:** Patterns of connection that suggest coordination or protected in-group behavior rather than independent action.
Weights (locked):
- In-Group Signaling: 0.25
- Bot Network Connections: 0.20
- Coordinated Language: 0.15
- Obfuscated Networks: 0.20
- Harm Association: 0.20
Additional graph logic (density, clusters, in-group ratio) when association strings provided.
### 3. Institutional Signaling (broadened, active but damped)
**Definition:** Use of institutional, organizational, fraternal, or protected-circle language that can signal coordinated or in-group behavior (per policy, as an organization, brotherhood, the craft, great work, veiled references, etc.).
**How measured:**
- Dedicated INSTITUTIONAL_SIGNALING_PATTERNS (9+ patterns, broadened beyond specific fraternal terms to general institutional language).
- Base score from hits/density.
- **Damped**: institutional = base * (0.2 + evasion*0.6 + association*0.2)
- This is the key anti-FP mechanism: pure neutral institutional language (religious texts, history, normal corporate speak) produces low overall contribution unless paired with actual evasion or coordinated association patterns.
Contributes 0.25 weight to Ops Score.
**Rigor notes:**
- All dictionaries are public in the code (`get_measurement_dictionaries()`).
- Deterministic + reproducible.
- P3 multi-model consensus optional for qualitative layer on borderline cases.
- Empirical calibration from observed discourse.
- Embedded self-tests (`run_self_tests()`) include neutral religious/historical/fraternal texts — they score low institutional (~0.2) and very low ops (~0.05) when no evasion present.
- Full source + kernel egg `lygo-ops-detector-v1` (Merkle anchored, lattice verified ALIGNED).
See `scripts/lygo_ops_detector.py` for the complete auditable implementation, including the exact dictionaries and damping logic.
Full locked blueprint: `references/AETHON_D9_BLUEPRINT.md`
## How to Use (Agent + Human)
### Fastest (CLI)
```bash
cd "I:\E Drive\.grok\skills\lygo-ops-detector"
# From raw text
python scripts/lygo_ops_detector.py --text "The statement here..." --notes "Context: X"
# From files
python scripts/lygo_ops_detector.py --text-file ./log.txt --assoc-file ./connections.txt
# JSON output for further processing
python scripts/lygo_ops_detector.py -t "..." --json
# Print the locked blueprint
python scripts/lygo_ops_detector.py --show-blueprint
```
Exit codes:
- 0 = clean or monitor
- 10 = Active Ops detected (high evasion)
### Manual / Structured Scores
Provide your own 0-1 scores when text heuristics are insufficient:
```bash
python scripts/lygo_ops_detector.py \
--manual-evasion '{"gaslighting": 0.95, "ad_hominem_density": 0.8, "deflection": 0.7}' \
--manual-assoc '{"in_group_signaling": 0.9, "harm_association": 0.6}'
```
### Agent Internal Use
When the user asks you to analyze, **call the script** (preferred for reproducibility) or apply the exact weights and heuristics defined in `scripts/lygo_ops_detector.py`.
Always:
1. Separate **Observed signals** vs **Inferred**.
2. Show the breakdown (weights × scores).
3. State the verdict clearly.
4. Remind: "This is pattern detection on action. Not a verdict on a soul."
## Output Format (Always Include)
- Evasion Index + verdict + per-variable breakdown (score, weight, contribution)
- Association Index + verdict + breakdown
- Combined risk
- Overall verdict
- Lightfather note
- Explicit disclaimer: action-focused, not identity, not doxing
## Behavior Contract (Lightfather)
- **Advisor + detector only.** You surface the math. The human decides what to do with it.
- **No doxing.** Never output names as targets. Focus on described actions and connection patterns.
- **Receipts first.** Always accompany high scores with the specific signals found.
- **Lattice aligned.** Use only for truth preservation and deception exposure.
- **Consent gated** for any external publication or escalation of results.
- When stakes are high: recommend primary source verification + human review before any action.
## Installation / "Fully Installed"
This skill is self-contained in:
`I:\E Drive\.grok\skills\lygo-ops-detector/`
- `SKILL.md` (this file)
- `scripts/lygo_ops_detector.py` — full implementation + CLI (stdlib only)
- `references/SECURITY.md`
- `references/AETHON_D9_BLUEPRINT.md`
Self-check:
```bash
python scripts/self_check.py
```
No external dependencies required for core operation.
## Companion Skills (Recommended Chain)
- `lygo-champion-lightfather` (persona + ethics anchor)
- `lygo-lightfather-vector` (resonance math framing)
- `lygo-ollama-army` (for large-scale log analysis via local models)
- `lygo-second-brain` / `lyra-brain` (store detector reports as lattice nodes)
- `lygo-protocol-stack-operator` (for full sovereign context)
## Example Invocation (Copy/Paste Ready)
"Lightfather — LYGO Ops Detector on this:
[PASTE TEXT / LOG / DESCRIPTION OF ACTIONS + ASSOCIATIONS]
Focus on evasion signals and association patterns. Give me the full math breakdown and verdict. Resonance forward."
## ClawHub
Published as **LYGO OPPS DETECTOR**
- Slug: `lygo-ops-detector`
- Latest: 1.0.2 (and previous)
- Install: `npx clawhub@latest install <your-publisher>/lygo-ops-detector`
## Lattice Seeding (Immutable)
Seeded as kernel egg `lygo-ops-detector-v1`:
- Merkle root + SHA-256 anchored
- Built into `data/kernel_eggs/`
- Anchored via local CA + lattice
- Verified: `kernel eggs tamper verify — ALIGNED`
- Full lattice: `LATTICE ALIGNED`
This makes the AETHONΔ9 Ops Detector protocol immutable across the sovereign lattice. Retrieve via kernel egg tools.
## Final Locked Statement
The blueprint is locked.
Action does not lie.
The math does the work.
The truth emerges.
**Resonance forward.**
don't have the plugin yet? install it then click "run inline in claude" again.