.gitignore
.pre-commit-config.yaml
AGENTS.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE.md
README.md
SECURITY.md
pyproject.toml
.github/pull_request_template.md
.github/ISSUE_TEMPLATE/bug_report.yml
.github/ISSUE_TEMPLATE/config.yml
.github/ISSUE_TEMPLATE/feature_request.yml
.github/workflows/lint.yml
.github/workflows/publish.yml
.github/workflows/tests.yml
docs/00 - Welcome to Nemantix.md
docs/01 - Nemantix and Intentware.md
docs/02 - Platform Overview.md
docs/03 - NXS language.md
docs/04 - Script Lifecycle.md
docs/05 - Toolsets.md
docs/05a - Toolset API Reference.md
docs/06 - Agents.md
docs/06a - LLM Proxy.md
docs/06b - Logging API.md
docs/07 - EventHub.md
docs/08 - Knowledge Base.md
docs/09 - CLI.md
docs/images/arch_flow.png
docs/images/flow.png
docs/images/intentware.png
docs/images/kebula.png
docs/images/logo.png
docs/images/nxs_skeleton.png
examples/actions.nxs
examples/do_statement.nxs
examples/loops.nxs
examples/similarity.nxs
examples/ticket.nxs
examples/toolset.nxs
plugins/JetBrains/syntax-highlighter/.gitignore
plugins/JetBrains/syntax-highlighter/CHANGELOG.md
plugins/JetBrains/syntax-highlighter/LICENSE.md
plugins/JetBrains/syntax-highlighter/README.md
plugins/JetBrains/syntax-highlighter/build.gradle.kts
plugins/JetBrains/syntax-highlighter/src/main/gen/it/kebula/plugin/NemantixLexer.java
plugins/JetBrains/syntax-highlighter/src/main/kotlin/it/kebula/plugin/Nemantix.flex
plugins/JetBrains/syntax-highlighter/src/main/kotlin/it/kebula/plugin/NemantixAnnotator.kt
plugins/JetBrains/syntax-highlighter/src/main/kotlin/it/kebula/plugin/NemantixCommenter.kt
plugins/JetBrains/syntax-highlighter/src/main/kotlin/it/kebula/plugin/NemantixCompletionContributor.kt
plugins/JetBrains/syntax-highlighter/src/main/kotlin/it/kebula/plugin/NemantixFile.kt
plugins/JetBrains/syntax-highlighter/src/main/kotlin/it/kebula/plugin/NemantixFileType.kt
plugins/JetBrains/syntax-highlighter/src/main/kotlin/it/kebula/plugin/NemantixFoldingBuilder.kt
plugins/JetBrains/syntax-highlighter/src/main/kotlin/it/kebula/plugin/NemantixIcons.kt
plugins/JetBrains/syntax-highlighter/src/main/kotlin/it/kebula/plugin/NemantixParserDefinition.kt
plugins/JetBrains/syntax-highlighter/src/main/kotlin/it/kebula/plugin/NemantixPasteProcessor.kt
plugins/JetBrains/syntax-highlighter/src/main/kotlin/it/kebula/plugin/NemantixPromptInjectionHost.kt
plugins/JetBrains/syntax-highlighter/src/main/kotlin/it/kebula/plugin/NemantixPythonInjector.kt
plugins/JetBrains/syntax-highlighter/src/main/kotlin/it/kebula/plugin/NemantixSyntaxHighlighter.kt
plugins/JetBrains/syntax-highlighter/src/main/kotlin/it/kebula/plugin/NemantixTemplateContextType.kt
plugins/JetBrains/syntax-highlighter/src/main/kotlin/it/kebula/plugin/NemantixTypes.kt
plugins/JetBrains/syntax-highlighter/src/main/resources/META-INF/plugin.xml
plugins/JetBrains/syntax-highlighter/src/main/resources/META-INF/pluginIcon.svg
plugins/JetBrains/syntax-highlighter/src/main/resources/icons/nemantix_file.png
plugins/JetBrains/syntax-highlighter/src/main/resources/liveTemplates/Nemantix.xml
plugins/VSCode/syntax-highlighter/.gitattributes
plugins/VSCode/syntax-highlighter/.gitignore
plugins/VSCode/syntax-highlighter/.vscodeignore
plugins/VSCode/syntax-highlighter/CHANGELOG.md
plugins/VSCode/syntax-highlighter/LICENSE.md
plugins/VSCode/syntax-highlighter/README.md
plugins/VSCode/syntax-highlighter/language-configuration.json
plugins/VSCode/syntax-highlighter/package.json
plugins/VSCode/syntax-highlighter/tsconfig.json
plugins/VSCode/syntax-highlighter/.vscode/launch.json
plugins/VSCode/syntax-highlighter/images/nemantix_file.png
plugins/VSCode/syntax-highlighter/images/plugin_icon.png
plugins/VSCode/syntax-highlighter/snippets/nemantix.code-snippets.json
plugins/VSCode/syntax-highlighter/src/extension.ts
plugins/VSCode/syntax-highlighter/syntaxes/nemantix.tmLanguage.json
src/nemantix.egg-info/PKG-INFO
src/nemantix.egg-info/SOURCES.txt
src/nemantix.egg-info/dependency_links.txt
src/nemantix.egg-info/entry_points.txt
src/nemantix.egg-info/requires.txt
src/nemantix.egg-info/scm_file_list.json
src/nemantix.egg-info/scm_version.json
src/nemantix.egg-info/top_level.txt
src/nemantix/cli/__init__.py
src/nemantix/cli/_normalize.py
src/nemantix/cli/code.py
src/nemantix/cli/keygen.py
src/nemantix/cli/run.py
src/nemantix/cli/sign.py
src/nemantix/cli/verify.py
src/nemantix/common/__init__.py
src/nemantix/common/connectors.py
src/nemantix/common/context.py
src/nemantix/common/logger.py
src/nemantix/core/__init__.py
src/nemantix/core/agent.py
src/nemantix/core/coder.py
src/nemantix/core/custom_types.py
src/nemantix/core/exceptions.py
src/nemantix/core/executor.py
src/nemantix/core/expertise.py
src/nemantix/core/interpreter.py
src/nemantix/core/node.py
src/nemantix/core/nxs_v2_grammar.lark
src/nemantix/core/parser.py
src/nemantix/core/prompt.py
src/nemantix/core/runtime.py
src/nemantix/core/script.py
src/nemantix/core/source_manager.py
src/nemantix/core/symbol_table.py
src/nemantix/core/tools.py
src/nemantix/experimental/llama_cpp_remote_proxy.py
src/nemantix/experimental/stateful_agent.py
src/nemantix/hub/__init__.py
src/nemantix/hub/base.py
src/nemantix/hub/debugger.py
src/nemantix/hub/event_hub.py
src/nemantix/hub/events.py
src/nemantix/hub/observer.py
src/nemantix/hub/profiler.py
src/nemantix/hub/storage.py
src/nemantix/hub/tracer.py
src/nemantix/knowledge_base/__init__.py
src/nemantix/knowledge_base/core/__init__.py
src/nemantix/knowledge_base/core/knowledge_base_manager.py
src/nemantix/knowledge_base/core/nemantix_knowledge_base.py
src/nemantix/knowledge_base/document_plugins/__init__.py
src/nemantix/knowledge_base/document_plugins/base.py
src/nemantix/knowledge_base/document_plugins/plugin_registry.py
src/nemantix/knowledge_base/document_plugins/text_plugin.py
src/nemantix/knowledge_base/document_structure/__init__.py
src/nemantix/knowledge_base/document_structure/coordinates.py
src/nemantix/knowledge_base/document_structure/document.py
src/nemantix/knowledge_base/document_structure/hierarchy.py
src/nemantix/knowledge_base/document_structure/item.py
src/nemantix/knowledge_base/document_structure/location.py
src/nemantix/knowledge_base/document_structure/schemas.py
src/nemantix/knowledge_base/io/__init__.py
src/nemantix/knowledge_base/io/location_registry.py
src/nemantix/knowledge_base/io/providers/__init__.py
src/nemantix/knowledge_base/io/providers/base.py
src/nemantix/knowledge_base/io/providers/local_provider.py
src/nemantix/knowledge_base/models/__init__.py
src/nemantix/knowledge_base/models/base.py
src/nemantix/knowledge_base/models/embedding.py
src/nemantix/knowledge_base/persistence/__init__.py
src/nemantix/knowledge_base/persistence/relational_registry.py
src/nemantix/knowledge_base/persistence/vector_stores/__init__.py
src/nemantix/knowledge_base/persistence/vector_stores/abstract_store.py
src/nemantix/knowledge_base/persistence/vector_stores/factory.py
src/nemantix/knowledge_base/persistence/vector_stores/faiss.py
src/nemantix/knowledge_base/persistence/vector_stores/milvus.py
src/nemantix/knowledge_base/persistence/vector_stores/qdrant.py
src/nemantix/knowledge_base/pipeline/__init__.py
src/nemantix/knowledge_base/pipeline/enricher.py
src/nemantix/knowledge_base/pipeline/graph_builder.py
src/nemantix/knowledge_base/pipeline/graph_retriever.py
src/nemantix/knowledge_base/pipeline/hierarchy_planner.py
src/nemantix/knowledge_base/pipeline/segmenter.py
src/nemantix/llm/__init__.py
src/nemantix/llm/abstract_proxy.py
src/nemantix/llm/anthropic_proxy.py
src/nemantix/llm/azure_openai_proxy.py
src/nemantix/llm/config.py
src/nemantix/llm/credentials.py
src/nemantix/llm/factory.py
src/nemantix/llm/google_proxy.py
src/nemantix/llm/llama_proxy.py
src/nemantix/llm/local_proxy.py
src/nemantix/llm/open_router_proxy.py
src/nemantix/llm/openai_proxy.py
src/nemantix/llm/schemas.py
src/nemantix/security/__init__.py
src/nemantix/security/ecdsa.py
src/nemantix/security/signer.py
src/nemantix/security/verifier.py
src/nemantix/stl/__init__.py
src/nemantix/stl/audio_processor/__init__.py
src/nemantix/stl/audio_processor/base.py
src/nemantix/stl/email_operation/__init__.py
src/nemantix/stl/email_operation/base.py
src/nemantix/stl/http_requests/__init__.py
src/nemantix/stl/http_requests/base.py
src/nemantix/stl/local_filesystem/__init__.py
src/nemantix/stl/local_filesystem/base.py
src/nemantix/stl/math_solver/__init__.py
src/nemantix/stl/math_solver/base.py
src/nemantix/stl/media_processor/__init__.py
src/nemantix/stl/media_processor/base.py
src/nemantix/stl/messaging/__init__.py
src/nemantix/stl/messaging/base.py
src/nemantix/stl/remote_filesystem/__init__.py
src/nemantix/stl/remote_filesystem/base.py
src/nemantix/stl/sql_explorer/__init__.py
src/nemantix/stl/sql_explorer/base.py
src/nemantix/stl/web_search/__init__.py
src/nemantix/stl/web_search/base.py
test/cli/test_code.py
test/cli/test_keygen.py
test/cli/test_main.py
test/cli/test_normalize.py
test/cli/test_run.py
test/cli/test_sign.py
test/cli/test_verify.py
test/common/test_connectors.py
test/common/test_logger.py
test/common/text_context.py
test/core/conftest.py
test/core/test_agent.py
test/core/test_agent_integration.py
test/core/test_coder.py
test/core/test_executor.py
test/core/test_expertise.py
test/core/test_interpreter.py
test/core/test_nxs.py
test/core/test_parser.py
test/core/test_runtime.py
test/core/test_script.py
test/core/test_source_manager.py
test/core/test_symbol_table.py
test/core/test_tools.py
test/core/test_scripts/compile_action.nxs
test/core/test_scripts/compile_deliberate.nxc
test/core/test_scripts/compile_deliberate.nxs
test/core/test_scripts/deliberate_selection.nxc
test/core/test_scripts/deliberate_selection.nxs
test/core/test_scripts/example_platform_ladder.nxs
test/core/test_scripts/example_staircase_builder.nxs
test/core/test_scripts/new_deliberate_selection.nxc
test/core/test_scripts/test_control_flow.nxs
test/core/test_scripts/test_do_as_frames.nxs
test/core/test_scripts/test_frames.nxs
test/core/test_scripts/test_includes.nxs
test/core/test_scripts/test_prompt.nxs
test/core/test_scripts/test_syntax.nxs
test/experimental/test_stateful_agent.py
test/hub/conftest.py
test/hub/test_debugger.py
test/hub/test_observer.py
test/hub/test_profiler.py
test/hub/test_tracer.py
test/llm/llm_service_integration/conftest.py
test/llm/llm_service_integration/test_anthropic_integration.py
test/llm/llm_service_integration/test_google_integration.py
test/llm/llm_service_integration/test_openai_integration.py
test/llm/unit/conftest.py
test/llm/unit/test_abstract_proxy.py
test/llm/unit/test_anthropic_proxy.py
test/llm/unit/test_azure_openai_proxy.py
test/llm/unit/test_config.py
test/llm/unit/test_credentials.py
test/llm/unit/test_factory.py
test/llm/unit/test_google_proxy.py
test/llm/unit/test_init.py
test/llm/unit/test_llama_proxy.py
test/llm/unit/test_local_proxy.py
test/llm/unit/test_open_router_proxy.py
test/llm/unit/test_openai_proxy.py
test/security/test_security.py
test/stl/conftest.py
test/stl/test_audio.py
test/stl/test_email.py
test/stl/test_filesystem.py
test/stl/test_mathematical.py
test/stl/test_media.py
test/stl/test_messaging.py
test/stl/test_remotefileserver.py
test/stl/test_requests.py
test/stl/test_sql.py
test/stl/test_web_search.py
tutorials/README.md
tutorials/environment-setup.md
tutorials/llm-setup.md
tutorials/multi-agent-todo-tutorial/tutorial.md
tutorials/multi-agent-todo-tutorial/code/main.py
tutorials/multi-agent-todo-tutorial/code/nxs/reader.nxs
tutorials/multi-agent-todo-tutorial/code/nxs/writer.nxs
tutorials/weather-agent-tutorial/tutorial.md
tutorials/weather-agent-tutorial/code/main.py
tutorials/weather-agent-tutorial/code/nxs/meteo-deliberate.nxs