├── .codeiumignore ├── .env.example ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .ruff.toml ├── AGENTS.md ├── CLAUDE.md ├── README.md ├── abbrev_decoder ├── README.md ├── abbrev ├── abbrev_dataset.jsonl ├── abbrev_decoder.py ├── abbrev_decoder_dspy.py ├── abbrev_dspy_program.py ├── abbrev_optimization.py └── abbrev_optimization_simple.py ├── affect_module.py ├── agent_manual_b.py ├── agent_manual_pkg ├── README.md ├── src │ └── agent_manual_pkg │ │ ├── __init__.py │ │ ├── app.py │ │ ├── cli.py │ │ ├── config.py │ │ ├── memory.py │ │ ├── runtime │ │ ├── __init__.py │ │ ├── agent.py │ │ ├── configuration.py │ │ ├── models.py │ │ ├── safety.py │ │ └── tools.py │ │ ├── satisfaction.py │ │ ├── signatures.py │ │ └── tui.py └── tests │ ├── test_cli.py │ ├── test_commands.py │ ├── test_integration_textual.py │ ├── test_layout.py │ ├── test_no_eager_configuration.py │ ├── test_safety.py │ ├── test_tools.py │ ├── test_tui.py │ ├── test_tui_router_commands.py │ └── test_tui_satisfaction_split.py ├── agent_repl ├── __init__.py ├── agent.py ├── commands.py └── config.py ├── agent_simpledspy.py ├── android └── nlco-android │ ├── .gradle │ ├── 8.7 │ │ ├── checksums │ │ │ ├── checksums.lock │ │ │ ├── md5-checksums.bin │ │ │ └── sha1-checksums.bin │ │ ├── dependencies-accessors │ │ │ └── gc.properties │ │ ├── executionHistory │ │ │ ├── executionHistory.bin │ │ │ └── executionHistory.lock │ │ ├── fileChanges │ │ │ └── last-build.bin │ │ ├── fileHashes │ │ │ ├── fileHashes.bin │ │ │ ├── fileHashes.lock │ │ │ └── resourceHashesCache.bin │ │ └── gc.properties │ ├── buildOutputCleanup │ │ ├── buildOutputCleanup.lock │ │ ├── cache.properties │ │ └── outputFiles.bin │ ├── file-system.probe │ └── vcs-1 │ │ └── gc.properties │ ├── app │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── nlco │ │ │ │ └── mobile │ │ │ │ ├── app │ │ │ │ └── MainActivity.kt │ │ │ │ ├── data │ │ │ │ └── NlcoRepository.kt │ │ │ │ ├── network │ │ │ │ └── NlcoApiService.kt │ │ │ │ ├── ui │ │ │ │ ├── MainViewModel.kt │ │ │ │ └── screens │ │ │ │ │ └── NlcoScreens.kt │ │ │ │ └── util │ │ │ │ ├── SessionCookieJar.kt │ │ │ │ └── SessionStorage.kt │ │ └── res │ │ │ ├── drawable │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── nlco │ │ └── mobile │ │ ├── data │ │ └── NlcoRepositoryTest.kt │ │ ├── ui │ │ ├── MainDispatcherRule.kt │ │ └── MainViewModelTest.kt │ │ └── util │ │ └── SessionCookieJarTest.kt │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle.kts ├── backups.py ├── coding_agent_repl.py ├── cognition_typed_dspy.py ├── config.py ├── constraints_diff_module.py ├── constraints_io.py ├── context_provider.py ├── deepseek_batch ├── __init__.py ├── cli.py ├── cli_tree.py └── tui.py ├── deepseek_simba_optimizer.py ├── dspy_modules ├── coding_agent.py ├── generator_module.py ├── memory_gan.py └── value_network.py ├── dspy_programs ├── active_learning.py ├── coding_agent_repl.py ├── concept_world_model.py ├── concept_world_model_v3.py ├── concept_worldmodel_experiment.py ├── dataset_manager.py ├── deepseek_simba_optimizer.py ├── generator_module.py ├── memory_gan.py ├── online_optimization.py ├── taskwarrior_agent.py └── value_network.py ├── editing_utils.py ├── executive_module.py ├── file_lock.py ├── hill_climb_learning ├── cli.py └── modules.py ├── interactive_chat.py ├── iterative_improvement_elo.py ├── memory_module.py ├── metrics_utils.py ├── model_map.py ├── network_monitor.sh ├── nlco_config.toml ├── nlco_iter.py ├── nlco_scheduler.py ├── nootropics_log.py ├── online_optimization_system.py ├── packages └── deepseek-batch │ ├── README.md │ ├── deepseek_batch │ ├── __init__.py │ ├── cli.py │ ├── cli_tree.py │ └── tui.py │ └── tests │ ├── __init__.py │ ├── helpers.py │ ├── test_blueberries.py │ ├── test_cli.py │ ├── test_cli_tree.py │ └── test_entrypoints.py ├── plan.toml ├── planning_module.py ├── pytest.ini ├── refiner_signature.py ├── requirements.txt ├── reviewer_module.py ├── scripts ├── constraints_add_entry.py ├── forbid_paths.sh ├── gen_radon_report.py ├── secrets_scan.sh └── zsh_functions.zsh ├── self_review_agent.py ├── setup_env.sh ├── shell_wrapper.py ├── simpledspy_demo.py ├── simpledspy_main.py ├── start_htmx_server.sh ├── taskwarrior_dspy_agent.py ├── taskwarrior_dspy_definitions.py ├── test_shell_wrapper.py ├── test_textual_task_manager.py ├── tests ├── __init__.py ├── conftest.py ├── helpers.py ├── test_active_learning.py ├── test_add_constraint_script.py ├── test_agent_manual.py ├── test_agent_manual_e2e.py ├── test_agent_tui_refactor_paths.py ├── test_blueberries.py ├── test_cli.py ├── test_cli_tree.py ├── test_coding_agent_repl.py ├── test_cognition_typed_dspy.py ├── test_concept_world_model_v3.py ├── test_concept_worldmodel_experiment.py ├── test_config_bestofbatch.py ├── test_constraints_append_helper.py ├── test_constraints_backups.py ├── test_constraints_diff_module.py ├── test_constraints_io.py ├── test_constraints_locking_utils.py ├── test_context_provider.py ├── test_context_provider_weekday.py ├── test_entrypoints.py ├── test_executive_module.py ├── test_forbid_paths.py ├── test_graph_runner_unit.py ├── test_interactive_chat.py ├── test_iterative_improvement_elo.py ├── test_llm_engine.py ├── test_memory_gan.py ├── test_memory_replace_diff.py ├── test_model_logging.py ├── test_nlco_iter.py ├── test_nlco_iter_logging_and_schedule.py ├── test_nlco_iter_missing_artifact.py ├── test_nlco_iter_nootropics_context.py ├── test_nlco_iter_paths_env.py ├── test_nlco_iter_smoke_refactor.py ├── test_nlco_max_iters_env.py ├── test_nlco_scheduler.py ├── test_nootropics_append.py ├── test_nootropics_log.py ├── test_online_optimization.py ├── test_pick_best_unit.py ├── test_radon_report.py ├── test_reasoning_trace.py ├── test_refiner_signature.py ├── test_secrets_scan.py ├── test_select_and_rank.py ├── test_self_review_agent.py ├── test_setup_env.py ├── test_signature_path_integration.py ├── test_system_state_refiner_input_headless.py ├── test_taskwarrior_dspy_agent.py ├── test_text_path_integration.py ├── test_textual_dspy_app.py ├── test_textual_dspy_controller.py ├── test_timestamp_app_core_cli.py ├── test_timestamp_app_core_css.py ├── test_timestamp_artifact_default_top.py ├── test_timestamp_artifact_focus_shortcut.py ├── test_timestamp_artifact_no_autoscroll.py ├── test_timestamp_artifact_scroll_actions.py ├── test_timestamp_artifact_scroll_helpers_delegate.py ├── test_timestamp_artifact_scrollable.py ├── test_timestamp_cli_constraints_rows.py ├── test_timestamp_cli_pad_eol.py ├── test_timestamp_cli_right_margin.py ├── test_timestamp_constraints_append.py ├── test_timestamp_constraints_autoscroll_env.py ├── test_timestamp_constraints_display.py ├── test_timestamp_constraints_equivalence.py ├── test_timestamp_constraints_focus_blocks_autoscroll.py ├── test_timestamp_constraints_height.py ├── test_timestamp_constraints_helpers.py ├── test_timestamp_constraints_missing_file.py ├── test_timestamp_constraints_newlines.py ├── test_timestamp_constraints_refresh_mtime.py ├── test_timestamp_constraints_rows_env.py ├── test_timestamp_constraints_rows_env_wrapper.py ├── test_timestamp_constraints_tail_auto.py ├── test_timestamp_constraints_tail_default.py ├── test_timestamp_constraints_tail_view.py ├── test_timestamp_constraints_view_load.py ├── test_timestamp_format_line.py ├── test_timestamp_help_binding_and_action.py ├── test_timestamp_input_focus_shortcut.py ├── test_timestamp_no_auto_scroll_flag.py ├── test_timestamp_paths_env.py ├── test_timestamp_shell_wrapper.py ├── test_timestamp_smoke_run_test.py ├── test_timestamp_textual_app.py ├── test_timestamp_textual_cli_lenient.py ├── test_timestamp_textual_entry_order.py ├── test_timestamp_textual_layout_margin.py ├── test_timestamp_textual_lenient_input.py ├── test_timestamp_textual_lenient_warn_once.py ├── test_timestamp_textual_main.py ├── test_timestamp_textual_preflight.py ├── test_timestamp_textual_preflight_success.py ├── test_timestamp_wrapper_exports.py ├── test_try_tree.py ├── test_try_tree_config.py ├── test_vim_input_refactor.py ├── test_web_autocomplete.py ├── test_web_dspy_builder.py ├── test_web_dspy_builder_e2e.py ├── test_web_htmx_app.py ├── test_web_htmx_append_block_consistency.py ├── test_web_paths_resolvers.py └── test_world_model_tui_model_utils.py ├── textual_dspy ├── __init__.py ├── __main__.py ├── app.py ├── controller.py ├── document.py └── widgets.py ├── textual_task_manager.py ├── timestamp_app_core.py ├── timestamp_textual_app.py ├── timestamp_tui.sh ├── timestamp_vim_input.py ├── timewarrior_module.py ├── timewarrior_tools.py ├── web_autocomplete ├── index.html ├── script.js └── style.css ├── web_dspy_builder ├── .dockerignore ├── Dockerfile ├── README.md ├── __init__.py ├── __main__.py ├── docker-compose.yml ├── frontend │ ├── app.js │ ├── index.html │ ├── js │ │ └── litegraph.min.js │ └── styles.css ├── graph_runner.py ├── llm.py ├── models.py ├── requirements.txt ├── run_manager.py └── server.py ├── webapp ├── README.md ├── __init__.py ├── art-generator │ ├── TEST_SUMMARY.md │ ├── backend │ │ └── tests │ │ │ └── test_api_integration.py │ ├── frontend │ │ └── src │ │ │ ├── App.test.js │ │ │ ├── ImageGenerator.test.js │ │ │ └── PreferenceUI.test.js │ ├── requirements_vector_server.txt │ ├── vector_client_example.py │ └── vector_image_server.py ├── backend │ ├── .dockerignore │ ├── Dockerfile │ ├── audio_handler.py │ ├── gemini_handler.py │ ├── gemini_live_handler.py │ ├── live_websocket.py │ ├── main.py │ └── requirements.txt ├── docker-compose.yml ├── frontend │ ├── .dockerignore │ ├── Dockerfile │ ├── public │ │ ├── audio-test.html │ │ ├── index.html │ │ └── test-live-audio.html │ └── src │ │ ├── AudioDebugger.css │ │ ├── AudioDebugger.js │ │ └── index.js └── nlco_htmx │ ├── __init__.py │ ├── app.py │ ├── auth.py │ ├── static │ └── style.css │ ├── templates │ ├── base.html │ ├── index.html │ ├── login.html │ └── partials │ │ ├── artifact.html │ │ ├── history.html │ │ ├── memory.html │ │ └── schedule.html │ └── utils.py └── world_model_tui_v3 ├── README.md ├── requirements.txt └── world_model_tui ├── __init__.py ├── __main__.py ├── app.py ├── dspy_judge.py ├── llm_providers.py ├── model.py └── utils.py /.codeiumignore: -------------------------------------------------------------------------------- 1 | agent_simpledspy.py 2 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/.ruff.toml -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/README.md -------------------------------------------------------------------------------- /abbrev_decoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/abbrev_decoder/README.md -------------------------------------------------------------------------------- /abbrev_decoder/abbrev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/abbrev_decoder/abbrev -------------------------------------------------------------------------------- /abbrev_decoder/abbrev_dataset.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/abbrev_decoder/abbrev_dataset.jsonl -------------------------------------------------------------------------------- /abbrev_decoder/abbrev_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/abbrev_decoder/abbrev_decoder.py -------------------------------------------------------------------------------- /abbrev_decoder/abbrev_decoder_dspy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/abbrev_decoder/abbrev_decoder_dspy.py -------------------------------------------------------------------------------- /abbrev_decoder/abbrev_dspy_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/abbrev_decoder/abbrev_dspy_program.py -------------------------------------------------------------------------------- /abbrev_decoder/abbrev_optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/abbrev_decoder/abbrev_optimization.py -------------------------------------------------------------------------------- /abbrev_decoder/abbrev_optimization_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/abbrev_decoder/abbrev_optimization_simple.py -------------------------------------------------------------------------------- /affect_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/affect_module.py -------------------------------------------------------------------------------- /agent_manual_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_b.py -------------------------------------------------------------------------------- /agent_manual_pkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/README.md -------------------------------------------------------------------------------- /agent_manual_pkg/src/agent_manual_pkg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/src/agent_manual_pkg/__init__.py -------------------------------------------------------------------------------- /agent_manual_pkg/src/agent_manual_pkg/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/src/agent_manual_pkg/app.py -------------------------------------------------------------------------------- /agent_manual_pkg/src/agent_manual_pkg/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/src/agent_manual_pkg/cli.py -------------------------------------------------------------------------------- /agent_manual_pkg/src/agent_manual_pkg/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/src/agent_manual_pkg/config.py -------------------------------------------------------------------------------- /agent_manual_pkg/src/agent_manual_pkg/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/src/agent_manual_pkg/memory.py -------------------------------------------------------------------------------- /agent_manual_pkg/src/agent_manual_pkg/runtime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/src/agent_manual_pkg/runtime/__init__.py -------------------------------------------------------------------------------- /agent_manual_pkg/src/agent_manual_pkg/runtime/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/src/agent_manual_pkg/runtime/agent.py -------------------------------------------------------------------------------- /agent_manual_pkg/src/agent_manual_pkg/runtime/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/src/agent_manual_pkg/runtime/configuration.py -------------------------------------------------------------------------------- /agent_manual_pkg/src/agent_manual_pkg/runtime/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/src/agent_manual_pkg/runtime/models.py -------------------------------------------------------------------------------- /agent_manual_pkg/src/agent_manual_pkg/runtime/safety.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/src/agent_manual_pkg/runtime/safety.py -------------------------------------------------------------------------------- /agent_manual_pkg/src/agent_manual_pkg/runtime/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/src/agent_manual_pkg/runtime/tools.py -------------------------------------------------------------------------------- /agent_manual_pkg/src/agent_manual_pkg/satisfaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/src/agent_manual_pkg/satisfaction.py -------------------------------------------------------------------------------- /agent_manual_pkg/src/agent_manual_pkg/signatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/src/agent_manual_pkg/signatures.py -------------------------------------------------------------------------------- /agent_manual_pkg/src/agent_manual_pkg/tui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/src/agent_manual_pkg/tui.py -------------------------------------------------------------------------------- /agent_manual_pkg/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/tests/test_cli.py -------------------------------------------------------------------------------- /agent_manual_pkg/tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/tests/test_commands.py -------------------------------------------------------------------------------- /agent_manual_pkg/tests/test_integration_textual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/tests/test_integration_textual.py -------------------------------------------------------------------------------- /agent_manual_pkg/tests/test_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/tests/test_layout.py -------------------------------------------------------------------------------- /agent_manual_pkg/tests/test_no_eager_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/tests/test_no_eager_configuration.py -------------------------------------------------------------------------------- /agent_manual_pkg/tests/test_safety.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/tests/test_safety.py -------------------------------------------------------------------------------- /agent_manual_pkg/tests/test_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/tests/test_tools.py -------------------------------------------------------------------------------- /agent_manual_pkg/tests/test_tui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/tests/test_tui.py -------------------------------------------------------------------------------- /agent_manual_pkg/tests/test_tui_router_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/tests/test_tui_router_commands.py -------------------------------------------------------------------------------- /agent_manual_pkg/tests/test_tui_satisfaction_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_manual_pkg/tests/test_tui_satisfaction_split.py -------------------------------------------------------------------------------- /agent_repl/__init__.py: -------------------------------------------------------------------------------- 1 | # Marks this directory as a Python package 2 | -------------------------------------------------------------------------------- /agent_repl/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_repl/agent.py -------------------------------------------------------------------------------- /agent_repl/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_repl/commands.py -------------------------------------------------------------------------------- /agent_repl/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_repl/config.py -------------------------------------------------------------------------------- /agent_simpledspy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/agent_simpledspy.py -------------------------------------------------------------------------------- /android/nlco-android/.gradle/8.7/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/.gradle/8.7/checksums/checksums.lock -------------------------------------------------------------------------------- /android/nlco-android/.gradle/8.7/checksums/md5-checksums.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/.gradle/8.7/checksums/md5-checksums.bin -------------------------------------------------------------------------------- /android/nlco-android/.gradle/8.7/checksums/sha1-checksums.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/.gradle/8.7/checksums/sha1-checksums.bin -------------------------------------------------------------------------------- /android/nlco-android/.gradle/8.7/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/nlco-android/.gradle/8.7/executionHistory/executionHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/.gradle/8.7/executionHistory/executionHistory.bin -------------------------------------------------------------------------------- /android/nlco-android/.gradle/8.7/executionHistory/executionHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/.gradle/8.7/executionHistory/executionHistory.lock -------------------------------------------------------------------------------- /android/nlco-android/.gradle/8.7/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/nlco-android/.gradle/8.7/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/.gradle/8.7/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /android/nlco-android/.gradle/8.7/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/.gradle/8.7/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /android/nlco-android/.gradle/8.7/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/.gradle/8.7/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /android/nlco-android/.gradle/8.7/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/nlco-android/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /android/nlco-android/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Tue Oct 07 01:49:52 CEST 2025 2 | gradle.version=8.7 3 | -------------------------------------------------------------------------------- /android/nlco-android/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /android/nlco-android/.gradle/file-system.probe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/.gradle/file-system.probe -------------------------------------------------------------------------------- /android/nlco-android/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/nlco-android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/app/build.gradle.kts -------------------------------------------------------------------------------- /android/nlco-android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/nlco-android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/nlco-android/app/src/main/java/com/nlco/mobile/app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/app/src/main/java/com/nlco/mobile/app/MainActivity.kt -------------------------------------------------------------------------------- /android/nlco-android/app/src/main/java/com/nlco/mobile/data/NlcoRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/app/src/main/java/com/nlco/mobile/data/NlcoRepository.kt -------------------------------------------------------------------------------- /android/nlco-android/app/src/main/java/com/nlco/mobile/network/NlcoApiService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/app/src/main/java/com/nlco/mobile/network/NlcoApiService.kt -------------------------------------------------------------------------------- /android/nlco-android/app/src/main/java/com/nlco/mobile/ui/MainViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/app/src/main/java/com/nlco/mobile/ui/MainViewModel.kt -------------------------------------------------------------------------------- /android/nlco-android/app/src/main/java/com/nlco/mobile/ui/screens/NlcoScreens.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/app/src/main/java/com/nlco/mobile/ui/screens/NlcoScreens.kt -------------------------------------------------------------------------------- /android/nlco-android/app/src/main/java/com/nlco/mobile/util/SessionCookieJar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/app/src/main/java/com/nlco/mobile/util/SessionCookieJar.kt -------------------------------------------------------------------------------- /android/nlco-android/app/src/main/java/com/nlco/mobile/util/SessionStorage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/app/src/main/java/com/nlco/mobile/util/SessionStorage.kt -------------------------------------------------------------------------------- /android/nlco-android/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/nlco-android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/nlco-android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/nlco-android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/nlco-android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/nlco-android/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /android/nlco-android/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /android/nlco-android/app/src/test/java/com/nlco/mobile/data/NlcoRepositoryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/app/src/test/java/com/nlco/mobile/data/NlcoRepositoryTest.kt -------------------------------------------------------------------------------- /android/nlco-android/app/src/test/java/com/nlco/mobile/ui/MainDispatcherRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/app/src/test/java/com/nlco/mobile/ui/MainDispatcherRule.kt -------------------------------------------------------------------------------- /android/nlco-android/app/src/test/java/com/nlco/mobile/ui/MainViewModelTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/app/src/test/java/com/nlco/mobile/ui/MainViewModelTest.kt -------------------------------------------------------------------------------- /android/nlco-android/app/src/test/java/com/nlco/mobile/util/SessionCookieJarTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/app/src/test/java/com/nlco/mobile/util/SessionCookieJarTest.kt -------------------------------------------------------------------------------- /android/nlco-android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/build.gradle.kts -------------------------------------------------------------------------------- /android/nlco-android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/gradle.properties -------------------------------------------------------------------------------- /android/nlco-android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/nlco-android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/nlco-android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/gradlew -------------------------------------------------------------------------------- /android/nlco-android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/gradlew.bat -------------------------------------------------------------------------------- /android/nlco-android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/android/nlco-android/settings.gradle.kts -------------------------------------------------------------------------------- /backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/backups.py -------------------------------------------------------------------------------- /coding_agent_repl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/coding_agent_repl.py -------------------------------------------------------------------------------- /cognition_typed_dspy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/cognition_typed_dspy.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/config.py -------------------------------------------------------------------------------- /constraints_diff_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/constraints_diff_module.py -------------------------------------------------------------------------------- /constraints_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/constraints_io.py -------------------------------------------------------------------------------- /context_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/context_provider.py -------------------------------------------------------------------------------- /deepseek_batch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/deepseek_batch/__init__.py -------------------------------------------------------------------------------- /deepseek_batch/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/deepseek_batch/cli.py -------------------------------------------------------------------------------- /deepseek_batch/cli_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/deepseek_batch/cli_tree.py -------------------------------------------------------------------------------- /deepseek_batch/tui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/deepseek_batch/tui.py -------------------------------------------------------------------------------- /deepseek_simba_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/deepseek_simba_optimizer.py -------------------------------------------------------------------------------- /dspy_modules/coding_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/dspy_modules/coding_agent.py -------------------------------------------------------------------------------- /dspy_modules/generator_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/dspy_modules/generator_module.py -------------------------------------------------------------------------------- /dspy_modules/memory_gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/dspy_modules/memory_gan.py -------------------------------------------------------------------------------- /dspy_modules/value_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/dspy_modules/value_network.py -------------------------------------------------------------------------------- /dspy_programs/active_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/dspy_programs/active_learning.py -------------------------------------------------------------------------------- /dspy_programs/coding_agent_repl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/dspy_programs/coding_agent_repl.py -------------------------------------------------------------------------------- /dspy_programs/concept_world_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/dspy_programs/concept_world_model.py -------------------------------------------------------------------------------- /dspy_programs/concept_world_model_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/dspy_programs/concept_world_model_v3.py -------------------------------------------------------------------------------- /dspy_programs/concept_worldmodel_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/dspy_programs/concept_worldmodel_experiment.py -------------------------------------------------------------------------------- /dspy_programs/dataset_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/dspy_programs/dataset_manager.py -------------------------------------------------------------------------------- /dspy_programs/deepseek_simba_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/dspy_programs/deepseek_simba_optimizer.py -------------------------------------------------------------------------------- /dspy_programs/generator_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/dspy_programs/generator_module.py -------------------------------------------------------------------------------- /dspy_programs/memory_gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/dspy_programs/memory_gan.py -------------------------------------------------------------------------------- /dspy_programs/online_optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/dspy_programs/online_optimization.py -------------------------------------------------------------------------------- /dspy_programs/taskwarrior_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/dspy_programs/taskwarrior_agent.py -------------------------------------------------------------------------------- /dspy_programs/value_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/dspy_programs/value_network.py -------------------------------------------------------------------------------- /editing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/editing_utils.py -------------------------------------------------------------------------------- /executive_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/executive_module.py -------------------------------------------------------------------------------- /file_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/file_lock.py -------------------------------------------------------------------------------- /hill_climb_learning/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/hill_climb_learning/cli.py -------------------------------------------------------------------------------- /hill_climb_learning/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/hill_climb_learning/modules.py -------------------------------------------------------------------------------- /interactive_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/interactive_chat.py -------------------------------------------------------------------------------- /iterative_improvement_elo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/iterative_improvement_elo.py -------------------------------------------------------------------------------- /memory_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/memory_module.py -------------------------------------------------------------------------------- /metrics_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/metrics_utils.py -------------------------------------------------------------------------------- /model_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/model_map.py -------------------------------------------------------------------------------- /network_monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/network_monitor.sh -------------------------------------------------------------------------------- /nlco_config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/nlco_config.toml -------------------------------------------------------------------------------- /nlco_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/nlco_iter.py -------------------------------------------------------------------------------- /nlco_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/nlco_scheduler.py -------------------------------------------------------------------------------- /nootropics_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/nootropics_log.py -------------------------------------------------------------------------------- /online_optimization_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/online_optimization_system.py -------------------------------------------------------------------------------- /packages/deepseek-batch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/packages/deepseek-batch/README.md -------------------------------------------------------------------------------- /packages/deepseek-batch/deepseek_batch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/packages/deepseek-batch/deepseek_batch/__init__.py -------------------------------------------------------------------------------- /packages/deepseek-batch/deepseek_batch/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/packages/deepseek-batch/deepseek_batch/cli.py -------------------------------------------------------------------------------- /packages/deepseek-batch/deepseek_batch/cli_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/packages/deepseek-batch/deepseek_batch/cli_tree.py -------------------------------------------------------------------------------- /packages/deepseek-batch/deepseek_batch/tui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/packages/deepseek-batch/deepseek_batch/tui.py -------------------------------------------------------------------------------- /packages/deepseek-batch/tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packages/deepseek-batch/tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/packages/deepseek-batch/tests/helpers.py -------------------------------------------------------------------------------- /packages/deepseek-batch/tests/test_blueberries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/packages/deepseek-batch/tests/test_blueberries.py -------------------------------------------------------------------------------- /packages/deepseek-batch/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/packages/deepseek-batch/tests/test_cli.py -------------------------------------------------------------------------------- /packages/deepseek-batch/tests/test_cli_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/packages/deepseek-batch/tests/test_cli_tree.py -------------------------------------------------------------------------------- /packages/deepseek-batch/tests/test_entrypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/packages/deepseek-batch/tests/test_entrypoints.py -------------------------------------------------------------------------------- /plan.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/plan.toml -------------------------------------------------------------------------------- /planning_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/planning_module.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/pytest.ini -------------------------------------------------------------------------------- /refiner_signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/refiner_signature.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/requirements.txt -------------------------------------------------------------------------------- /reviewer_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/reviewer_module.py -------------------------------------------------------------------------------- /scripts/constraints_add_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/scripts/constraints_add_entry.py -------------------------------------------------------------------------------- /scripts/forbid_paths.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/scripts/forbid_paths.sh -------------------------------------------------------------------------------- /scripts/gen_radon_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/scripts/gen_radon_report.py -------------------------------------------------------------------------------- /scripts/secrets_scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/scripts/secrets_scan.sh -------------------------------------------------------------------------------- /scripts/zsh_functions.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/scripts/zsh_functions.zsh -------------------------------------------------------------------------------- /self_review_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/self_review_agent.py -------------------------------------------------------------------------------- /setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/setup_env.sh -------------------------------------------------------------------------------- /shell_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/shell_wrapper.py -------------------------------------------------------------------------------- /simpledspy_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/simpledspy_demo.py -------------------------------------------------------------------------------- /simpledspy_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/simpledspy_main.py -------------------------------------------------------------------------------- /start_htmx_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/start_htmx_server.sh -------------------------------------------------------------------------------- /taskwarrior_dspy_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/taskwarrior_dspy_agent.py -------------------------------------------------------------------------------- /taskwarrior_dspy_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/taskwarrior_dspy_definitions.py -------------------------------------------------------------------------------- /test_shell_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/test_shell_wrapper.py -------------------------------------------------------------------------------- /test_textual_task_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/test_textual_task_manager.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/test_active_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_active_learning.py -------------------------------------------------------------------------------- /tests/test_add_constraint_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_add_constraint_script.py -------------------------------------------------------------------------------- /tests/test_agent_manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_agent_manual.py -------------------------------------------------------------------------------- /tests/test_agent_manual_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_agent_manual_e2e.py -------------------------------------------------------------------------------- /tests/test_agent_tui_refactor_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_agent_tui_refactor_paths.py -------------------------------------------------------------------------------- /tests/test_blueberries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_blueberries.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_cli_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_cli_tree.py -------------------------------------------------------------------------------- /tests/test_coding_agent_repl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_coding_agent_repl.py -------------------------------------------------------------------------------- /tests/test_cognition_typed_dspy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_cognition_typed_dspy.py -------------------------------------------------------------------------------- /tests/test_concept_world_model_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_concept_world_model_v3.py -------------------------------------------------------------------------------- /tests/test_concept_worldmodel_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_concept_worldmodel_experiment.py -------------------------------------------------------------------------------- /tests/test_config_bestofbatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_config_bestofbatch.py -------------------------------------------------------------------------------- /tests/test_constraints_append_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_constraints_append_helper.py -------------------------------------------------------------------------------- /tests/test_constraints_backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_constraints_backups.py -------------------------------------------------------------------------------- /tests/test_constraints_diff_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_constraints_diff_module.py -------------------------------------------------------------------------------- /tests/test_constraints_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_constraints_io.py -------------------------------------------------------------------------------- /tests/test_constraints_locking_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_constraints_locking_utils.py -------------------------------------------------------------------------------- /tests/test_context_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_context_provider.py -------------------------------------------------------------------------------- /tests/test_context_provider_weekday.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_context_provider_weekday.py -------------------------------------------------------------------------------- /tests/test_entrypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_entrypoints.py -------------------------------------------------------------------------------- /tests/test_executive_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_executive_module.py -------------------------------------------------------------------------------- /tests/test_forbid_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_forbid_paths.py -------------------------------------------------------------------------------- /tests/test_graph_runner_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_graph_runner_unit.py -------------------------------------------------------------------------------- /tests/test_interactive_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_interactive_chat.py -------------------------------------------------------------------------------- /tests/test_iterative_improvement_elo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_iterative_improvement_elo.py -------------------------------------------------------------------------------- /tests/test_llm_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_llm_engine.py -------------------------------------------------------------------------------- /tests/test_memory_gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_memory_gan.py -------------------------------------------------------------------------------- /tests/test_memory_replace_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_memory_replace_diff.py -------------------------------------------------------------------------------- /tests/test_model_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_model_logging.py -------------------------------------------------------------------------------- /tests/test_nlco_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_nlco_iter.py -------------------------------------------------------------------------------- /tests/test_nlco_iter_logging_and_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_nlco_iter_logging_and_schedule.py -------------------------------------------------------------------------------- /tests/test_nlco_iter_missing_artifact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_nlco_iter_missing_artifact.py -------------------------------------------------------------------------------- /tests/test_nlco_iter_nootropics_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_nlco_iter_nootropics_context.py -------------------------------------------------------------------------------- /tests/test_nlco_iter_paths_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_nlco_iter_paths_env.py -------------------------------------------------------------------------------- /tests/test_nlco_iter_smoke_refactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_nlco_iter_smoke_refactor.py -------------------------------------------------------------------------------- /tests/test_nlco_max_iters_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_nlco_max_iters_env.py -------------------------------------------------------------------------------- /tests/test_nlco_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_nlco_scheduler.py -------------------------------------------------------------------------------- /tests/test_nootropics_append.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_nootropics_append.py -------------------------------------------------------------------------------- /tests/test_nootropics_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_nootropics_log.py -------------------------------------------------------------------------------- /tests/test_online_optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_online_optimization.py -------------------------------------------------------------------------------- /tests/test_pick_best_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_pick_best_unit.py -------------------------------------------------------------------------------- /tests/test_radon_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_radon_report.py -------------------------------------------------------------------------------- /tests/test_reasoning_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_reasoning_trace.py -------------------------------------------------------------------------------- /tests/test_refiner_signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_refiner_signature.py -------------------------------------------------------------------------------- /tests/test_secrets_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_secrets_scan.py -------------------------------------------------------------------------------- /tests/test_select_and_rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_select_and_rank.py -------------------------------------------------------------------------------- /tests/test_self_review_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_self_review_agent.py -------------------------------------------------------------------------------- /tests/test_setup_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_setup_env.py -------------------------------------------------------------------------------- /tests/test_signature_path_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_signature_path_integration.py -------------------------------------------------------------------------------- /tests/test_system_state_refiner_input_headless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_system_state_refiner_input_headless.py -------------------------------------------------------------------------------- /tests/test_taskwarrior_dspy_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_taskwarrior_dspy_agent.py -------------------------------------------------------------------------------- /tests/test_text_path_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_text_path_integration.py -------------------------------------------------------------------------------- /tests/test_textual_dspy_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_textual_dspy_app.py -------------------------------------------------------------------------------- /tests/test_textual_dspy_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_textual_dspy_controller.py -------------------------------------------------------------------------------- /tests/test_timestamp_app_core_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_app_core_cli.py -------------------------------------------------------------------------------- /tests/test_timestamp_app_core_css.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_app_core_css.py -------------------------------------------------------------------------------- /tests/test_timestamp_artifact_default_top.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_artifact_default_top.py -------------------------------------------------------------------------------- /tests/test_timestamp_artifact_focus_shortcut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_artifact_focus_shortcut.py -------------------------------------------------------------------------------- /tests/test_timestamp_artifact_no_autoscroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_artifact_no_autoscroll.py -------------------------------------------------------------------------------- /tests/test_timestamp_artifact_scroll_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_artifact_scroll_actions.py -------------------------------------------------------------------------------- /tests/test_timestamp_artifact_scroll_helpers_delegate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_artifact_scroll_helpers_delegate.py -------------------------------------------------------------------------------- /tests/test_timestamp_artifact_scrollable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_artifact_scrollable.py -------------------------------------------------------------------------------- /tests/test_timestamp_cli_constraints_rows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_cli_constraints_rows.py -------------------------------------------------------------------------------- /tests/test_timestamp_cli_pad_eol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_cli_pad_eol.py -------------------------------------------------------------------------------- /tests/test_timestamp_cli_right_margin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_cli_right_margin.py -------------------------------------------------------------------------------- /tests/test_timestamp_constraints_append.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_constraints_append.py -------------------------------------------------------------------------------- /tests/test_timestamp_constraints_autoscroll_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_constraints_autoscroll_env.py -------------------------------------------------------------------------------- /tests/test_timestamp_constraints_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_constraints_display.py -------------------------------------------------------------------------------- /tests/test_timestamp_constraints_equivalence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_constraints_equivalence.py -------------------------------------------------------------------------------- /tests/test_timestamp_constraints_focus_blocks_autoscroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_constraints_focus_blocks_autoscroll.py -------------------------------------------------------------------------------- /tests/test_timestamp_constraints_height.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_constraints_height.py -------------------------------------------------------------------------------- /tests/test_timestamp_constraints_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_constraints_helpers.py -------------------------------------------------------------------------------- /tests/test_timestamp_constraints_missing_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_constraints_missing_file.py -------------------------------------------------------------------------------- /tests/test_timestamp_constraints_newlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_constraints_newlines.py -------------------------------------------------------------------------------- /tests/test_timestamp_constraints_refresh_mtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_constraints_refresh_mtime.py -------------------------------------------------------------------------------- /tests/test_timestamp_constraints_rows_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_constraints_rows_env.py -------------------------------------------------------------------------------- /tests/test_timestamp_constraints_rows_env_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_constraints_rows_env_wrapper.py -------------------------------------------------------------------------------- /tests/test_timestamp_constraints_tail_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_constraints_tail_auto.py -------------------------------------------------------------------------------- /tests/test_timestamp_constraints_tail_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_constraints_tail_default.py -------------------------------------------------------------------------------- /tests/test_timestamp_constraints_tail_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_constraints_tail_view.py -------------------------------------------------------------------------------- /tests/test_timestamp_constraints_view_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_constraints_view_load.py -------------------------------------------------------------------------------- /tests/test_timestamp_format_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_format_line.py -------------------------------------------------------------------------------- /tests/test_timestamp_help_binding_and_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_help_binding_and_action.py -------------------------------------------------------------------------------- /tests/test_timestamp_input_focus_shortcut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_input_focus_shortcut.py -------------------------------------------------------------------------------- /tests/test_timestamp_no_auto_scroll_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_no_auto_scroll_flag.py -------------------------------------------------------------------------------- /tests/test_timestamp_paths_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_paths_env.py -------------------------------------------------------------------------------- /tests/test_timestamp_shell_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_shell_wrapper.py -------------------------------------------------------------------------------- /tests/test_timestamp_smoke_run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_smoke_run_test.py -------------------------------------------------------------------------------- /tests/test_timestamp_textual_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_textual_app.py -------------------------------------------------------------------------------- /tests/test_timestamp_textual_cli_lenient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_textual_cli_lenient.py -------------------------------------------------------------------------------- /tests/test_timestamp_textual_entry_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_textual_entry_order.py -------------------------------------------------------------------------------- /tests/test_timestamp_textual_layout_margin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_textual_layout_margin.py -------------------------------------------------------------------------------- /tests/test_timestamp_textual_lenient_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_textual_lenient_input.py -------------------------------------------------------------------------------- /tests/test_timestamp_textual_lenient_warn_once.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_textual_lenient_warn_once.py -------------------------------------------------------------------------------- /tests/test_timestamp_textual_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_textual_main.py -------------------------------------------------------------------------------- /tests/test_timestamp_textual_preflight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_textual_preflight.py -------------------------------------------------------------------------------- /tests/test_timestamp_textual_preflight_success.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_textual_preflight_success.py -------------------------------------------------------------------------------- /tests/test_timestamp_wrapper_exports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_timestamp_wrapper_exports.py -------------------------------------------------------------------------------- /tests/test_try_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_try_tree.py -------------------------------------------------------------------------------- /tests/test_try_tree_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_try_tree_config.py -------------------------------------------------------------------------------- /tests/test_vim_input_refactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_vim_input_refactor.py -------------------------------------------------------------------------------- /tests/test_web_autocomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_web_autocomplete.py -------------------------------------------------------------------------------- /tests/test_web_dspy_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_web_dspy_builder.py -------------------------------------------------------------------------------- /tests/test_web_dspy_builder_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_web_dspy_builder_e2e.py -------------------------------------------------------------------------------- /tests/test_web_htmx_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_web_htmx_app.py -------------------------------------------------------------------------------- /tests/test_web_htmx_append_block_consistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_web_htmx_append_block_consistency.py -------------------------------------------------------------------------------- /tests/test_web_paths_resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_web_paths_resolvers.py -------------------------------------------------------------------------------- /tests/test_world_model_tui_model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/tests/test_world_model_tui_model_utils.py -------------------------------------------------------------------------------- /textual_dspy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/textual_dspy/__init__.py -------------------------------------------------------------------------------- /textual_dspy/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/textual_dspy/__main__.py -------------------------------------------------------------------------------- /textual_dspy/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/textual_dspy/app.py -------------------------------------------------------------------------------- /textual_dspy/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/textual_dspy/controller.py -------------------------------------------------------------------------------- /textual_dspy/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/textual_dspy/document.py -------------------------------------------------------------------------------- /textual_dspy/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/textual_dspy/widgets.py -------------------------------------------------------------------------------- /textual_task_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/textual_task_manager.py -------------------------------------------------------------------------------- /timestamp_app_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/timestamp_app_core.py -------------------------------------------------------------------------------- /timestamp_textual_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/timestamp_textual_app.py -------------------------------------------------------------------------------- /timestamp_tui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/timestamp_tui.sh -------------------------------------------------------------------------------- /timestamp_vim_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/timestamp_vim_input.py -------------------------------------------------------------------------------- /timewarrior_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/timewarrior_module.py -------------------------------------------------------------------------------- /timewarrior_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/timewarrior_tools.py -------------------------------------------------------------------------------- /web_autocomplete/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/web_autocomplete/index.html -------------------------------------------------------------------------------- /web_autocomplete/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/web_autocomplete/script.js -------------------------------------------------------------------------------- /web_autocomplete/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/web_autocomplete/style.css -------------------------------------------------------------------------------- /web_dspy_builder/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/web_dspy_builder/.dockerignore -------------------------------------------------------------------------------- /web_dspy_builder/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/web_dspy_builder/Dockerfile -------------------------------------------------------------------------------- /web_dspy_builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/web_dspy_builder/README.md -------------------------------------------------------------------------------- /web_dspy_builder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/web_dspy_builder/__init__.py -------------------------------------------------------------------------------- /web_dspy_builder/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/web_dspy_builder/__main__.py -------------------------------------------------------------------------------- /web_dspy_builder/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/web_dspy_builder/docker-compose.yml -------------------------------------------------------------------------------- /web_dspy_builder/frontend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/web_dspy_builder/frontend/app.js -------------------------------------------------------------------------------- /web_dspy_builder/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/web_dspy_builder/frontend/index.html -------------------------------------------------------------------------------- /web_dspy_builder/frontend/js/litegraph.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/web_dspy_builder/frontend/js/litegraph.min.js -------------------------------------------------------------------------------- /web_dspy_builder/frontend/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/web_dspy_builder/frontend/styles.css -------------------------------------------------------------------------------- /web_dspy_builder/graph_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/web_dspy_builder/graph_runner.py -------------------------------------------------------------------------------- /web_dspy_builder/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/web_dspy_builder/llm.py -------------------------------------------------------------------------------- /web_dspy_builder/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/web_dspy_builder/models.py -------------------------------------------------------------------------------- /web_dspy_builder/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/web_dspy_builder/requirements.txt -------------------------------------------------------------------------------- /web_dspy_builder/run_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/web_dspy_builder/run_manager.py -------------------------------------------------------------------------------- /web_dspy_builder/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/web_dspy_builder/server.py -------------------------------------------------------------------------------- /webapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/README.md -------------------------------------------------------------------------------- /webapp/__init__.py: -------------------------------------------------------------------------------- 1 | """Web interfaces for the NLCO agent.""" 2 | -------------------------------------------------------------------------------- /webapp/art-generator/TEST_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/art-generator/TEST_SUMMARY.md -------------------------------------------------------------------------------- /webapp/art-generator/backend/tests/test_api_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/art-generator/backend/tests/test_api_integration.py -------------------------------------------------------------------------------- /webapp/art-generator/frontend/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/art-generator/frontend/src/App.test.js -------------------------------------------------------------------------------- /webapp/art-generator/frontend/src/ImageGenerator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/art-generator/frontend/src/ImageGenerator.test.js -------------------------------------------------------------------------------- /webapp/art-generator/frontend/src/PreferenceUI.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/art-generator/frontend/src/PreferenceUI.test.js -------------------------------------------------------------------------------- /webapp/art-generator/requirements_vector_server.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/art-generator/requirements_vector_server.txt -------------------------------------------------------------------------------- /webapp/art-generator/vector_client_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/art-generator/vector_client_example.py -------------------------------------------------------------------------------- /webapp/art-generator/vector_image_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/art-generator/vector_image_server.py -------------------------------------------------------------------------------- /webapp/backend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/backend/.dockerignore -------------------------------------------------------------------------------- /webapp/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/backend/Dockerfile -------------------------------------------------------------------------------- /webapp/backend/audio_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/backend/audio_handler.py -------------------------------------------------------------------------------- /webapp/backend/gemini_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/backend/gemini_handler.py -------------------------------------------------------------------------------- /webapp/backend/gemini_live_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/backend/gemini_live_handler.py -------------------------------------------------------------------------------- /webapp/backend/live_websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/backend/live_websocket.py -------------------------------------------------------------------------------- /webapp/backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/backend/main.py -------------------------------------------------------------------------------- /webapp/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/backend/requirements.txt -------------------------------------------------------------------------------- /webapp/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/docker-compose.yml -------------------------------------------------------------------------------- /webapp/frontend/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | npm-debug.log 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /webapp/frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/frontend/Dockerfile -------------------------------------------------------------------------------- /webapp/frontend/public/audio-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/frontend/public/audio-test.html -------------------------------------------------------------------------------- /webapp/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/frontend/public/index.html -------------------------------------------------------------------------------- /webapp/frontend/public/test-live-audio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/frontend/public/test-live-audio.html -------------------------------------------------------------------------------- /webapp/frontend/src/AudioDebugger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/frontend/src/AudioDebugger.css -------------------------------------------------------------------------------- /webapp/frontend/src/AudioDebugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/frontend/src/AudioDebugger.js -------------------------------------------------------------------------------- /webapp/frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/frontend/src/index.js -------------------------------------------------------------------------------- /webapp/nlco_htmx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/nlco_htmx/__init__.py -------------------------------------------------------------------------------- /webapp/nlco_htmx/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/nlco_htmx/app.py -------------------------------------------------------------------------------- /webapp/nlco_htmx/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/nlco_htmx/auth.py -------------------------------------------------------------------------------- /webapp/nlco_htmx/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/nlco_htmx/static/style.css -------------------------------------------------------------------------------- /webapp/nlco_htmx/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/nlco_htmx/templates/base.html -------------------------------------------------------------------------------- /webapp/nlco_htmx/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/nlco_htmx/templates/index.html -------------------------------------------------------------------------------- /webapp/nlco_htmx/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/nlco_htmx/templates/login.html -------------------------------------------------------------------------------- /webapp/nlco_htmx/templates/partials/artifact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/nlco_htmx/templates/partials/artifact.html -------------------------------------------------------------------------------- /webapp/nlco_htmx/templates/partials/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/nlco_htmx/templates/partials/history.html -------------------------------------------------------------------------------- /webapp/nlco_htmx/templates/partials/memory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/nlco_htmx/templates/partials/memory.html -------------------------------------------------------------------------------- /webapp/nlco_htmx/templates/partials/schedule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/nlco_htmx/templates/partials/schedule.html -------------------------------------------------------------------------------- /webapp/nlco_htmx/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/webapp/nlco_htmx/utils.py -------------------------------------------------------------------------------- /world_model_tui_v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/world_model_tui_v3/README.md -------------------------------------------------------------------------------- /world_model_tui_v3/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/world_model_tui_v3/requirements.txt -------------------------------------------------------------------------------- /world_model_tui_v3/world_model_tui/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.3.0" 2 | -------------------------------------------------------------------------------- /world_model_tui_v3/world_model_tui/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/world_model_tui_v3/world_model_tui/__main__.py -------------------------------------------------------------------------------- /world_model_tui_v3/world_model_tui/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/world_model_tui_v3/world_model_tui/app.py -------------------------------------------------------------------------------- /world_model_tui_v3/world_model_tui/dspy_judge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/world_model_tui_v3/world_model_tui/dspy_judge.py -------------------------------------------------------------------------------- /world_model_tui_v3/world_model_tui/llm_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/world_model_tui_v3/world_model_tui/llm_providers.py -------------------------------------------------------------------------------- /world_model_tui_v3/world_model_tui/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/world_model_tui_v3/world_model_tui/model.py -------------------------------------------------------------------------------- /world_model_tui_v3/world_model_tui/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/agent/HEAD/world_model_tui_v3/world_model_tui/utils.py --------------------------------------------------------------------------------