gitextract_6ki90ee9/ ├── .claude/ │ └── commands/ │ ├── README.md │ ├── alignment.agent.md │ ├── cli.agent.md │ ├── comms.agent.md │ ├── data.agent.md │ ├── deploy.agent.md │ ├── diligence.agent.md │ ├── doc.agent.md │ ├── legal.agent.md │ ├── lit.agent.md │ ├── marketing.agent.md │ ├── meta.agent.md │ ├── monitor.agent.md │ ├── optimize.agent.md │ ├── research.agent.md │ ├── security.agent.md │ └── test.agent.md ├── .github/ │ ├── CONTRIBUTING.md │ └── workflows/ │ ├── README.md │ ├── ci.yml │ ├── eval.yml │ └── protocol_tests.yml ├── 00_COURSE/ │ ├── 00_mathematical_foundations/ │ │ ├── 00_introduction.md │ │ ├── 01_context_formalization.md │ │ ├── 02_optimization_theory.md │ │ ├── 03_information_theory.md │ │ ├── 04_bayesian_inference.md │ │ ├── README.md │ │ └── exercises/ │ │ ├── README.md │ │ └── math_foundations_lab.py │ ├── 01_context_retrieval_generation/ │ │ ├── 00_overview.md │ │ ├── 01_prompt_engineering.md │ │ ├── 02_external_knowledge.md │ │ ├── 03_dynamic_assembly.md │ │ ├── README.md │ │ ├── case_studies/ │ │ │ ├── domain_specific_prompting.md │ │ │ └── retrieval_optimization.md │ │ ├── labs/ │ │ │ ├── README.md │ │ │ ├── dynamic_assembly_lab.py │ │ │ ├── knowledge_retrieval_lab.py │ │ │ └── prompt_engineering_lab.py │ │ └── templates/ │ │ ├── assembly_patterns.py │ │ ├── prompt_templates.yaml │ │ └── retrieval_configs.json │ ├── 02_context_processing/ │ │ ├── 00_overview.md │ │ ├── 01_long_context_processing.md │ │ ├── 02_self_refinement.md │ │ ├── 03_multimodal_context.md │ │ ├── 04_structured_context.md │ │ ├── README.md │ │ ├── benchmarks/ │ │ │ ├── long_context_evaluation.py │ │ │ └── processing_metrics.py │ │ ├── implementations/ │ │ │ ├── attention_mechanisms.py │ │ │ ├── multimodal_processors.py │ │ │ └── refinement_loops.py │ │ └── labs/ │ │ ├── long_context_lab.py │ │ ├── multimodal_lab.py │ │ ├── self_refinement_lab.py │ │ └── structured_data_lab.py │ ├── 03_context_management/ │ │ ├── 00_overview.md │ │ ├── 01_fundamental_constraints.md │ │ ├── 02_memory_hierarchies.md │ │ ├── 03_compression_techniques.md │ │ ├── 04_optimization_strategies.md │ │ ├── README.md │ │ └── labs/ │ │ └── memory_management_lab.py │ ├── 04_retrieval_augmented_generation/ │ │ ├── 00_rag_fundamentals.md │ │ ├── 01_modular_architectures.md │ │ ├── 02_agentic_rag.md │ │ ├── 03_graph_enhanced_rag.md │ │ ├── 04_advanced_applications.md │ │ └── README.md │ ├── 05_memory_systems/ │ │ ├── 00_memory_architectures.md │ │ ├── 01_persistent_memory.md │ │ ├── 02_memory_enhanced_agents.md │ │ ├── 03_evaluation_challenges.md │ │ ├── 04_reconstructive_memory.md │ │ └── README.md │ ├── 06_tool_integrated_reasoning/ │ │ ├── 00_function_calling.md │ │ ├── 01_tool_integration.md │ │ ├── 02_agent_environment.md │ │ ├── 03_reasoning_frameworks.md │ │ └── README.md │ ├── 07_multi_agent_systems/ │ │ ├── 00_communication_protocols.md │ │ ├── 01_orchestration_mechanisms.md │ │ ├── 02_coordination_strategies.md │ │ ├── 03_emergent_behaviors.md │ │ └── README.md │ ├── 08_field_theory_integration/ │ │ ├── 00_neural_field_foundations.md │ │ ├── 01_attractor_dynamics.md │ │ ├── 02_field_resonance.md │ │ ├── 03_boundary_management.md │ │ └── README.md │ ├── 09_evaluation_methodologies/ │ │ ├── 00_evaluation_frameworks.md │ │ ├── 01_component_assessment.md │ │ ├── 02_system_integration.md │ │ ├── 03_benchmark_design.md │ │ └── README.md │ ├── 10_orchestration_capstone/ │ │ ├── 00_capstone_overview.md │ │ └── README.md │ └── README.md ├── 00_EVIDENCE/ │ └── README.md ├── 00_foundations/ │ ├── 01_atoms_prompting.md │ ├── 02_molecules_context.md │ ├── 03_cells_memory.md │ ├── 04_organs_applications.md │ ├── 05_cognitive_tools.md │ ├── 06_advanced_applications.md │ ├── 07_prompt_programming.md │ ├── 08_neural_fields_foundations.md │ ├── 09_persistence_and_resonance.md │ ├── 10_field_orchestration.md │ ├── 11_emergence_and_attractor_dynamics.md │ ├── 12_symbolic_mechanisms.md │ ├── 13_quantum_semantics.md │ ├── 14_unified_field_theory.md │ └── README.md ├── 10_guides_zero_to_hero/ │ ├── 01_min_prompt.py │ ├── 02_expand_context.py │ ├── 03_control_loops.py │ ├── 04_rag_recipes.py │ ├── 05_prompt_programs.py │ ├── 06_schema_design.py │ ├── 07_recursive_patterns.py │ └── README.md ├── 20_templates/ │ ├── PROMPTS/ │ │ ├── README.md │ │ ├── alignment.agent.md │ │ ├── attractor_design.md │ │ ├── chain_of_thought.md │ │ ├── comms.agent.md │ │ ├── diligence.agent.md │ │ ├── ethics.agent.md │ │ ├── experiment.agent.md │ │ ├── expert_guides.md │ │ ├── few_shot_learning.md │ │ ├── grant.agent.md │ │ ├── ideation.agent.md │ │ ├── incident.agent.md │ │ ├── learningroadmap.agent.md │ │ ├── lit.agent.md │ │ ├── memory.agent.md │ │ ├── minimal_context.md │ │ ├── pipeline.agent.md │ │ ├── policyimpact.agent.md │ │ ├── portfolio.agent.md │ │ ├── protocol.agent.md │ │ ├── reconstruction.memory.agent.md │ │ ├── research.agent.md │ │ ├── self_organization.md │ │ ├── triage.agent.md │ │ └── verification_loop.md │ ├── README.md │ ├── control_loop.py │ ├── field_protocol_shells.py │ ├── field_resonance_measure.py │ ├── minimal_context.yaml │ ├── neural_field_context.yaml │ ├── prompt_program_template.py │ ├── recursive_context.py │ ├── schema_template.json │ ├── schema_template.yaml │ └── scoring_functions.py ├── 30_examples/ │ ├── 00_toy_chatbot/ │ │ ├── README.md │ │ ├── chatbot_core.py.md │ │ ├── context_field.py.md │ │ ├── conversation_examples.py.md │ │ ├── meta_recursive_demo.py.md │ │ └── protocol_shells.py.md │ └── README.md ├── 40_reference/ │ ├── README.md │ ├── advanced_latent_mapping.md │ ├── attractor_dynamics.md │ ├── cognitive_patterns.md │ ├── emergence_signatures.md │ ├── eval_checklist.md │ ├── field_mapping.md │ ├── latent_mapping.md │ ├── patterns.md │ ├── retrieval_indexing.md │ ├── schema_cookbook.md │ ├── symbolic_residue_types.md │ └── token_budgeting.md ├── 50_contrib/ │ └── README.md ├── 60_protocols/ │ ├── README.md │ ├── digests/ │ │ ├── README.md │ │ └── attractor.co.emerge.digest.md │ ├── schemas/ │ │ ├── README.md │ │ ├── protocolShell.v1.json │ │ └── symbolicResidue.v1.json │ └── shells/ │ ├── README.md │ ├── attractor.co.emerge.shell.md │ ├── context.memory.persistence.attractor.shell.md │ ├── field.resonance.scaffold.shell.md │ ├── field.self_repair.shell.md │ ├── memory.reconstruction.attractor.shell.md │ ├── recursive.emergence.shell.md │ └── recursive.memory.attractor.shell.md ├── 70_agents/ │ └── README.md ├── 80_field_integration/ │ └── README.md ├── CITATIONS.md ├── CITATIONS_v2.md ├── CITATIONS_v3.md ├── CLAUDE.md ├── Complete_Guide.md ├── GEMINI.md ├── LICENSE ├── NOCODE/ │ ├── 00_foundations/ │ │ ├── 01_introduction.md │ │ ├── 02_token_budgetng.md │ │ ├── 03_protocol_shells.md │ │ ├── 04_pareto_lang.md │ │ ├── 05_field_theory.md │ │ ├── 06_meta_recursion.md │ │ ├── 07_interpretability.md │ │ ├── 08_collaboration.md │ │ ├── 09_cross_modal.md │ │ └── 10_cross_model.md │ ├── 10_mental_models/ │ │ ├── 01_garden_model.md │ │ ├── 02_budget_model.md │ │ ├── 03_river_model.md │ │ ├── 04_biopsychosocial_model.md │ │ ├── 05_alchemy_model.md │ │ └── README.md │ ├── 20_practical_protocols/ │ │ ├── 01_conversation_protocols.md │ │ ├── 02_document_protocols.md │ │ ├── 03_creative_protocols.md │ │ ├── 04_research_protocols.md │ │ ├── 05_knowledge_protocols.md │ │ ├── 06_meta_recursive_protocols.md │ │ ├── 07_interpretability_protocols.md │ │ ├── 08_collaborative_protocols.md │ │ ├── 09_cross_modal_protocols.md │ │ └── README.md │ ├── 30_field_techniques/ │ │ └── README.md │ ├── 40_protocol_design/ │ │ └── README.md │ ├── 50_advanced_integration/ │ │ └── README.md │ ├── NOCODE.md │ ├── README.md │ └── resources/ │ └── README.md ├── PODCASTS/ │ ├── Deep Dive Transcript.txt │ └── README.md ├── README.md ├── SECURITY_RESEARCH/ │ ├── README.md │ └── SYSTEM_PROMPTS/ │ ├── README.md │ └── claude_code_system_prompt.md ├── STRUCTURE/ │ ├── README.md │ ├── STRUCTURE.md │ ├── STRUCTURE_v2.md │ ├── STRUCTURE_v3.md │ └── TREE.md ├── cognitive-tools/ │ ├── README.md │ ├── cognitive-architectures/ │ │ ├── README.md │ │ ├── architecture-examples.py │ │ ├── field-architecture.md │ │ ├── interpretability-architecture.md │ │ ├── quantum-architecture.md │ │ ├── reconstruction-memory-architecture.md │ │ ├── research-architecture.md │ │ ├── solver-architecture.md │ │ ├── tutor-architecture.md │ │ └── unified_architecture.md │ ├── cognitive-programs/ │ │ ├── README.md │ │ ├── advanced-programs.md │ │ ├── basic-programs.md │ │ ├── program-examples.py │ │ └── program-library.py │ ├── cognitive-schemas/ │ │ ├── README.md │ │ ├── agentic-schemas.md │ │ ├── domain-schemas.md │ │ ├── field-schemas.md │ │ ├── schema-library.yaml │ │ ├── task-schemas.md │ │ ├── unified-schemas.md │ │ └── user-schemas.md │ └── cognitive-templates/ │ ├── README.md │ ├── composition.md │ ├── reasoning.md │ ├── understanding.md │ └── verification.md ├── context-schemas/ │ ├── README.md │ ├── context.json │ ├── context_v2.0.json │ ├── context_v3.0.json │ ├── context_v3.5.json │ ├── context_v4.0.json │ ├── context_v5.0.json │ ├── context_v6.0.json │ └── context_v7.0.json └── masterclass_content/ ├── 01_chain_of_thought_module.md ├── 02_atoms_of_prompting_module.md ├── 03_molecules_of_context_module.md ├── 04_cells_of_memory_module.md ├── 05_organs_and_applications_module.md ├── 06_cognitive_tools_module.md ├── 07_advanced_applications_module.md └── 08_prompt_programming_module.md