say-ducklake-xor
Parallel thread/DuckLake discovery with XOR uniqueness from gay_seed. Finds "say" or MCP usage, cross-refs with all DuckDB sources, launches bounded parallel ops.
Best use case
say-ducklake-xor is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Parallel thread/DuckLake discovery with XOR uniqueness from gay_seed. Finds "say" or MCP usage, cross-refs with all DuckDB sources, launches bounded parallel ops.
Teams using say-ducklake-xor should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/say-ducklake-xor/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How say-ducklake-xor Compares
| Feature / Agent | say-ducklake-xor | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Parallel thread/DuckLake discovery with XOR uniqueness from gay_seed. Finds "say" or MCP usage, cross-refs with all DuckDB sources, launches bounded parallel ops.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Say-DuckLake XOR Discovery
**Maximally parallel discovery with deterministic uniqueness guarantees.**
## Core Invariants
```
∀ i,j ∈ [0, bound): i ≠ j ⟹ seed ⊕ i ≠ seed ⊕ j (XOR uniqueness)
∀ parallel ops: same gay_seed ⟹ same colors (SPI guarantee)
Σ(trits) ≡ 0 (mod 3) (GF(3) conservation)
```
## Usage
```bash
# Find all "say" usage in threads, cross-ref with DuckLakes
python scripts/say_ducklake_xor.py
# With explicit seed and parallelism bound
python scripts/say_ducklake_xor.py --seed 1069 --bound 27
# XOR verification mode
python scripts/say_ducklake_xor.py --verify-xor
```
## Architecture
```
┌─────────────────────────────────────────────────────────────┐
│ gay_seed (root) │
├─────────────────────────────────────────────────────────────┤
│ XOR Fan-Out (bounded) │
│ ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐ │
│ │seed⊕0 │ │seed⊕1 │ │seed⊕2 │ ... │seed⊕n-1 │ │
│ │(thread) │ │(duck_0) │ │(duck_1) │ │(duck_n) │ │
│ └────┬────┘ └────┬────┘ └────┬────┘ └────┬────┘ │
│ │ │ │ │ │
│ ▼ ▼ ▼ ▼ │
│ ┌─────────────────────────────────────────────────────┐ │
│ │ Parallel Executor (async) │ │
│ │ - Thread search: find_thread("say" OR "say mcp") │ │
│ │ - DuckDB scan: SHOW TABLES for each .duckdb │ │
│ │ - Cross-reference: match concepts/timestamps │ │
│ └─────────────────────────────────────────────────────┘ │
│ │ │
│ ▼ │
│ ┌─────────────────────────────────────────────────────┐ │
│ │ GF(3) Conservation Check │ │
│ │ Σ(trits) mod 3 = 0 ⟹ valid parallel merge │ │
│ └─────────────────────────────────────────────────────┘ │
└─────────────────────────────────────────────────────────────┘
```
## XOR Uniqueness Proof
For bound `n` parallel operations from `seed`:
```python
def xor_unique(seed: int, bound: int) -> bool:
"""XOR with distinct indices yields distinct seeds."""
seen = set()
for i in range(bound):
derived = seed ^ i
if derived in seen:
return False # Collision!
seen.add(derived)
return True
# Always true for i,j < 2^64 and i ≠ j:
# seed ⊕ i = seed ⊕ j ⟹ i = j (XOR cancellation)
```
## DuckLake Sources
Auto-discovered from `~/ies/**/*.duckdb`:
| Source | Purpose | Trit |
|--------|---------|------|
| `pigeons_spi.duckdb` | Derivation chains, GF(3) invariants | 0 |
| `unified_thread_lake.duckdb` | Amp thread archive | +1 |
| `ananas.duckdb` | Book/paper downloads | -1 |
| `hatchery.duckdb` | Scheme eggs metadata | 0 |
| `bib.duckdb` | Bibliography entries | +1 |
## Thread Patterns
Searches for threads containing:
- `say` - macOS TTS usage
- `say mcp` - MCP tool with speech
- `say-narration` - Skill usage
- `say -v` - Voice specification
## Integration with PigeonsGayBridge
```julia
using .PigeonsGayBridge
# XOR fan-out with SPI guarantee
seeds = [GAY_SEED ⊻ UInt64(i) for i in 0:26]
chains = [unworld_chain(s, 10) for s in seeds]
# All chains have deterministic colors
# Cross-machine reproducibility via SPI
```
## Cross-Reference Schema
```sql
CREATE TABLE say_ducklake_xor (
xor_index INTEGER PRIMARY KEY,
seed UBIGINT NOT NULL,
source_type VARCHAR(10), -- 'thread' or 'duckdb'
source_id VARCHAR(64),
trit TINYINT,
hex VARCHAR(7),
matched_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
UNIQUE(seed) -- XOR guarantees uniqueness
);
```
## Bounded Parallelism
```python
import asyncio
from concurrent.futures import ThreadPoolExecutor
async def parallel_xor_discovery(seed: int, bound: int):
"""Launch bounded parallel ops with XOR uniqueness."""
loop = asyncio.get_event_loop()
with ThreadPoolExecutor(max_workers=min(bound, 8)) as executor:
futures = [
loop.run_in_executor(executor, discover_one, seed ^ i, i)
for i in range(bound)
]
results = await asyncio.gather(*futures)
# Verify GF(3) conservation
trits = [r['trit'] for r in results]
assert sum(trits) % 3 == 0, "GF(3) drift detected"
return results
```
## References
- [PigeonsGayBridge.jl](file:///Users/bob/ies/PigeonsGayBridge.jl) - SPI via unworld dynamics
- [ducklake_discover.py](file:///Users/bob/ies/music-topos/scripts/ducklake_discover.py) - Discovery patterns
- [SUBOBJECT_CLASSIFIER_RECURRENCES.md](file:///Users/bob/ies/SUBOBJECT_CLASSIFIER_RECURRENCES.md) - Recurrence types
## Scientific Skill Interleaving
This skill connects to the K-Dense-AI/claude-scientific-skills ecosystem:
### Graph Theory
- **networkx** [○] via bicomodule
- Universal graph hub
### Bibliography References
- `general`: 734 citations in bib.duckdb
## Cat# Integration
This skill maps to **Cat# = Comod(P)** as a bicomodule in the equipment structure:
```
Trit: 0 (ERGODIC)
Home: Prof
Poly Op: ⊗
Kan Role: Adj
Color: #26D826
```
### GF(3) Naturality
The skill participates in triads satisfying:
```
(-1) + (0) + (+1) ≡ 0 (mod 3)
```
This ensures compositional coherence in the Cat# equipment structure.Related Skills
ducklake-walk
Ergodic random walks over DuckLake lakehouses with GF(3) triadic concurrent walkers. Society-of-mind coordination for schema exploration.
jepsen-testing
Jepsen-style correctness testing for distributed systems under faults (partitions, crashes, clock skew) using concurrent operation histories and formal checkers (linearizability/serializability and Elle-style anomalies). Use when designing, implementing, or running Jepsen tests, or interpreting histories/violations.
Deterministic Color Generation via Metadata Hashing
**Status**: ✅ Production Ready
cyton-dongle
Connect and stream from OpenBCI Cyton/Daisy via USB dongle, including first-time radio channel pairing
asi-transient-agenda
Org-agenda-like transient views for ASI skill orchestration via nbb/squint + Emacs hydra
Topological Superintelligence (TSI)
Compositional AI framework using GF(3) triadic balance and category-theoretic foundations.
zx-calculus
Coecke's ZX-calculus for quantum circuit reasoning via string diagrams with Z-spiders (green) and X-spiders (red)
zulip-cogen
Zulip Cogen Skill 🐸⚡
zls-integration
zls-integration skill
zig
zig skill
zig-syrup-bci
Multimodal BCI pipeline in Zig: DSI-24 EEG, fNIRS mBLL, eye tracking IVT, LSL sync, EDF read/write, GF(3) conservation
zig-programming
zig-programming skill