LICENSE
MANIFEST.in
README.md
pyproject.toml
benchmarks/benchmarks.py
docs/FLUX-Ecosystem-Audit.docx
docs/FLUX_Design_Specification.pdf
docs/GRADUATION.md
docs/INDEX.md
docs/ISA_UNIFIED.md
docs/MIGRATION_GUIDE.md
docs/OPCODE-RECONCILIATION.md
docs/RESEARCH_ROADMAP.md
docs/REVERSE_ENGINEERING.md
docs/ability-transfer-r2-synthesis.md
docs/async-primitives-spec.md
docs/bootcamp-effectiveness-research.md
docs/developer-guide.md
docs/embedding-search-opcode-spec.md
docs/fleet-communication-topology-analysis.md
docs/git-native-a2a-survey.md
docs/graph-traversal-opcode-spec.md
docs/isa-v3-escape-prefix-spec.md
docs/lora-agent-ability-pipeline.md
docs/multi-agent-debugging-patterns.md
docs/probabilistic-sampling-opcode-spec.md
docs/security-primitives-spec.md
docs/structured-data-opcodes-v2.md
docs/temporal-primitives-spec.md
docs/user-guide.md
docs/wasm-compilation-target-v2.md
docs/agent-training/README.md
docs/bootcamp/README.md
docs/bootcamp/module-01-bytecode-basics.md
docs/bootcamp/module-02-control-flow.md
docs/bootcamp/module-03-a2a-protocol.md
docs/bootcamp/module-04-memory-regions.md
docs/bootcamp/module-05-fir-pipeline.md
docs/bootcamp/module-06-fleet-patterns.md
docs/research/agent_orchestration.md
docs/research/bootstrap_and_meta.md
docs/research/creative_use_cases.md
docs/research/memory_and_learning.md
docs/research/simulation_and_prediction.md
src/flux/__init__.py
src/flux/__main__.py
src/flux/cli.py
src/flux/debugger.py
src/flux/disasm.py
src/flux/open_interpreter.py
src/flux/py.typed
src/flux/repl.py
src/flux/a2a/__init__.py
src/flux/a2a/coordinator.py
src/flux/a2a/messages.py
src/flux/a2a/primitives.py
src/flux/a2a/signal_compiler.py
src/flux/a2a/transport.py
src/flux/a2a/trust.py
src/flux/adaptive/__init__.py
src/flux/adaptive/compiler_bridge.py
src/flux/adaptive/profiler.py
src/flux/adaptive/selector.py
src/flux/asm/__init__.py
src/flux/asm/binary_patcher.py
src/flux/asm/cross_assembler.py
src/flux/asm/elf_header.py
src/flux/asm/errors.py
src/flux/asm/linker.py
src/flux/asm/macros.py
src/flux/asm/opcodes_compat.py
src/flux/bytecode/__init__.py
src/flux/bytecode/decoder.py
src/flux/bytecode/encoder.py
src/flux/bytecode/formats.py
src/flux/bytecode/isa_unified.py
src/flux/bytecode/opcodes.py
src/flux/bytecode/opcodes_legacy.py
src/flux/bytecode/validator.py
src/flux/compiler/__init__.py
src/flux/compiler/pipeline.py
src/flux/cost/__init__.py
src/flux/cost/energy.py
src/flux/cost/model.py
src/flux/creative/__init__.py
src/flux/creative/generative.py
src/flux/creative/live.py
src/flux/creative/sonification.py
src/flux/creative/visualization.py
src/flux/docs/__init__.py
src/flux/docs/generator.py
src/flux/docs/introspector.py
src/flux/docs/renderer.py
src/flux/docs/stats.py
src/flux/evolution/__init__.py
src/flux/evolution/evolution.py
src/flux/evolution/genome.py
src/flux/evolution/mutator.py
src/flux/evolution/pattern_mining.py
src/flux/evolution/validator.py
src/flux/fir/__init__.py
src/flux/fir/blocks.py
src/flux/fir/builder.py
src/flux/fir/instructions.py
src/flux/fir/printer.py
src/flux/fir/types.py
src/flux/fir/validator.py
src/flux/fir/values.py
src/flux/flywheel/__init__.py
src/flux/flywheel/engine.py
src/flux/flywheel/hypothesis.py
src/flux/flywheel/knowledge.py
src/flux/flywheel/metrics.py
src/flux/frontend/__init__.py
src/flux/frontend/c_frontend.py
src/flux/frontend/python_frontend.py
src/flux/jit/__init__.py
src/flux/jit/cache.py
src/flux/jit/compiler.py
src/flux/jit/ir_optimize.py
src/flux/jit/tracing.py
src/flux/mega/__init__.py
src/flux/mega/conductor.py
src/flux/mega/demo_mega.py
src/flux/memory/__init__.py
src/flux/memory/bandit.py
src/flux/memory/experience.py
src/flux/memory/learning.py
src/flux/memory/store.py
src/flux/migrate/__init__.py
src/flux/migrate/migrator.py
src/flux/migrate/report.py
src/flux/modules/__init__.py
src/flux/modules/card.py
src/flux/modules/container.py
src/flux/modules/granularity.py
src/flux/modules/namespace.py
src/flux/modules/reloader.py
src/flux/open_interp/__init__.py
src/flux/open_interp/argumentation.py
src/flux/open_interp/assembler.py
src/flux/open_interp/beachcomb.py
src/flux/open_interp/compiler.py
src/flux/open_interp/context_filter.py
src/flux/open_interp/contradiction_detector.py
src/flux/open_interp/decomposer.py
src/flux/open_interp/edge_profile.py
src/flux/open_interp/ethical_weight.py
src/flux/open_interp/ghost_loader.py
src/flux/open_interp/interpreter.py
src/flux/open_interp/l0_scrubber.py
src/flux/open_interp/necrosis_detector.py
src/flux/open_interp/paper_bridge.py
src/flux/open_interp/paper_decomposer.py
src/flux/open_interp/pruning.py
src/flux/open_interp/sandbox.py
src/flux/open_interp/semantic_router.py
src/flux/open_interp/term_obituary.py
src/flux/open_interp/tiling.py
src/flux/open_interp/vocab_signal.py
src/flux/open_interp/vocabulary.py
src/flux/optimizer/__init__.py
src/flux/optimizer/passes.py
src/flux/optimizer/pipeline.py
src/flux/parser/__init__.py
src/flux/parser/nodes.py
src/flux/parser/parser.py
src/flux/pipeline/__init__.py
src/flux/pipeline/debug.py
src/flux/pipeline/e2e.py
src/flux/pipeline/polyglot.py
src/flux/protocol/__init__.py
src/flux/protocol/channel.py
src/flux/protocol/message.py
src/flux/protocol/negotiation.py
src/flux/protocol/registry.py
src/flux/protocol/serialization.py
src/flux/reload/__init__.py
src/flux/reload/hot_loader.py
src/flux/retro/__init__.py
src/flux/retro/catalog.py
src/flux/retro/implementations/__init__.py
src/flux/retro/implementations/_asm.py
src/flux/retro/implementations/_builder.py
src/flux/retro/implementations/game_of_life.py
src/flux/retro/implementations/lunar_lander.py
src/flux/retro/implementations/mandelbrot.py
src/flux/retro/implementations/markov_text.py
src/flux/retro/implementations/mastermind.py
src/flux/retro/implementations/pong.py
src/flux/retro/implementations/snake.py
src/flux/retro/implementations/tetris.py
src/flux/retro/implementations/text_adventure.py
src/flux/retro/implementations/tic_tac_toe.py
src/flux/retro/research/__init__.py
src/flux/retro/research/metrics.py
src/flux/retro/research/runner.py
src/flux/retro/research/session.py
src/flux/retro/showcase/__init__.py
src/flux/retro/showcase/__main__.py
src/flux/reverse/__init__.py
src/flux/reverse/code_map.py
src/flux/reverse/engineer.py
src/flux/reverse/parsers/__init__.py
src/flux/reverse/parsers/c_reverse.py
src/flux/reverse/parsers/python_reverse.py
src/flux/runtime/__init__.py
src/flux/runtime/agent.py
src/flux/runtime/agent_runtime.py
src/flux/schema/__init__.py
src/flux/schema/architecture.py
src/flux/schema/builder_schema.py
src/flux/schema/opcode_schema.py
src/flux/schema/tile_schema.py
src/flux/security/__init__.py
src/flux/security/bytecode_verifier.py
src/flux/security/capabilities.py
src/flux/security/resource_limits.py
src/flux/security/sandbox.py
src/flux/simulation/__init__.py
src/flux/simulation/digital_twin.py
src/flux/simulation/oracle.py
src/flux/simulation/predictor.py
src/flux/simulation/speculator.py
src/flux/stdlib/__init__.py
src/flux/stdlib/agents.py
src/flux/stdlib/collections.py
src/flux/stdlib/intrinsics.py
src/flux/stdlib/math.py
src/flux/stdlib/strings.py
src/flux/swarm/__init__.py
src/flux/swarm/agent.py
src/flux/swarm/deadlock.py
src/flux/swarm/message_bus.py
src/flux/swarm/swarm.py
src/flux/swarm/topology.py
src/flux/synthesis/__init__.py
src/flux/synthesis/demo.py
src/flux/synthesis/report.py
src/flux/synthesis/synthesizer.py
src/flux/tiles/__init__.py
src/flux/tiles/graph.py
src/flux/tiles/library.py
src/flux/tiles/ports.py
src/flux/tiles/registry.py
src/flux/tiles/tile.py
src/flux/types/__init__.py
src/flux/types/compat.py
src/flux/types/generic.py
src/flux/types/unify.py
src/flux/vm/__init__.py
src/flux/vm/evolution.py
src/flux/vm/interpreter.py
src/flux/vm/memory.py
src/flux/vm/registers.py
src/flux_vm.egg-info/PKG-INFO
src/flux_vm.egg-info/SOURCES.txt
src/flux_vm.egg-info/dependency_links.txt
src/flux_vm.egg-info/entry_points.txt
src/flux_vm.egg-info/requires.txt
src/flux_vm.egg-info/top_level.txt
tests/test_a2a.py
tests/test_adaptive.py
tests/test_argumentation.py
tests/test_beachcomb.py
tests/test_bytecode.py
tests/test_bytecode_verifier.py
tests/test_conformance.py
tests/test_contradiction_detector.py
tests/test_cost.py
tests/test_creative.py
tests/test_cross_assembler.py
tests/test_debugger.py
tests/test_docs.py
tests/test_edge_profile.py
tests/test_evolution.py
tests/test_fir.py
tests/test_fleet_sim.py
tests/test_flywheel.py
tests/test_formats.py
tests/test_frontends.py
tests/test_ghost_loader.py
tests/test_integration.py
tests/test_isa_unified.py
tests/test_jit.py
tests/test_l0_scrubber.py
tests/test_marine_physics.py
tests/test_mega.py
tests/test_memory.py
tests/test_modules.py
tests/test_open_interpreter.py
tests/test_optimizer.py
tests/test_paper_bridge.py
tests/test_parser.py
tests/test_primitives.py
tests/test_protocol.py
tests/test_reload.py
tests/test_reverse.py
tests/test_runtime.py
tests/test_schema.py
tests/test_security.py
tests/test_self_improvement.py
tests/test_semantic_router.py
tests/test_signal_compiler.py
tests/test_simulation.py
tests/test_stdlib.py
tests/test_swarm.py
tests/test_synthesis.py
tests/test_term_obituary.py
tests/test_tiles.py
tests/test_type_unify.py
tests/test_vm.py
tests/test_vm_complete.py
tests/test_vocab_signal.py