Commit graph

2 commits

Author SHA1 Message Date
ruvnet
758fce1a22 chore(workspace): cargo fmt nested workspaces — rvf/, examples/*
Root-level `cargo fmt --all` doesn't recurse into nested workspaces
(crates/rvf/, examples/onnx-embeddings/, examples/data/, …), but
CI's `cargo fmt --all -- --check` was failing on files inside them
(e.g. crates/rvf/rvf-wire/src/hash.rs).

Ran `cargo fmt --all` inside each nested workspace. Mechanical-only
whitespace, no semantic change.

Touched nested workspaces:
  crates/rvf/*
  examples/onnx-embeddings/*
  examples/data/*
  examples/mincut/*
  examples/exo-ai-2025/*
  examples/prime-radiant/*
  examples/rvf/*
  examples/ultra-low-latency-sim/*
  examples/edge/*
  examples/vibecast-7sense/*
  examples/onnx-embeddings-wasm/*

Combined with previous commit (96d8fdc17), the full workspace tree
should now pass `cargo fmt --all -- --check` in CI.

Co-Authored-By: claude-flow <ruv@ruv.net>
2026-04-24 10:51:14 -04:00
rUv
2ed46cb8ab feat(mincut): Add temporal hypergraphs and federated strange loops examples (#81)
Implements Cognitive Frontier research specifications:

Temporal Hypergraphs (5 phases):
- Phase 1: TemporalInterval, TemporalHyperedge, TimeSeries, AllenRelation
- Phase 2: TemporalIndex, TemporalHypergraphDB with time-range queries
- Phase 3: CausalLearner with spike-timing learning (STDP-like)
- Phase 4: TemporalQuery enum and QueryExecutor (AT TIME, DURING, CAUSES)
- Phase 5: TemporalMinCut and CausalMinCut for intervention planning

Federated Strange Loops (4 phases):
- Phase 1: ClusterObservation, ClusterRegistry, ObservationProtocol
- Phase 2: FederationMetaNeuron (Level 3), CrossClusterInfluence
- Phase 3: SpikeConsensus (novel!), pairwise synchrony, consensus voting
- Phase 4: PatternDetector with 5 EmergentPattern types

Novel research contributions:
1. Spike-Based Distributed Consensus
2. Emergent Role Specialization
3. Hierarchical Self-Organization
4. Collective Meta-Cognition

Bump version to 0.1.29

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-25 14:29:54 -05:00