xerxes-agent 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- xerxes_agent-0.2.0/.github/workflows/ci.yml +85 -0
- xerxes_agent-0.2.0/.github/workflows/release.yml +157 -0
- xerxes_agent-0.2.0/.gitignore +174 -0
- xerxes_agent-0.2.0/.pre-commit-config.yaml +81 -0
- xerxes_agent-0.2.0/.readthedocs.yaml +23 -0
- xerxes_agent-0.2.0/Dockerfile +89 -0
- xerxes_agent-0.2.0/LICENSE +201 -0
- xerxes_agent-0.2.0/PKG-INFO +593 -0
- xerxes_agent-0.2.0/README.md +494 -0
- xerxes_agent-0.2.0/docker-compose.yml +140 -0
- xerxes_agent-0.2.0/docs/Makefile +20 -0
- xerxes_agent-0.2.0/docs/_static/style.css +0 -0
- xerxes_agent-0.2.0/docs/api-reference.md +203 -0
- xerxes_agent-0.2.0/docs/api_docs/_bin/_launcher.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/_bin/index.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/agents/_coder_agent.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/agents/_data_analyst_agent.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/agents/_planner_agent.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/agents/_researcher_agent.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/agents/auto_compact_agent.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/agents/compaction_agent.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/agents/definitions.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/agents/index.rst +15 -0
- xerxes_agent-0.2.0/docs/api_docs/agents/profile_agent.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/agents/subagent_manager.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/api_server/completion_service.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/api_server/converters.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/api_server/cortex_completion_service.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/api_server/index.rst +12 -0
- xerxes_agent-0.2.0/docs/api_docs/api_server/models.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/api_server/routers.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/api_server/server.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/audit/collector.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/audit/emitter.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/audit/events.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/audit/index.rst +10 -0
- xerxes_agent-0.2.0/docs/api_docs/audit/otel_exporter.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/bridge/__main__.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/bridge/index.rst +9 -0
- xerxes_agent-0.2.0/docs/api_docs/bridge/profiles.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/bridge/server.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/_helpers.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/adapters/bluebubbles.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/adapters/dingtalk.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/adapters/discord.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/adapters/email_imap.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/adapters/feishu.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/adapters/home_assistant.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/adapters/index.rst +20 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/adapters/matrix.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/adapters/mattermost.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/adapters/signal.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/adapters/slack.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/adapters/sms.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/adapters/telegram.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/adapters/wecom.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/adapters/whatsapp.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/base.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/identity.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/index.rst +14 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/oauth.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/registry.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/types.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/channels/webhooks.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/context/advanced_compressor.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/context/compaction_strategies.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/context/index.rst +9 -0
- xerxes_agent-0.2.0/docs/api_docs/context/token_counter.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/core/basics.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/core/config.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/core/errors.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/core/index.rst +14 -0
- xerxes_agent-0.2.0/docs/api_docs/core/multimodal.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/core/paths.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/core/prompt_template.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/core/streamer_buffer.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/core/utils.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/cortex/agents/agent.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/cortex/agents/index.rst +9 -0
- xerxes_agent-0.2.0/docs/api_docs/cortex/agents/memory_integration.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/cortex/agents/universal_agent.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/cortex/core/enums.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/cortex/core/index.rst +10 -0
- xerxes_agent-0.2.0/docs/api_docs/cortex/core/string_utils.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/cortex/core/templates.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/cortex/core/tool.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/cortex/index.rst +9 -0
- xerxes_agent-0.2.0/docs/api_docs/cortex/orchestration/cortex.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/cortex/orchestration/dynamic.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/cortex/orchestration/index.rst +11 -0
- xerxes_agent-0.2.0/docs/api_docs/cortex/orchestration/planner.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/cortex/orchestration/task.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/cortex/orchestration/task_creator.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/daemon/__main__.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/daemon/config.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/daemon/gateway.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/daemon/index.rst +14 -0
- xerxes_agent-0.2.0/docs/api_docs/daemon/log.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/daemon/server.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/daemon/service.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/daemon/socket_channel.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/daemon/task_runner.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/executors.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/extensions/dependency.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/extensions/hooks.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/extensions/index.rst +13 -0
- xerxes_agent-0.2.0/docs/api_docs/extensions/plugins.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/extensions/skill_authoring/drafter.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/extensions/skill_authoring/improver.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/extensions/skill_authoring/index.rst +15 -0
- xerxes_agent-0.2.0/docs/api_docs/extensions/skill_authoring/lifecycle.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/extensions/skill_authoring/matcher.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/extensions/skill_authoring/pipeline.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/extensions/skill_authoring/telemetry.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/extensions/skill_authoring/tracker.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/extensions/skill_authoring/triggers.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/extensions/skill_authoring/verifier.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/extensions/skills.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/extensions/skills_guard.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/extensions/skills_hub.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/index.rst +30 -0
- xerxes_agent-0.2.0/docs/api_docs/llms/anthropic.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/llms/base.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/llms/compat.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/llms/gemini.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/llms/index.rst +13 -0
- xerxes_agent-0.2.0/docs/api_docs/llms/ollama.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/llms/openai.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/llms/registry.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/logging/console.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/logging/index.rst +8 -0
- xerxes_agent-0.2.0/docs/api_docs/logging/structured.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/mcp/client.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/mcp/index.rst +10 -0
- xerxes_agent-0.2.0/docs/api_docs/mcp/integration.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/mcp/manager.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/mcp/types.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/memory/base.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/memory/compat.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/memory/context_fencing.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/memory/contextual_memory.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/memory/embedders.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/memory/entity_memory.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/memory/index.rst +20 -0
- xerxes_agent-0.2.0/docs/api_docs/memory/long_term_memory.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/memory/retrieval.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/memory/short_term_memory.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/memory/storage.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/memory/turn_indexer.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/memory/user_memory.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/memory/user_profile.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/memory/vector_storage.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/operators/browser.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/operators/config.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/operators/helpers.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/operators/index.rst +15 -0
- xerxes_agent-0.2.0/docs/api_docs/operators/plans.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/operators/pty.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/operators/state.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/operators/subagents.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/operators/types.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/operators/user_prompt.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/runtime/bootstrap.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/runtime/bridge.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/runtime/circuit_breaker.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/runtime/config_context.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/runtime/context.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/runtime/cost_tracker.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/runtime/execution_registry.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/runtime/fallback.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/runtime/features.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/runtime/history.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/runtime/index.rst +24 -0
- xerxes_agent-0.2.0/docs/api_docs/runtime/loop_detection.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/runtime/parity_audit.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/runtime/profiles.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/runtime/query_engine.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/runtime/resilience.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/runtime/session.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/runtime/tool_pool.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/runtime/transcript.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/security/index.rst +10 -0
- xerxes_agent-0.2.0/docs/api_docs/security/policy.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/security/prompt_scanner.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/security/sandbox.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/security/sandbox_backends/docker_backend.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/security/sandbox_backends/index.rst +8 -0
- xerxes_agent-0.2.0/docs/api_docs/security/sandbox_backends/subprocess_backend.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/session/fts_index.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/session/index.rst +13 -0
- xerxes_agent-0.2.0/docs/api_docs/session/models.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/session/replay.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/session/store.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/session/summarizer.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/session/workspace.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/streaming/events.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/streaming/index.rst +11 -0
- xerxes_agent-0.2.0/docs/api_docs/streaming/loop.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/streaming/loop_debug.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/streaming/messages.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/streaming/permissions.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/tools/agent_meta_tools.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/tools/ai_tools.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/tools/browser_tools.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/tools/claude_tools.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/tools/coding_tools.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/tools/data_tools.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/tools/duckduckgo_engine.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/tools/google_search.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/tools/history_tool.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/tools/home_assistant_tools.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/tools/index.rst +23 -0
- xerxes_agent-0.2.0/docs/api_docs/tools/math_tools.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/tools/media_tools.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/tools/memory_tool.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/tools/rl_tools.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/tools/standalone.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/tools/system_tools.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/tools/web_tools.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/types/agent_types.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/types/converters.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/types/function_execution_types.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/types/index.rst +12 -0
- xerxes_agent-0.2.0/docs/api_docs/types/messages.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/types/oai_protocols.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/types/tool_calls.rst +7 -0
- xerxes_agent-0.2.0/docs/api_docs/xerxes.rst +7 -0
- xerxes_agent-0.2.0/docs/changelog.md +112 -0
- xerxes_agent-0.2.0/docs/code-standards.md +208 -0
- xerxes_agent-0.2.0/docs/codebase-summary.md +139 -0
- xerxes_agent-0.2.0/docs/conf.py +52 -0
- xerxes_agent-0.2.0/docs/configuration-guide.md +343 -0
- xerxes_agent-0.2.0/docs/contributing.rst +43 -0
- xerxes_agent-0.2.0/docs/deployment-guide.md +282 -0
- xerxes_agent-0.2.0/docs/design-guidelines.md +214 -0
- xerxes_agent-0.2.0/docs/index.rst +6 -0
- xerxes_agent-0.2.0/docs/make.bat +35 -0
- xerxes_agent-0.2.0/docs/openclaw_parity.md +139 -0
- xerxes_agent-0.2.0/docs/project-overview-pdr.md +107 -0
- xerxes_agent-0.2.0/docs/requirements.txt +13 -0
- xerxes_agent-0.2.0/docs/system-architecture.md +522 -0
- xerxes_agent-0.2.0/docs/telegram-gateway.md +78 -0
- xerxes_agent-0.2.0/docs/testing-guide.md +269 -0
- xerxes_agent-0.2.0/examples/cortex_deepsearch_agent.py +606 -0
- xerxes_agent-0.2.0/examples/cortex_parallel_benchmark.py +509 -0
- xerxes_agent-0.2.0/examples/deepsearch_agent_demo.py +992 -0
- xerxes_agent-0.2.0/examples/interactive_agent.py +666 -0
- xerxes_agent-0.2.0/examples/openclaw_capabilities_demo.py +223 -0
- xerxes_agent-0.2.0/examples/scenario_1_conversational_assistant.py +258 -0
- xerxes_agent-0.2.0/examples/scenario_2_code_analyzer.py +536 -0
- xerxes_agent-0.2.0/examples/scenario_3_multi_agent_collaboration.py +685 -0
- xerxes_agent-0.2.0/examples/scenario_4_streaming_research_assistant.py +495 -0
- xerxes_agent-0.2.0/examples/textual_tui.py +36 -0
- xerxes_agent-0.2.0/pyproject.toml +183 -0
- xerxes_agent-0.2.0/scripts/cleanup_duplicate_docstrings.py +123 -0
- xerxes_agent-0.2.0/scripts/docstring_prompt.md +70 -0
- xerxes_agent-0.2.0/scripts/fix_license_headers.py +112 -0
- xerxes_agent-0.2.0/scripts/format_and_generate_docs.py +295 -0
- xerxes_agent-0.2.0/scripts/generate_docstrings.py +355 -0
- xerxes_agent-0.2.0/scripts/install.sh +224 -0
- xerxes_agent-0.2.0/scripts/real_use_check.py +1462 -0
- xerxes_agent-0.2.0/scripts/remove_docstrings.py +208 -0
- xerxes_agent-0.2.0/scripts/swarm_integration_test.py +478 -0
- xerxes_agent-0.2.0/src/python/xerxes/__init__.py +210 -0
- xerxes_agent-0.2.0/src/python/xerxes/__main__.py +188 -0
- xerxes_agent-0.2.0/src/python/xerxes/_compat_shims.py +38 -0
- xerxes_agent-0.2.0/src/python/xerxes/acp/__init__.py +39 -0
- xerxes_agent-0.2.0/src/python/xerxes/acp/events.py +123 -0
- xerxes_agent-0.2.0/src/python/xerxes/acp/permissions.py +124 -0
- xerxes_agent-0.2.0/src/python/xerxes/acp/registry.py +69 -0
- xerxes_agent-0.2.0/src/python/xerxes/acp/server.py +221 -0
- xerxes_agent-0.2.0/src/python/xerxes/acp/session.py +107 -0
- xerxes_agent-0.2.0/src/python/xerxes/agents/__init__.py +59 -0
- xerxes_agent-0.2.0/src/python/xerxes/agents/_coder_agent.py +57 -0
- xerxes_agent-0.2.0/src/python/xerxes/agents/_data_analyst_agent.py +60 -0
- xerxes_agent-0.2.0/src/python/xerxes/agents/_planner_agent.py +59 -0
- xerxes_agent-0.2.0/src/python/xerxes/agents/_researcher_agent.py +62 -0
- xerxes_agent-0.2.0/src/python/xerxes/agents/agentspec.py +399 -0
- xerxes_agent-0.2.0/src/python/xerxes/agents/auto_compact_agent.py +119 -0
- xerxes_agent-0.2.0/src/python/xerxes/agents/compaction_agent.py +180 -0
- xerxes_agent-0.2.0/src/python/xerxes/agents/default/agent.yaml +33 -0
- xerxes_agent-0.2.0/src/python/xerxes/agents/default/coder.yaml +28 -0
- xerxes_agent-0.2.0/src/python/xerxes/agents/default/planner.yaml +34 -0
- xerxes_agent-0.2.0/src/python/xerxes/agents/default/researcher.yaml +29 -0
- xerxes_agent-0.2.0/src/python/xerxes/agents/default/system.md +63 -0
- xerxes_agent-0.2.0/src/python/xerxes/agents/definitions.py +470 -0
- xerxes_agent-0.2.0/src/python/xerxes/agents/profile_agent.py +218 -0
- xerxes_agent-0.2.0/src/python/xerxes/agents/subagent_manager.py +737 -0
- xerxes_agent-0.2.0/src/python/xerxes/api_server/__init__.py +29 -0
- xerxes_agent-0.2.0/src/python/xerxes/api_server/completion_service.py +204 -0
- xerxes_agent-0.2.0/src/python/xerxes/api_server/converters.py +50 -0
- xerxes_agent-0.2.0/src/python/xerxes/api_server/cortex_completion_service.py +465 -0
- xerxes_agent-0.2.0/src/python/xerxes/api_server/models.py +61 -0
- xerxes_agent-0.2.0/src/python/xerxes/api_server/routers.py +275 -0
- xerxes_agent-0.2.0/src/python/xerxes/api_server/server.py +225 -0
- xerxes_agent-0.2.0/src/python/xerxes/audit/__init__.py +80 -0
- xerxes_agent-0.2.0/src/python/xerxes/audit/collector.py +145 -0
- xerxes_agent-0.2.0/src/python/xerxes/audit/emitter.py +443 -0
- xerxes_agent-0.2.0/src/python/xerxes/audit/events.py +323 -0
- xerxes_agent-0.2.0/src/python/xerxes/audit/otel_exporter.py +233 -0
- xerxes_agent-0.2.0/src/python/xerxes/auth/__init__.py +34 -0
- xerxes_agent-0.2.0/src/python/xerxes/auth/oauth.py +133 -0
- xerxes_agent-0.2.0/src/python/xerxes/auth/storage.py +119 -0
- xerxes_agent-0.2.0/src/python/xerxes/bridge/__init__.py +22 -0
- xerxes_agent-0.2.0/src/python/xerxes/bridge/__main__.py +21 -0
- xerxes_agent-0.2.0/src/python/xerxes/bridge/commands.py +202 -0
- xerxes_agent-0.2.0/src/python/xerxes/bridge/profiles.py +253 -0
- xerxes_agent-0.2.0/src/python/xerxes/bridge/server.py +2702 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/__init__.py +46 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/_helpers.py +259 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/adapters/__init__.py +50 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/adapters/bluebubbles.py +102 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/adapters/dingtalk.py +89 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/adapters/discord.py +96 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/adapters/email_imap.py +142 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/adapters/feishu.py +138 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/adapters/home_assistant.py +112 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/adapters/matrix.py +107 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/adapters/mattermost.py +96 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/adapters/signal.py +104 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/adapters/slack.py +230 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/adapters/sms.py +112 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/adapters/telegram.py +156 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/adapters/wecom.py +124 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/adapters/whatsapp.py +114 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/base.py +71 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/identity.py +259 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/identity_hashing.py +78 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/oauth.py +452 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/registry.py +215 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/session_reset.py +103 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/sticker_cache.py +162 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/telegram_gateway.py +951 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/types.py +86 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/webhooks.py +105 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/workspace.py +228 -0
- xerxes_agent-0.2.0/src/python/xerxes/channels/workspace_import.py +147 -0
- xerxes_agent-0.2.0/src/python/xerxes/context/__init__.py +77 -0
- xerxes_agent-0.2.0/src/python/xerxes/context/advanced_compressor.py +375 -0
- xerxes_agent-0.2.0/src/python/xerxes/context/compaction_strategies.py +538 -0
- xerxes_agent-0.2.0/src/python/xerxes/context/compressor.py +279 -0
- xerxes_agent-0.2.0/src/python/xerxes/context/token_counter.py +210 -0
- xerxes_agent-0.2.0/src/python/xerxes/context/tool_result_pruner.py +137 -0
- xerxes_agent-0.2.0/src/python/xerxes/context/tool_result_storage.py +172 -0
- xerxes_agent-0.2.0/src/python/xerxes/core/__init__.py +99 -0
- xerxes_agent-0.2.0/src/python/xerxes/core/basics.py +81 -0
- xerxes_agent-0.2.0/src/python/xerxes/core/config.py +338 -0
- xerxes_agent-0.2.0/src/python/xerxes/core/errors.py +141 -0
- xerxes_agent-0.2.0/src/python/xerxes/core/multimodal.py +97 -0
- xerxes_agent-0.2.0/src/python/xerxes/core/paths.py +43 -0
- xerxes_agent-0.2.0/src/python/xerxes/core/prompt_template.py +77 -0
- xerxes_agent-0.2.0/src/python/xerxes/core/streamer_buffer.py +123 -0
- xerxes_agent-0.2.0/src/python/xerxes/core/utils.py +254 -0
- xerxes_agent-0.2.0/src/python/xerxes/cortex/__init__.py +54 -0
- xerxes_agent-0.2.0/src/python/xerxes/cortex/agents/__init__.py +30 -0
- xerxes_agent-0.2.0/src/python/xerxes/cortex/agents/agent.py +1422 -0
- xerxes_agent-0.2.0/src/python/xerxes/cortex/agents/memory_integration.py +282 -0
- xerxes_agent-0.2.0/src/python/xerxes/cortex/agents/universal_agent.py +300 -0
- xerxes_agent-0.2.0/src/python/xerxes/cortex/core/__init__.py +33 -0
- xerxes_agent-0.2.0/src/python/xerxes/cortex/core/enums.py +48 -0
- xerxes_agent-0.2.0/src/python/xerxes/cortex/core/string_utils.py +115 -0
- xerxes_agent-0.2.0/src/python/xerxes/cortex/core/templates.py +423 -0
- xerxes_agent-0.2.0/src/python/xerxes/cortex/core/tool.py +95 -0
- xerxes_agent-0.2.0/src/python/xerxes/cortex/orchestration/__init__.py +43 -0
- xerxes_agent-0.2.0/src/python/xerxes/cortex/orchestration/cortex.py +1325 -0
- xerxes_agent-0.2.0/src/python/xerxes/cortex/orchestration/dynamic.py +361 -0
- xerxes_agent-0.2.0/src/python/xerxes/cortex/orchestration/planner.py +546 -0
- xerxes_agent-0.2.0/src/python/xerxes/cortex/orchestration/task.py +924 -0
- xerxes_agent-0.2.0/src/python/xerxes/cortex/orchestration/task_creator.py +518 -0
- xerxes_agent-0.2.0/src/python/xerxes/cron/__init__.py +36 -0
- xerxes_agent-0.2.0/src/python/xerxes/cron/delivery.py +84 -0
- xerxes_agent-0.2.0/src/python/xerxes/cron/jobs.py +246 -0
- xerxes_agent-0.2.0/src/python/xerxes/cron/scheduler.py +149 -0
- xerxes_agent-0.2.0/src/python/xerxes/daemon/__init__.py +21 -0
- xerxes_agent-0.2.0/src/python/xerxes/daemon/__main__.py +21 -0
- xerxes_agent-0.2.0/src/python/xerxes/daemon/channels.py +289 -0
- xerxes_agent-0.2.0/src/python/xerxes/daemon/config.py +262 -0
- xerxes_agent-0.2.0/src/python/xerxes/daemon/gateway.py +254 -0
- xerxes_agent-0.2.0/src/python/xerxes/daemon/log.py +89 -0
- xerxes_agent-0.2.0/src/python/xerxes/daemon/runtime.py +970 -0
- xerxes_agent-0.2.0/src/python/xerxes/daemon/server.py +1173 -0
- xerxes_agent-0.2.0/src/python/xerxes/daemon/service.py +199 -0
- xerxes_agent-0.2.0/src/python/xerxes/daemon/socket_channel.py +131 -0
- xerxes_agent-0.2.0/src/python/xerxes/executors.py +1326 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/__init__.py +41 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/dependency.py +257 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/hooks.py +165 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/plugins.py +441 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/skill_authoring/__init__.py +65 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/skill_authoring/drafter.py +208 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/skill_authoring/improver.py +152 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/skill_authoring/lifecycle.py +231 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/skill_authoring/matcher.py +153 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/skill_authoring/pipeline.py +179 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/skill_authoring/telemetry.py +201 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/skill_authoring/tracker.py +219 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/skill_authoring/triggers.py +144 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/skill_authoring/verifier.py +153 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/skill_sources/__init__.py +30 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/skill_sources/agentskills_io.py +37 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/skill_sources/base.py +71 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/skill_sources/github.py +89 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/skill_sources/local.py +91 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/skill_sources/official.py +77 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/skills.py +446 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/skills_guard.py +200 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/skills_hub.py +453 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/skills_sync.py +121 -0
- xerxes_agent-0.2.0/src/python/xerxes/extensions/slash_plugins.py +167 -0
- xerxes_agent-0.2.0/src/python/xerxes/llms/__init__.py +189 -0
- xerxes_agent-0.2.0/src/python/xerxes/llms/anthropic.py +433 -0
- xerxes_agent-0.2.0/src/python/xerxes/llms/base.py +312 -0
- xerxes_agent-0.2.0/src/python/xerxes/llms/compat.py +228 -0
- xerxes_agent-0.2.0/src/python/xerxes/llms/gemini.py +391 -0
- xerxes_agent-0.2.0/src/python/xerxes/llms/ollama.py +378 -0
- xerxes_agent-0.2.0/src/python/xerxes/llms/openai.py +655 -0
- xerxes_agent-0.2.0/src/python/xerxes/llms/registry.py +395 -0
- xerxes_agent-0.2.0/src/python/xerxes/logging/__init__.py +55 -0
- xerxes_agent-0.2.0/src/python/xerxes/logging/console.py +605 -0
- xerxes_agent-0.2.0/src/python/xerxes/logging/structured.py +539 -0
- xerxes_agent-0.2.0/src/python/xerxes/mcp/__init__.py +34 -0
- xerxes_agent-0.2.0/src/python/xerxes/mcp/client.py +548 -0
- xerxes_agent-0.2.0/src/python/xerxes/mcp/integration.py +168 -0
- xerxes_agent-0.2.0/src/python/xerxes/mcp/manager.py +153 -0
- xerxes_agent-0.2.0/src/python/xerxes/mcp/oauth.py +195 -0
- xerxes_agent-0.2.0/src/python/xerxes/mcp/osv.py +183 -0
- xerxes_agent-0.2.0/src/python/xerxes/mcp/reconnect.py +103 -0
- xerxes_agent-0.2.0/src/python/xerxes/mcp/server.py +364 -0
- xerxes_agent-0.2.0/src/python/xerxes/mcp/types.py +122 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/__init__.py +77 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/base.py +262 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/compat.py +377 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/context_fencing.py +58 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/contextual_memory.py +287 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/embedders.py +317 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/entity_memory.py +345 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/long_term_memory.py +430 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/plugins/__init__.py +58 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/plugins/_base.py +209 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/plugins/byterover.py +65 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/plugins/hindsight.py +69 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/plugins/holographic.py +104 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/plugins/honcho.py +58 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/plugins/mem0.py +75 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/plugins/openviking.py +62 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/plugins/retaindb.py +98 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/plugins/supermemory.py +64 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/provider.py +192 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/retrieval.py +208 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/short_term_memory.py +264 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/storage.py +646 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/turn_indexer.py +159 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/user_memory.py +176 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/user_profile.py +404 -0
- xerxes_agent-0.2.0/src/python/xerxes/memory/vector_storage.py +199 -0
- xerxes_agent-0.2.0/src/python/xerxes/operators/__init__.py +58 -0
- xerxes_agent-0.2.0/src/python/xerxes/operators/browser.py +235 -0
- xerxes_agent-0.2.0/src/python/xerxes/operators/browser_providers/__init__.py +107 -0
- xerxes_agent-0.2.0/src/python/xerxes/operators/browser_providers/browser_use.py +60 -0
- xerxes_agent-0.2.0/src/python/xerxes/operators/browser_providers/browserbase.py +65 -0
- xerxes_agent-0.2.0/src/python/xerxes/operators/browser_providers/camofox.py +60 -0
- xerxes_agent-0.2.0/src/python/xerxes/operators/browser_providers/firecrawl.py +49 -0
- xerxes_agent-0.2.0/src/python/xerxes/operators/browser_providers/local.py +50 -0
- xerxes_agent-0.2.0/src/python/xerxes/operators/config.py +102 -0
- xerxes_agent-0.2.0/src/python/xerxes/operators/helpers.py +58 -0
- xerxes_agent-0.2.0/src/python/xerxes/operators/plans.py +60 -0
- xerxes_agent-0.2.0/src/python/xerxes/operators/pty.py +250 -0
- xerxes_agent-0.2.0/src/python/xerxes/operators/state.py +797 -0
- xerxes_agent-0.2.0/src/python/xerxes/operators/subagents.py +337 -0
- xerxes_agent-0.2.0/src/python/xerxes/operators/types.py +199 -0
- xerxes_agent-0.2.0/src/python/xerxes/operators/user_prompt.py +174 -0
- xerxes_agent-0.2.0/src/python/xerxes/py.typed +0 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/__init__.py +88 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/agent_memory.py +597 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/auxiliary_client.py +191 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/background_sessions.py +208 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/bootstrap.py +377 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/bridge.py +484 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/circuit_breaker.py +216 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/config_context.py +104 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/context.py +684 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/cost_tracker.py +241 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/distribution.py +188 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/doctor.py +219 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/error_classifier.py +208 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/execution_registry.py +417 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/fallback.py +234 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/features.py +471 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/history.py +146 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/insights.py +135 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/interrupt.py +120 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/iteration_budget.py +115 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/loop_detection.py +266 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/nudges.py +184 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/parity_audit.py +231 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/pricing.py +156 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/process_registry.py +209 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/profiles.py +138 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/query_engine.py +389 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/rate_limit_tracker.py +199 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/resilience.py +230 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/session.py +286 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/setup_wizard.py +153 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/tool_pool.py +152 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/transcript.py +171 -0
- xerxes_agent-0.2.0/src/python/xerxes/runtime/update.py +223 -0
- xerxes_agent-0.2.0/src/python/xerxes/security/__init__.py +47 -0
- xerxes_agent-0.2.0/src/python/xerxes/security/approvals.py +150 -0
- xerxes_agent-0.2.0/src/python/xerxes/security/path_security.py +62 -0
- xerxes_agent-0.2.0/src/python/xerxes/security/policy.py +154 -0
- xerxes_agent-0.2.0/src/python/xerxes/security/prompt_scanner.py +122 -0
- xerxes_agent-0.2.0/src/python/xerxes/security/redact.py +139 -0
- xerxes_agent-0.2.0/src/python/xerxes/security/sandbox.py +207 -0
- xerxes_agent-0.2.0/src/python/xerxes/security/sandbox_backends/__init__.py +80 -0
- xerxes_agent-0.2.0/src/python/xerxes/security/sandbox_backends/credential_files.py +86 -0
- xerxes_agent-0.2.0/src/python/xerxes/security/sandbox_backends/daytona_backend.py +76 -0
- xerxes_agent-0.2.0/src/python/xerxes/security/sandbox_backends/docker_backend.py +160 -0
- xerxes_agent-0.2.0/src/python/xerxes/security/sandbox_backends/file_sync.py +91 -0
- xerxes_agent-0.2.0/src/python/xerxes/security/sandbox_backends/modal_backend.py +99 -0
- xerxes_agent-0.2.0/src/python/xerxes/security/sandbox_backends/singularity_backend.py +82 -0
- xerxes_agent-0.2.0/src/python/xerxes/security/sandbox_backends/ssh_backend.py +111 -0
- xerxes_agent-0.2.0/src/python/xerxes/security/sandbox_backends/subprocess_backend.py +139 -0
- xerxes_agent-0.2.0/src/python/xerxes/security/url_safety.py +102 -0
- xerxes_agent-0.2.0/src/python/xerxes/session/__init__.py +66 -0
- xerxes_agent-0.2.0/src/python/xerxes/session/branching.py +84 -0
- xerxes_agent-0.2.0/src/python/xerxes/session/fts_index.py +171 -0
- xerxes_agent-0.2.0/src/python/xerxes/session/index.py +366 -0
- xerxes_agent-0.2.0/src/python/xerxes/session/migrations/__init__.py +88 -0
- xerxes_agent-0.2.0/src/python/xerxes/session/models.py +271 -0
- xerxes_agent-0.2.0/src/python/xerxes/session/replay.py +217 -0
- xerxes_agent-0.2.0/src/python/xerxes/session/snapshot_diff.py +91 -0
- xerxes_agent-0.2.0/src/python/xerxes/session/snapshots.py +192 -0
- xerxes_agent-0.2.0/src/python/xerxes/session/store.py +418 -0
- xerxes_agent-0.2.0/src/python/xerxes/session/summarizer.py +215 -0
- xerxes_agent-0.2.0/src/python/xerxes/session/workspace.py +126 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/ai-voiceover-with-typed-text-visuals/SKILL.md +25 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/apple-notes/SKILL.md +90 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/apple-reminders/SKILL.md +98 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/architecture-diagram/SKILL.md +129 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/architecture-diagram/templates/template.html +319 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/ascii-art/SKILL.md +321 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/ascii-video/README.md +290 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/ascii-video/SKILL.md +232 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/ascii-video/references/architecture.md +802 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/ascii-video/references/composition.md +892 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/ascii-video/references/effects.md +1865 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/ascii-video/references/inputs.md +685 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/ascii-video/references/optimization.md +688 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/ascii-video/references/scenes.md +1011 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/ascii-video/references/shaders.md +1385 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/ascii-video/references/troubleshooting.md +367 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/autoresearch/SKILL.md +730 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/autoresearch/references/autonomous-loop-protocol.md +890 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/autoresearch/references/core-principles.md +207 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/autoresearch/references/debug-workflow.md +469 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/autoresearch/references/fix-workflow.md +682 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/autoresearch/references/learn-workflow.md +480 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/autoresearch/references/plan-workflow.md +308 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/autoresearch/references/predict-workflow.md +751 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/autoresearch/references/reason-workflow.md +618 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/autoresearch/references/results-logging.md +171 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/autoresearch/references/scenario-workflow.md +353 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/autoresearch/references/security-workflow.md +1000 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/autoresearch/references/ship-workflow.md +412 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/claude-code/SKILL.md +744 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/cloud/modal/SKILL.md +344 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/cloud/modal/references/advanced-usage.md +503 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/cloud/modal/references/troubleshooting.md +494 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/codex/SKILL.md +113 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/creative-ideation/SKILL.md +147 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/creative-ideation/references/full-prompt-library.md +110 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/deepscan/SKILL.md +183 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/evaluation/lm-evaluation-harness/SKILL.md +493 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/evaluation/lm-evaluation-harness/references/api-evaluation.md +490 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/evaluation/lm-evaluation-harness/references/benchmark-guide.md +488 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/evaluation/lm-evaluation-harness/references/custom-tasks.md +602 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/evaluation/lm-evaluation-harness/references/distributed-eval.md +519 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/evaluation/weights-and-biases/SKILL.md +593 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/evaluation/weights-and-biases/references/artifacts.md +584 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/evaluation/weights-and-biases/references/integrations.md +700 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/evaluation/weights-and-biases/references/sweeps.md +847 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/excalidraw/SKILL.md +194 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/excalidraw/references/colors.md +44 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/excalidraw/references/dark-mode.md +68 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/excalidraw/references/examples.md +141 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/excalidraw/scripts/upload.py +112 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/execute-the-ascii-video-skill-now/SKILL.md +49 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/execute-the-deepscan-skill-now/SKILL.md +42 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/execute-the-news-read-skill-now/SKILL.md +48 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/find-nearby/SKILL.md +69 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/find-nearby/scripts/find_nearby.py +178 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/findmy/SKILL.md +131 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/github/codebase-inspection/SKILL.md +115 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/github/github-auth/SKILL.md +246 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/github/github-auth/scripts/gh-env.sh +79 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/github/github-code-review/SKILL.md +480 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/github/github-code-review/references/review-output-template.md +74 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/github/github-issues/SKILL.md +369 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/github/github-issues/templates/bug-report.md +35 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/github/github-issues/templates/feature-request.md +31 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/github/github-pr-workflow/SKILL.md +366 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/github/github-pr-workflow/references/ci-troubleshooting.md +183 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/github/github-pr-workflow/references/conventional-commits.md +71 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/github/github-pr-workflow/templates/pr-body-bugfix.md +35 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/github/github-pr-workflow/templates/pr-body-feature.md +33 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/github/github-repo-management/SKILL.md +515 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/github/github-repo-management/references/github-api-cheatsheet.md +161 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/go-to-documents-projects-spectrax/SKILL.md +29 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/godmode/SKILL.md +403 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/godmode/references/jailbreak-templates.md +128 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/godmode/references/refusal-detection.md +142 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/godmode/scripts/auto_jailbreak.py +733 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/godmode/scripts/godmode_race.py +557 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/godmode/scripts/load_godmode.py +63 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/godmode/scripts/parseltongue.py +789 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/himalaya/SKILL.md +278 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/himalaya/references/configuration.md +184 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/himalaya/references/message-composition.md +199 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/huggingface-hub/SKILL.md +80 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/imessage/SKILL.md +102 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/gguf/SKILL.md +430 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/gguf/references/advanced-usage.md +504 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/gguf/references/troubleshooting.md +442 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/guidance/SKILL.md +575 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/guidance/references/backends.md +554 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/guidance/references/constraints.md +674 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/guidance/references/examples.md +767 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/llama-cpp/SKILL.md +261 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/llama-cpp/references/optimization.md +89 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/llama-cpp/references/quantization.md +213 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/llama-cpp/references/server.md +125 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/obliteratus/SKILL.md +330 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/obliteratus/references/analysis-modules.md +166 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/obliteratus/references/methods-guide.md +141 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/obliteratus/templates/abliteration-config.yaml +33 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/obliteratus/templates/analysis-study.yaml +40 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/obliteratus/templates/batch-abliteration.yaml +41 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/outlines/SKILL.md +655 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/outlines/references/backends.md +615 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/outlines/references/examples.md +773 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/outlines/references/json_generation.md +652 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/vllm/SKILL.md +367 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/vllm/references/optimization.md +226 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/vllm/references/quantization.md +284 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/vllm/references/server-deployment.md +255 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/inference/vllm/references/troubleshooting.md +447 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/jupyter-live-kernel/SKILL.md +171 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/manim-video/README.md +23 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/manim-video/SKILL.md +264 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/manim-video/references/animation-design-thinking.md +161 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/manim-video/references/animations.md +282 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/manim-video/references/camera-and-3d.md +135 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/manim-video/references/decorations.md +202 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/manim-video/references/equations.md +216 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/manim-video/references/graphs-and-data.md +163 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/manim-video/references/mobjects.md +333 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/manim-video/references/paper-explainer.md +255 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/manim-video/references/production-quality.md +190 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/manim-video/references/rendering.md +185 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/manim-video/references/scene-planning.md +118 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/manim-video/references/troubleshooting.md +135 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/manim-video/references/updaters-and-trackers.md +260 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/manim-video/references/visual-design.md +124 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/manim-video/scripts/setup.sh +27 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/mcporter/SKILL.md +122 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/media/gif-search/SKILL.md +86 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/media/heartmula/SKILL.md +170 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/media/songsee/SKILL.md +82 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/media/youtube-content/SKILL.md +72 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/media/youtube-content/references/output-formats.md +56 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/media/youtube-content/scripts/fetch_transcript.py +120 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/minecraft-modpack-server/SKILL.md +186 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/models/audiocraft/SKILL.md +567 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/models/audiocraft/references/advanced-usage.md +666 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/models/audiocraft/references/troubleshooting.md +504 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/models/clip/SKILL.md +256 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/models/clip/references/applications.md +207 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/models/segment-anything/SKILL.md +503 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/models/segment-anything/references/advanced-usage.md +589 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/models/segment-anything/references/troubleshooting.md +484 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/models/stable-diffusion/SKILL.md +522 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/models/stable-diffusion/references/advanced-usage.md +716 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/models/stable-diffusion/references/troubleshooting.md +555 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/models/whisper/SKILL.md +320 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/models/whisper/references/languages.md +189 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/native-mcp/SKILL.md +356 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/note-taking/obsidian/SKILL.md +66 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/opencode/SKILL.md +218 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/openhue/SKILL.md +108 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/p5js/README.md +64 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/p5js/SKILL.md +547 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/p5js/references/animation.md +439 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/p5js/references/color-systems.md +352 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/p5js/references/core-api.md +410 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/p5js/references/export-pipeline.md +566 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/p5js/references/interaction.md +398 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/p5js/references/shapes-and-geometry.md +300 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/p5js/references/troubleshooting.md +532 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/p5js/references/typography.md +302 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/p5js/references/visual-effects.md +895 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/p5js/references/webgl-and-3d.md +423 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/p5js/scripts/export-frames.js +179 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/p5js/scripts/render.sh +102 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/p5js/scripts/serve.sh +30 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/p5js/scripts/setup.sh +97 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/p5js/templates/viewer.html +395 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/plan/SKILL.md +57 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/pokemon-player/SKILL.md +215 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/SKILL.md +207 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/airbnb.md +259 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/airtable.md +102 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/apple.md +326 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/bmw.md +193 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/cal.md +272 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/claude.md +325 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/clay.md +317 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/clickhouse.md +294 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/cohere.md +279 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/coinbase.md +142 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/composio.md +320 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/cursor.md +322 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/elevenlabs.md +278 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/expo.md +294 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/figma.md +233 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/framer.md +259 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/hashicorp.md +291 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/ibm.md +345 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/intercom.md +159 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/kraken.md +138 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/linear.app.md +380 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/lovable.md +311 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/minimax.md +270 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/mintlify.md +339 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/miro.md +121 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/mistral.ai.md +274 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/mongodb.md +279 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/notion.md +322 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/nvidia.md +306 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/ollama.md +280 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/opencode.ai.md +294 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/pinterest.md +243 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/posthog.md +269 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/raycast.md +281 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/replicate.md +274 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/resend.md +316 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/revolut.md +198 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/runwayml.md +257 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/sanity.md +370 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/sentry.md +275 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/spacex.md +207 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/spotify.md +259 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/stripe.md +335 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/supabase.md +268 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/superhuman.md +265 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/together.ai.md +276 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/uber.md +308 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/vercel.md +323 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/voltagent.md +336 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/warp.md +266 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/webflow.md +105 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/wise.md +186 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/x.ai.md +270 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/popular-web-designs/templates/zapier.md +341 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/google-workspace/SKILL.md +279 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/google-workspace/references/gmail-search-syntax.md +63 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/google-workspace/scripts/google_api.py +905 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/google-workspace/scripts/gws_bridge.py +106 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/google-workspace/scripts/setup.py +395 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/linear/SKILL.md +297 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/nano-pdf/SKILL.md +51 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/notion/SKILL.md +171 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/notion/references/block-types.md +112 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/ocr-and-documents/SKILL.md +171 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/ocr-and-documents/scripts/extract_marker.py +105 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/ocr-and-documents/scripts/extract_pymupdf.py +128 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/LICENSE.txt +30 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/SKILL.md +232 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/editing.md +205 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/pptxgenjs.md +420 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/__init__.py +14 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/add_slide.py +196 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/clean.py +294 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/helpers/__init__.py +14 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/helpers/merge_runs.py +214 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/helpers/simplify_redlines.py +210 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/pack.py +170 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-contentTypes.xsd +42 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-coreProperties.xsd +50 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-digSig.xsd +49 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-relationships.xsd +33 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/mce/mc.xsd +75 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/arxiv/SKILL.md +281 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/arxiv/scripts/search_arxiv.py +134 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/blogwatcher/SKILL.md +136 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/dspy/SKILL.md +593 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/dspy/references/examples.md +663 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/dspy/references/modules.md +475 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/dspy/references/optimizers.md +566 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/llm-wiki/SKILL.md +460 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/polymarket/SKILL.md +76 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/polymarket/references/api-endpoints.md +220 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/polymarket/scripts/polymarket.py +300 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/SKILL.md +2375 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/references/autoreason-methodology.md +394 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/references/checklists.md +434 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/references/citation-workflow.md +564 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/references/experiment-patterns.md +728 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/references/human-evaluation.md +476 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/references/paper-types.md +481 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/references/reviewer-guidelines.md +433 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/references/sources.md +191 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/references/writing-guide.md +474 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/README.md +251 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/aaai2026/README.md +534 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/aaai2026/aaai2026-unified-supp.tex +144 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/aaai2026/aaai2026-unified-template.tex +952 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/aaai2026/aaai2026.bib +111 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/aaai2026/aaai2026.bst +1493 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/aaai2026/aaai2026.sty +315 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/acl/README.md +50 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/acl/acl.sty +312 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/acl/acl_latex.tex +377 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/acl/acl_lualatex.tex +101 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/acl/acl_natbib.bst +1940 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/acl/anthology.bib.txt +26 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/acl/custom.bib +70 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/acl/formatting.md +326 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/colm2025/README.md +3 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.bib +11 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.bst +1440 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.pdf +0 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.sty +218 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.tex +305 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/colm2025/fancyhdr.sty +485 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/colm2025/math_commands.tex +508 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/colm2025/natbib.sty +1246 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/iclr2026/fancyhdr.sty +485 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.bib +24 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.bst +1440 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.pdf +0 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.sty +246 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.tex +414 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/iclr2026/math_commands.tex +508 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/iclr2026/natbib.sty +1246 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/icml2026/algorithm.sty +79 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/icml2026/algorithmic.sty +201 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/icml2026/example_paper.bib +75 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/icml2026/example_paper.pdf +0 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/icml2026/example_paper.tex +662 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/icml2026/fancyhdr.sty +864 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/icml2026/icml2026.bst +1443 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/icml2026/icml2026.sty +767 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/icml2026/icml_numpapers.pdf +0 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/neurips2025/Makefile +36 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/neurips2025/extra_pkgs.tex +53 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/neurips2025/main.tex +38 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/research/research-paper-writing/templates/neurips2025/neurips.sty +382 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/software-development/plan/SKILL.md +57 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/software-development/requesting-code-review/SKILL.md +282 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/software-development/subagent-driven-development/SKILL.md +342 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/software-development/systematic-debugging/SKILL.md +366 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/software-development/test-driven-development/SKILL.md +342 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/software-development/writing-plans/SKILL.md +304 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/songwriting-and-ai-music/SKILL.md +289 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/systematic-debugging/SKILL.md +358 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/axolotl/SKILL.md +161 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/axolotl/references/api.md +5548 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/axolotl/references/dataset-formats.md +1029 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/axolotl/references/index.md +15 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/axolotl/references/other.md +3563 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/grpo-rl-training/README.md +97 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/grpo-rl-training/SKILL.md +575 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/grpo-rl-training/templates/basic_grpo_training.py +195 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/peft/SKILL.md +434 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/peft/references/advanced-usage.md +514 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/peft/references/troubleshooting.md +480 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/pytorch-fsdp/SKILL.md +129 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/pytorch-fsdp/references/index.md +7 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/pytorch-fsdp/references/other.md +4261 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/trl-fine-tuning/SKILL.md +458 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/trl-fine-tuning/references/dpo-variants.md +227 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/trl-fine-tuning/references/online-rl.md +82 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/trl-fine-tuning/references/reward-modeling.md +122 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/trl-fine-tuning/references/sft-training.md +168 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/unsloth/SKILL.md +83 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/unsloth/references/index.md +7 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/unsloth/references/llms-full.md +16799 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/unsloth/references/llms-txt.md +12044 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/training/unsloth/references/llms.md +82 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/webhook-subscriptions/SKILL.md +180 -0
- xerxes_agent-0.2.0/src/python/xerxes/skills/xerxes-agent/SKILL.md +284 -0
- xerxes_agent-0.2.0/src/python/xerxes/streaming/__init__.py +120 -0
- xerxes_agent-0.2.0/src/python/xerxes/streaming/events.py +208 -0
- xerxes_agent-0.2.0/src/python/xerxes/streaming/loop.py +900 -0
- xerxes_agent-0.2.0/src/python/xerxes/streaming/loop_debug.py +741 -0
- xerxes_agent-0.2.0/src/python/xerxes/streaming/messages.py +284 -0
- xerxes_agent-0.2.0/src/python/xerxes/streaming/parsers/__init__.py +135 -0
- xerxes_agent-0.2.0/src/python/xerxes/streaming/parsers/common.py +103 -0
- xerxes_agent-0.2.0/src/python/xerxes/streaming/parsers/deepseek.py +55 -0
- xerxes_agent-0.2.0/src/python/xerxes/streaming/parsers/glm.py +39 -0
- xerxes_agent-0.2.0/src/python/xerxes/streaming/parsers/kimi.py +29 -0
- xerxes_agent-0.2.0/src/python/xerxes/streaming/parsers/longcat.py +29 -0
- xerxes_agent-0.2.0/src/python/xerxes/streaming/parsers/mistral.py +56 -0
- xerxes_agent-0.2.0/src/python/xerxes/streaming/parsers/qwen.py +39 -0
- xerxes_agent-0.2.0/src/python/xerxes/streaming/permissions.py +224 -0
- xerxes_agent-0.2.0/src/python/xerxes/streaming/prompt_caching.py +98 -0
- xerxes_agent-0.2.0/src/python/xerxes/streaming/responses_api.py +117 -0
- xerxes_agent-0.2.0/src/python/xerxes/streaming/sse.py +142 -0
- xerxes_agent-0.2.0/src/python/xerxes/streaming/tool_call_ids.py +59 -0
- xerxes_agent-0.2.0/src/python/xerxes/streaming/wire_events.py +1006 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/__init__.py +538 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/agent_memory_tool.py +145 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/agent_meta_tools.py +460 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/ai_tools.py +870 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/browser_tools.py +809 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/clarify_tool.py +129 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/claude_tools.py +1660 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/coding_tools.py +918 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/data_tools.py +668 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/duckduckgo_engine.py +499 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/google_search.py +451 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/history_tool.py +130 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/home_assistant_tools.py +433 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/image_generation_tool.py +116 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/math_tools.py +822 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/media_tools.py +366 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/memory_crud.py +136 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/memory_tool.py +593 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/rl_tools.py +681 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/send_message_tool.py +101 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/skill_manage_tool.py +151 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/standalone.py +316 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/system_tools.py +672 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/transcription_tool.py +121 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/tts_tool.py +190 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/vision_tool.py +138 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/voice_mode.py +212 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/web_tools.py +437 -0
- xerxes_agent-0.2.0/src/python/xerxes/tools/workspace_tools.py +178 -0
- xerxes_agent-0.2.0/src/python/xerxes/training/__init__.py +30 -0
- xerxes_agent-0.2.0/src/python/xerxes/training/batch_runner.py +212 -0
- xerxes_agent-0.2.0/src/python/xerxes/training/rl/__init__.py +42 -0
- xerxes_agent-0.2.0/src/python/xerxes/training/rl/envs.py +108 -0
- xerxes_agent-0.2.0/src/python/xerxes/training/rl/status.py +79 -0
- xerxes_agent-0.2.0/src/python/xerxes/training/rl/tinker_client.py +157 -0
- xerxes_agent-0.2.0/src/python/xerxes/training/rl/wandb_hook.py +70 -0
- xerxes_agent-0.2.0/src/python/xerxes/training/trajectory_compressor.py +172 -0
- xerxes_agent-0.2.0/src/python/xerxes/tui/__init__.py +23 -0
- xerxes_agent-0.2.0/src/python/xerxes/tui/app.py +1146 -0
- xerxes_agent-0.2.0/src/python/xerxes/tui/at_mentions.py +315 -0
- xerxes_agent-0.2.0/src/python/xerxes/tui/banner.py +120 -0
- xerxes_agent-0.2.0/src/python/xerxes/tui/blocks.py +663 -0
- xerxes_agent-0.2.0/src/python/xerxes/tui/clipboard.py +139 -0
- xerxes_agent-0.2.0/src/python/xerxes/tui/clipboard_attach.py +129 -0
- xerxes_agent-0.2.0/src/python/xerxes/tui/console.py +361 -0
- xerxes_agent-0.2.0/src/python/xerxes/tui/context_bar.py +70 -0
- xerxes_agent-0.2.0/src/python/xerxes/tui/engine.py +545 -0
- xerxes_agent-0.2.0/src/python/xerxes/tui/input_buffer.py +138 -0
- xerxes_agent-0.2.0/src/python/xerxes/tui/panel_state.py +194 -0
- xerxes_agent-0.2.0/src/python/xerxes/tui/prompt.py +1107 -0
- xerxes_agent-0.2.0/src/python/xerxes/tui/reasoning_filter.py +141 -0
- xerxes_agent-0.2.0/src/python/xerxes/tui/skin_engine.py +239 -0
- xerxes_agent-0.2.0/src/python/xerxes/tui/status_bar.py +136 -0
- xerxes_agent-0.2.0/src/python/xerxes/tui/tips.py +199 -0
- xerxes_agent-0.2.0/src/python/xerxes/tui/voice_keys.py +160 -0
- xerxes_agent-0.2.0/src/python/xerxes/types/__init__.py +121 -0
- xerxes_agent-0.2.0/src/python/xerxes/types/agent_types.py +387 -0
- xerxes_agent-0.2.0/src/python/xerxes/types/converters.py +162 -0
- xerxes_agent-0.2.0/src/python/xerxes/types/function_execution_types.py +480 -0
- xerxes_agent-0.2.0/src/python/xerxes/types/messages.py +690 -0
- xerxes_agent-0.2.0/src/python/xerxes/types/oai_protocols.py +510 -0
- xerxes_agent-0.2.0/src/python/xerxes/types/tool_calls.py +175 -0
- xerxes_agent-0.2.0/src/python/xerxes/xerxes.py +2297 -0
- xerxes_agent-0.2.0/tests/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/acp/__init__.py +0 -0
- xerxes_agent-0.2.0/tests/acp/test_acp.py +236 -0
- xerxes_agent-0.2.0/tests/agents/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/agents/test_profile_agent.py +103 -0
- xerxes_agent-0.2.0/tests/agents/test_profile_decay.py +81 -0
- xerxes_agent-0.2.0/tests/api_server/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/api_server/test_api_server.py +82 -0
- xerxes_agent-0.2.0/tests/audit/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/audit/test_audit.py +508 -0
- xerxes_agent-0.2.0/tests/audit/test_audit_events.py +131 -0
- xerxes_agent-0.2.0/tests/audit/test_otel_exporter.py +72 -0
- xerxes_agent-0.2.0/tests/auth/__init__.py +0 -0
- xerxes_agent-0.2.0/tests/auth/test_auth.py +106 -0
- xerxes_agent-0.2.0/tests/bridge/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/bridge/test_commands.py +101 -0
- xerxes_agent-0.2.0/tests/bridge/test_interaction_modes.py +113 -0
- xerxes_agent-0.2.0/tests/bridge/test_interactive_requests.py +75 -0
- xerxes_agent-0.2.0/tests/bridge/test_model_selection.py +68 -0
- xerxes_agent-0.2.0/tests/bridge/test_wire_tool_ids.py +23 -0
- xerxes_agent-0.2.0/tests/channels/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/channels/adapters/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/channels/adapters/test_channel_adapters.py +451 -0
- xerxes_agent-0.2.0/tests/channels/test_channels_framework.py +226 -0
- xerxes_agent-0.2.0/tests/channels/test_messaging_depth.py +102 -0
- xerxes_agent-0.2.0/tests/channels/test_telegram_gateway.py +507 -0
- xerxes_agent-0.2.0/tests/channels/test_workspace_import.py +91 -0
- xerxes_agent-0.2.0/tests/conftest.py +47 -0
- xerxes_agent-0.2.0/tests/context/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/context/test_advanced_compressor.py +178 -0
- xerxes_agent-0.2.0/tests/context/test_compaction_strategies.py +245 -0
- xerxes_agent-0.2.0/tests/context/test_compressor.py +195 -0
- xerxes_agent-0.2.0/tests/context/test_token_counter.py +154 -0
- xerxes_agent-0.2.0/tests/context/test_tool_result_pruner.py +96 -0
- xerxes_agent-0.2.0/tests/context/test_tool_result_storage.py +94 -0
- xerxes_agent-0.2.0/tests/core/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/core/test_basics.py +106 -0
- xerxes_agent-0.2.0/tests/core/test_config.py +261 -0
- xerxes_agent-0.2.0/tests/core/test_errors.py +123 -0
- xerxes_agent-0.2.0/tests/core/test_multimodal.py +108 -0
- xerxes_agent-0.2.0/tests/core/test_paths.py +82 -0
- xerxes_agent-0.2.0/tests/core/test_streamer_buffer.py +105 -0
- xerxes_agent-0.2.0/tests/core/test_utils.py +184 -0
- xerxes_agent-0.2.0/tests/cortex/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/cortex/agents/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/cortex/core/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/cortex/core/test_cortex_utils.py +268 -0
- xerxes_agent-0.2.0/tests/cortex/orchestration/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/cortex/test_cortex_memory.py +118 -0
- xerxes_agent-0.2.0/tests/cortex/test_cortex_task.py +134 -0
- xerxes_agent-0.2.0/tests/cortex/test_cortex_tool.py +70 -0
- xerxes_agent-0.2.0/tests/cron/__init__.py +0 -0
- xerxes_agent-0.2.0/tests/cron/test_cron.py +190 -0
- xerxes_agent-0.2.0/tests/daemon/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/daemon/test_resume_replay.py +206 -0
- xerxes_agent-0.2.0/tests/daemon/test_session_persistence.py +189 -0
- xerxes_agent-0.2.0/tests/daemon/test_session_runtime.py +168 -0
- xerxes_agent-0.2.0/tests/daemon/test_skill_create_interview.py +288 -0
- xerxes_agent-0.2.0/tests/daemon/test_skill_subcommand_trigger.py +162 -0
- xerxes_agent-0.2.0/tests/daemon/test_slash_yolo.py +214 -0
- xerxes_agent-0.2.0/tests/extensions/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/extensions/skill_authoring/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/extensions/skill_authoring/test_skill_authoring.py +151 -0
- xerxes_agent-0.2.0/tests/extensions/skill_authoring/test_skill_drafter.py +129 -0
- xerxes_agent-0.2.0/tests/extensions/skill_authoring/test_skill_lifecycle.py +136 -0
- xerxes_agent-0.2.0/tests/extensions/skill_authoring/test_skill_matcher.py +90 -0
- xerxes_agent-0.2.0/tests/extensions/skill_authoring/test_skill_pipeline.py +132 -0
- xerxes_agent-0.2.0/tests/extensions/skill_authoring/test_skill_telemetry.py +135 -0
- xerxes_agent-0.2.0/tests/extensions/skill_authoring/test_skill_verifier.py +102 -0
- xerxes_agent-0.2.0/tests/extensions/test_dependency.py +216 -0
- xerxes_agent-0.2.0/tests/extensions/test_hooks.py +157 -0
- xerxes_agent-0.2.0/tests/extensions/test_plugins.py +317 -0
- xerxes_agent-0.2.0/tests/extensions/test_skill_subcommands.py +238 -0
- xerxes_agent-0.2.0/tests/extensions/test_skills.py +289 -0
- xerxes_agent-0.2.0/tests/extensions/test_skills_enhanced.py +196 -0
- xerxes_agent-0.2.0/tests/extensions/test_skills_guard.py +132 -0
- xerxes_agent-0.2.0/tests/extensions/test_skills_hub.py +124 -0
- xerxes_agent-0.2.0/tests/extensions/test_skills_hub_expansion.py +195 -0
- xerxes_agent-0.2.0/tests/integration/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/integration/test_swarm_integration.py +478 -0
- xerxes_agent-0.2.0/tests/llms/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/llms/test_llm_base.py +146 -0
- xerxes_agent-0.2.0/tests/llms/test_openai_reasoning.py +191 -0
- xerxes_agent-0.2.0/tests/logging/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/logging/test_logging_config.py +146 -0
- xerxes_agent-0.2.0/tests/logging/test_loggings.py +132 -0
- xerxes_agent-0.2.0/tests/mcp/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/mcp/test_mcp_integration.py +391 -0
- xerxes_agent-0.2.0/tests/mcp/test_mcp_types.py +105 -0
- xerxes_agent-0.2.0/tests/mcp/test_oauth.py +125 -0
- xerxes_agent-0.2.0/tests/mcp/test_osv.py +86 -0
- xerxes_agent-0.2.0/tests/mcp/test_reconnect.py +101 -0
- xerxes_agent-0.2.0/tests/mcp/test_server.py +203 -0
- xerxes_agent-0.2.0/tests/memory/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/memory/test_context_fencing.py +50 -0
- xerxes_agent-0.2.0/tests/memory/test_embedders.py +123 -0
- xerxes_agent-0.2.0/tests/memory/test_entity_memory.py +145 -0
- xerxes_agent-0.2.0/tests/memory/test_hybrid_retrieval.py +100 -0
- xerxes_agent-0.2.0/tests/memory/test_memory.py +217 -0
- xerxes_agent-0.2.0/tests/memory/test_memory_debug.py +305 -0
- xerxes_agent-0.2.0/tests/memory/test_memory_detailed.py +193 -0
- xerxes_agent-0.2.0/tests/memory/test_memory_injection.py +95 -0
- xerxes_agent-0.2.0/tests/memory/test_provider_plugins.py +164 -0
- xerxes_agent-0.2.0/tests/memory/test_rag_persistence.py +101 -0
- xerxes_agent-0.2.0/tests/memory/test_semantic_search.py +59 -0
- xerxes_agent-0.2.0/tests/memory/test_storage.py +232 -0
- xerxes_agent-0.2.0/tests/memory/test_turn_indexer.py +116 -0
- xerxes_agent-0.2.0/tests/memory/test_user_memory.py +96 -0
- xerxes_agent-0.2.0/tests/memory/test_user_profile.py +150 -0
- xerxes_agent-0.2.0/tests/memory/test_vector_storage.py +102 -0
- xerxes_agent-0.2.0/tests/operators/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/operators/test_browser_providers.py +90 -0
- xerxes_agent-0.2.0/tests/operators/test_operator_managers.py +346 -0
- xerxes_agent-0.2.0/tests/operators/test_operator_tools.py +168 -0
- xerxes_agent-0.2.0/tests/operators/test_prompt_profiles.py +385 -0
- xerxes_agent-0.2.0/tests/runtime/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/runtime/test_agent_memory.py +404 -0
- xerxes_agent-0.2.0/tests/runtime/test_agent_tool_registry.py +26 -0
- xerxes_agent-0.2.0/tests/runtime/test_auxiliary_client.py +83 -0
- xerxes_agent-0.2.0/tests/runtime/test_circuit_breaker.py +121 -0
- xerxes_agent-0.2.0/tests/runtime/test_distribution.py +74 -0
- xerxes_agent-0.2.0/tests/runtime/test_doctor_update_setup.py +160 -0
- xerxes_agent-0.2.0/tests/runtime/test_error_classifier.py +87 -0
- xerxes_agent-0.2.0/tests/runtime/test_fallback.py +121 -0
- xerxes_agent-0.2.0/tests/runtime/test_interrupt.py +124 -0
- xerxes_agent-0.2.0/tests/runtime/test_iteration_budget.py +97 -0
- xerxes_agent-0.2.0/tests/runtime/test_loop_detection.py +112 -0
- xerxes_agent-0.2.0/tests/runtime/test_nudges.py +114 -0
- xerxes_agent-0.2.0/tests/runtime/test_pricing_insights.py +133 -0
- xerxes_agent-0.2.0/tests/runtime/test_process_registry.py +94 -0
- xerxes_agent-0.2.0/tests/runtime/test_rate_limit_tracker.py +95 -0
- xerxes_agent-0.2.0/tests/runtime/test_resilience.py +148 -0
- xerxes_agent-0.2.0/tests/runtime/test_runtime_context.py +255 -0
- xerxes_agent-0.2.0/tests/runtime/test_runtime_integration.py +658 -0
- xerxes_agent-0.2.0/tests/security/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/security/sandbox_backends/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/security/sandbox_backends/test_sandbox_backends.py +198 -0
- xerxes_agent-0.2.0/tests/security/test_gateway_auth.py +62 -0
- xerxes_agent-0.2.0/tests/security/test_policy.py +101 -0
- xerxes_agent-0.2.0/tests/security/test_prompt_scanner.py +169 -0
- xerxes_agent-0.2.0/tests/security/test_remote_backends.py +163 -0
- xerxes_agent-0.2.0/tests/security/test_sandbox.py +361 -0
- xerxes_agent-0.2.0/tests/security/test_security_scanners.py +179 -0
- xerxes_agent-0.2.0/tests/session/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/session/test_branching.py +68 -0
- xerxes_agent-0.2.0/tests/session/test_fts_index.py +121 -0
- xerxes_agent-0.2.0/tests/session/test_migrations.py +148 -0
- xerxes_agent-0.2.0/tests/session/test_session.py +390 -0
- xerxes_agent-0.2.0/tests/session/test_session_replay.py +274 -0
- xerxes_agent-0.2.0/tests/session/test_session_search.py +137 -0
- xerxes_agent-0.2.0/tests/session/test_session_summarizer.py +172 -0
- xerxes_agent-0.2.0/tests/session/test_snapshots.py +94 -0
- xerxes_agent-0.2.0/tests/streaming/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/streaming/test_loop_tool_ids.py +143 -0
- xerxes_agent-0.2.0/tests/streaming/test_openai_transport.py +72 -0
- xerxes_agent-0.2.0/tests/streaming/test_permissions.py +31 -0
- xerxes_agent-0.2.0/tests/streaming/test_prompt_caching.py +173 -0
- xerxes_agent-0.2.0/tests/streaming/test_responses_and_sse.py +112 -0
- xerxes_agent-0.2.0/tests/streaming/test_streaming_providers.py +39 -0
- xerxes_agent-0.2.0/tests/streaming/test_thinking_parser.py +200 -0
- xerxes_agent-0.2.0/tests/streaming/test_tool_call_ids.py +69 -0
- xerxes_agent-0.2.0/tests/streaming/test_tool_call_parsers.py +175 -0
- xerxes_agent-0.2.0/tests/test_agent_meta_tools.py +154 -0
- xerxes_agent-0.2.0/tests/test_agent_types.py +154 -0
- xerxes_agent-0.2.0/tests/test_ai_tools.py +91 -0
- xerxes_agent-0.2.0/tests/test_api_server.py +82 -0
- xerxes_agent-0.2.0/tests/test_audit.py +487 -0
- xerxes_agent-0.2.0/tests/test_audit_events.py +132 -0
- xerxes_agent-0.2.0/tests/test_basics.py +106 -0
- xerxes_agent-0.2.0/tests/test_browser_tools.py +165 -0
- xerxes_agent-0.2.0/tests/test_channel_adapters.py +422 -0
- xerxes_agent-0.2.0/tests/test_channels_framework.py +226 -0
- xerxes_agent-0.2.0/tests/test_circuit_breaker.py +121 -0
- xerxes_agent-0.2.0/tests/test_cli_one_shot.py +29 -0
- xerxes_agent-0.2.0/tests/test_coding_tools.py +199 -0
- xerxes_agent-0.2.0/tests/test_compaction_strategies.py +245 -0
- xerxes_agent-0.2.0/tests/test_config.py +261 -0
- xerxes_agent-0.2.0/tests/test_converters.py +99 -0
- xerxes_agent-0.2.0/tests/test_cortex_memory.py +118 -0
- xerxes_agent-0.2.0/tests/test_cortex_task.py +134 -0
- xerxes_agent-0.2.0/tests/test_cortex_tool.py +70 -0
- xerxes_agent-0.2.0/tests/test_cortex_utils.py +268 -0
- xerxes_agent-0.2.0/tests/test_data_tools.py +130 -0
- xerxes_agent-0.2.0/tests/test_dependency.py +216 -0
- xerxes_agent-0.2.0/tests/test_embedders.py +123 -0
- xerxes_agent-0.2.0/tests/test_entity_memory.py +145 -0
- xerxes_agent-0.2.0/tests/test_errors.py +123 -0
- xerxes_agent-0.2.0/tests/test_executors.py +328 -0
- xerxes_agent-0.2.0/tests/test_executors_detailed.py +123 -0
- xerxes_agent-0.2.0/tests/test_fallback.py +121 -0
- xerxes_agent-0.2.0/tests/test_gateway_auth.py +62 -0
- xerxes_agent-0.2.0/tests/test_google_search.py +219 -0
- xerxes_agent-0.2.0/tests/test_home_assistant_tools.py +142 -0
- xerxes_agent-0.2.0/tests/test_hooks.py +157 -0
- xerxes_agent-0.2.0/tests/test_hybrid_retrieval.py +100 -0
- xerxes_agent-0.2.0/tests/test_llm_base.py +146 -0
- xerxes_agent-0.2.0/tests/test_logging_config.py +146 -0
- xerxes_agent-0.2.0/tests/test_loggings.py +132 -0
- xerxes_agent-0.2.0/tests/test_loop_detection.py +114 -0
- xerxes_agent-0.2.0/tests/test_math_tools.py +320 -0
- xerxes_agent-0.2.0/tests/test_mcp_integration.py +407 -0
- xerxes_agent-0.2.0/tests/test_mcp_types.py +105 -0
- xerxes_agent-0.2.0/tests/test_media_tools.py +159 -0
- xerxes_agent-0.2.0/tests/test_memory.py +223 -0
- xerxes_agent-0.2.0/tests/test_memory_debug.py +330 -0
- xerxes_agent-0.2.0/tests/test_memory_detailed.py +193 -0
- xerxes_agent-0.2.0/tests/test_memory_injection.py +95 -0
- xerxes_agent-0.2.0/tests/test_messages.py +149 -0
- xerxes_agent-0.2.0/tests/test_multimodal.py +108 -0
- xerxes_agent-0.2.0/tests/test_openai_reasoning.py +191 -0
- xerxes_agent-0.2.0/tests/test_operator_managers.py +346 -0
- xerxes_agent-0.2.0/tests/test_operator_tools.py +168 -0
- xerxes_agent-0.2.0/tests/test_otel_exporter.py +73 -0
- xerxes_agent-0.2.0/tests/test_paths.py +82 -0
- xerxes_agent-0.2.0/tests/test_plugins.py +318 -0
- xerxes_agent-0.2.0/tests/test_policy.py +101 -0
- xerxes_agent-0.2.0/tests/test_profile_agent.py +103 -0
- xerxes_agent-0.2.0/tests/test_profile_decay.py +81 -0
- xerxes_agent-0.2.0/tests/test_prompt_profiles.py +400 -0
- xerxes_agent-0.2.0/tests/test_rag_persistence.py +101 -0
- xerxes_agent-0.2.0/tests/test_resilience.py +148 -0
- xerxes_agent-0.2.0/tests/test_rl_tools.py +127 -0
- xerxes_agent-0.2.0/tests/test_runtime_context.py +258 -0
- xerxes_agent-0.2.0/tests/test_runtime_integration.py +658 -0
- xerxes_agent-0.2.0/tests/test_sandbox.py +361 -0
- xerxes_agent-0.2.0/tests/test_sandbox_backends.py +202 -0
- xerxes_agent-0.2.0/tests/test_semantic_search.py +59 -0
- xerxes_agent-0.2.0/tests/test_session.py +391 -0
- xerxes_agent-0.2.0/tests/test_session_replay.py +281 -0
- xerxes_agent-0.2.0/tests/test_session_search.py +137 -0
- xerxes_agent-0.2.0/tests/test_session_summarizer.py +172 -0
- xerxes_agent-0.2.0/tests/test_skill_authoring.py +151 -0
- xerxes_agent-0.2.0/tests/test_skill_drafter.py +129 -0
- xerxes_agent-0.2.0/tests/test_skill_lifecycle.py +136 -0
- xerxes_agent-0.2.0/tests/test_skill_matcher.py +90 -0
- xerxes_agent-0.2.0/tests/test_skill_pipeline.py +132 -0
- xerxes_agent-0.2.0/tests/test_skill_telemetry.py +135 -0
- xerxes_agent-0.2.0/tests/test_skill_verifier.py +102 -0
- xerxes_agent-0.2.0/tests/test_skills.py +289 -0
- xerxes_agent-0.2.0/tests/test_standalone_tools.py +154 -0
- xerxes_agent-0.2.0/tests/test_storage.py +232 -0
- xerxes_agent-0.2.0/tests/test_streamer_buffer.py +105 -0
- xerxes_agent-0.2.0/tests/test_streaming_providers.py +39 -0
- xerxes_agent-0.2.0/tests/test_system_tools.py +127 -0
- xerxes_agent-0.2.0/tests/test_token_counter.py +154 -0
- xerxes_agent-0.2.0/tests/test_tool_reinvocation.py +307 -0
- xerxes_agent-0.2.0/tests/test_turn_indexer.py +116 -0
- xerxes_agent-0.2.0/tests/test_user_memory.py +96 -0
- xerxes_agent-0.2.0/tests/test_user_profile.py +150 -0
- xerxes_agent-0.2.0/tests/test_utils.py +184 -0
- xerxes_agent-0.2.0/tests/test_vector_storage.py +102 -0
- xerxes_agent-0.2.0/tests/test_xerxes.py +1841 -0
- xerxes_agent-0.2.0/tests/tools/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/tools/test_agent_meta_tools.py +146 -0
- xerxes_agent-0.2.0/tests/tools/test_ai_tools.py +91 -0
- xerxes_agent-0.2.0/tests/tools/test_browser_tools.py +165 -0
- xerxes_agent-0.2.0/tests/tools/test_coding_tools.py +199 -0
- xerxes_agent-0.2.0/tests/tools/test_data_tools.py +130 -0
- xerxes_agent-0.2.0/tests/tools/test_google_search.py +207 -0
- xerxes_agent-0.2.0/tests/tools/test_home_assistant_tools.py +142 -0
- xerxes_agent-0.2.0/tests/tools/test_interaction_mode_tool.py +39 -0
- xerxes_agent-0.2.0/tests/tools/test_math_tools.py +320 -0
- xerxes_agent-0.2.0/tests/tools/test_media_tools.py +159 -0
- xerxes_agent-0.2.0/tests/tools/test_rl_tools.py +127 -0
- xerxes_agent-0.2.0/tests/tools/test_send_clarify_memory.py +159 -0
- xerxes_agent-0.2.0/tests/tools/test_skill_manage.py +114 -0
- xerxes_agent-0.2.0/tests/tools/test_spawn_agents.py +229 -0
- xerxes_agent-0.2.0/tests/tools/test_standalone_tools.py +154 -0
- xerxes_agent-0.2.0/tests/tools/test_system_tools.py +127 -0
- xerxes_agent-0.2.0/tests/tools/test_tool_reinvocation.py +307 -0
- xerxes_agent-0.2.0/tests/tools/test_vision_and_imagegen.py +79 -0
- xerxes_agent-0.2.0/tests/tools/test_voice_and_tts.py +111 -0
- xerxes_agent-0.2.0/tests/tools/test_workspace_tools.py +121 -0
- xerxes_agent-0.2.0/tests/training/__init__.py +0 -0
- xerxes_agent-0.2.0/tests/training/test_rl.py +128 -0
- xerxes_agent-0.2.0/tests/training/test_trajectory_and_batch.py +149 -0
- xerxes_agent-0.2.0/tests/tui/test_approval.py +60 -0
- xerxes_agent-0.2.0/tests/tui/test_bridge_client.py +20 -0
- xerxes_agent-0.2.0/tests/tui/test_interrupt.py +72 -0
- xerxes_agent-0.2.0/tests/tui/test_plan_mode.py +272 -0
- xerxes_agent-0.2.0/tests/tui/test_skin_and_clipboard.py +108 -0
- xerxes_agent-0.2.0/tests/tui/test_tool_results.py +75 -0
- xerxes_agent-0.2.0/tests/tui/test_tui_parity.py +778 -0
- xerxes_agent-0.2.0/tests/types/__init__.py +13 -0
- xerxes_agent-0.2.0/tests/types/test_agent_types.py +152 -0
- xerxes_agent-0.2.0/tests/types/test_converters.py +99 -0
- xerxes_agent-0.2.0/tests/types/test_messages.py +149 -0
- xerxes_agent-0.2.0/uv.lock +4956 -0
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
# Copyright 2026 The Xerxes-Agents Author @erfanzar (Erfan Zare Chavoshi).
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
name: CI
|
|
15
|
+
|
|
16
|
+
on:
|
|
17
|
+
push:
|
|
18
|
+
branches: [ main, develop ]
|
|
19
|
+
pull_request:
|
|
20
|
+
branches: [ main ]
|
|
21
|
+
|
|
22
|
+
env:
|
|
23
|
+
PYTHON_VERSION: '3.11'
|
|
24
|
+
|
|
25
|
+
jobs:
|
|
26
|
+
lint:
|
|
27
|
+
name: Lint
|
|
28
|
+
runs-on: ubuntu-latest
|
|
29
|
+
steps:
|
|
30
|
+
- uses: actions/checkout@v4
|
|
31
|
+
|
|
32
|
+
- name: Set up Python
|
|
33
|
+
uses: actions/setup-python@v5
|
|
34
|
+
with:
|
|
35
|
+
python-version: ${{ env.PYTHON_VERSION }}
|
|
36
|
+
|
|
37
|
+
- name: Cache dependencies
|
|
38
|
+
uses: actions/cache@v4
|
|
39
|
+
with:
|
|
40
|
+
path: ~/.cache/pip
|
|
41
|
+
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}
|
|
42
|
+
restore-keys: |
|
|
43
|
+
${{ runner.os }}-pip-
|
|
44
|
+
|
|
45
|
+
- name: Install dependencies
|
|
46
|
+
run: |
|
|
47
|
+
python -m pip install --upgrade pip
|
|
48
|
+
pip install ruff mypy
|
|
49
|
+
|
|
50
|
+
- name: Run ruff check
|
|
51
|
+
run: ruff check src/python/xerxes/
|
|
52
|
+
|
|
53
|
+
- name: Run ruff format check
|
|
54
|
+
run: ruff format --check src/python/xerxes/
|
|
55
|
+
|
|
56
|
+
- name: Run mypy
|
|
57
|
+
run: cd src/python && mypy xerxes --ignore-missing-imports
|
|
58
|
+
|
|
59
|
+
security:
|
|
60
|
+
name: Security Scan
|
|
61
|
+
runs-on: ubuntu-latest
|
|
62
|
+
steps:
|
|
63
|
+
- uses: actions/checkout@v4
|
|
64
|
+
|
|
65
|
+
- name: Set up Python
|
|
66
|
+
uses: actions/setup-python@v5
|
|
67
|
+
with:
|
|
68
|
+
python-version: ${{ env.PYTHON_VERSION }}
|
|
69
|
+
|
|
70
|
+
- name: Install dependencies
|
|
71
|
+
run: |
|
|
72
|
+
python -m pip install --upgrade pip
|
|
73
|
+
pip install bandit safety pip-audit
|
|
74
|
+
|
|
75
|
+
- name: Run bandit
|
|
76
|
+
run: bandit -r src/python/xerxes/ -f json -o bandit-report.json
|
|
77
|
+
continue-on-error: true
|
|
78
|
+
|
|
79
|
+
- name: Run safety check
|
|
80
|
+
run: safety check --json
|
|
81
|
+
continue-on-error: true
|
|
82
|
+
|
|
83
|
+
- name: Run pip-audit
|
|
84
|
+
run: pip-audit
|
|
85
|
+
continue-on-error: true
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
# Copyright 2026 The Xerxes-Agents Author @erfanzar (Erfan Zare Chavoshi).
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
name: Release
|
|
15
|
+
|
|
16
|
+
on:
|
|
17
|
+
release:
|
|
18
|
+
types: [published]
|
|
19
|
+
workflow_dispatch:
|
|
20
|
+
inputs:
|
|
21
|
+
version:
|
|
22
|
+
description: 'Version to release'
|
|
23
|
+
required: true
|
|
24
|
+
|
|
25
|
+
permissions:
|
|
26
|
+
contents: write
|
|
27
|
+
id-token: write
|
|
28
|
+
|
|
29
|
+
jobs:
|
|
30
|
+
build:
|
|
31
|
+
name: Build Distribution
|
|
32
|
+
runs-on: ubuntu-latest
|
|
33
|
+
steps:
|
|
34
|
+
- uses: actions/checkout@v4
|
|
35
|
+
|
|
36
|
+
- name: Set up Python
|
|
37
|
+
uses: actions/setup-python@v5
|
|
38
|
+
with:
|
|
39
|
+
python-version: '3.11'
|
|
40
|
+
|
|
41
|
+
- name: Install build tools
|
|
42
|
+
run: |
|
|
43
|
+
python -m pip install --upgrade pip
|
|
44
|
+
pip install build twine
|
|
45
|
+
|
|
46
|
+
- name: Build package
|
|
47
|
+
run: python -m build
|
|
48
|
+
|
|
49
|
+
- name: Check package
|
|
50
|
+
run: twine check dist/*
|
|
51
|
+
|
|
52
|
+
- name: Upload artifacts
|
|
53
|
+
uses: actions/upload-artifact@v4
|
|
54
|
+
with:
|
|
55
|
+
name: dist
|
|
56
|
+
path: dist/
|
|
57
|
+
|
|
58
|
+
publish-pypi:
|
|
59
|
+
name: Publish to PyPI
|
|
60
|
+
needs: build
|
|
61
|
+
runs-on: ubuntu-latest
|
|
62
|
+
environment:
|
|
63
|
+
name: pypi
|
|
64
|
+
url: https://pypi.org/p/xerxes
|
|
65
|
+
steps:
|
|
66
|
+
- name: Download artifacts
|
|
67
|
+
uses: actions/download-artifact@v4
|
|
68
|
+
with:
|
|
69
|
+
name: dist
|
|
70
|
+
path: dist/
|
|
71
|
+
|
|
72
|
+
- name: Publish to PyPI
|
|
73
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
74
|
+
with:
|
|
75
|
+
password: ${{ secrets.PYPI_API_TOKEN }}
|
|
76
|
+
|
|
77
|
+
publish-github:
|
|
78
|
+
name: Publish to GitHub Releases
|
|
79
|
+
needs: build
|
|
80
|
+
runs-on: ubuntu-latest
|
|
81
|
+
steps:
|
|
82
|
+
- uses: actions/checkout@v4
|
|
83
|
+
|
|
84
|
+
- name: Download artifacts
|
|
85
|
+
uses: actions/download-artifact@v4
|
|
86
|
+
with:
|
|
87
|
+
name: dist
|
|
88
|
+
path: dist/
|
|
89
|
+
|
|
90
|
+
- name: Create GitHub Release
|
|
91
|
+
if: github.event_name == 'workflow_dispatch'
|
|
92
|
+
uses: softprops/action-gh-release@v1
|
|
93
|
+
with:
|
|
94
|
+
tag_name: v${{ github.event.inputs.version }}
|
|
95
|
+
name: Release v${{ github.event.inputs.version }}
|
|
96
|
+
draft: false
|
|
97
|
+
prerelease: false
|
|
98
|
+
files: dist/*
|
|
99
|
+
generate_release_notes: true
|
|
100
|
+
|
|
101
|
+
- name: Upload to existing release
|
|
102
|
+
if: github.event_name == 'release'
|
|
103
|
+
uses: softprops/action-gh-release@v1
|
|
104
|
+
with:
|
|
105
|
+
files: dist/*
|
|
106
|
+
|
|
107
|
+
docker:
|
|
108
|
+
name: Build and Push Docker Image
|
|
109
|
+
needs: build
|
|
110
|
+
runs-on: ubuntu-latest
|
|
111
|
+
steps:
|
|
112
|
+
- uses: actions/checkout@v4
|
|
113
|
+
|
|
114
|
+
- name: Set up QEMU
|
|
115
|
+
uses: docker/setup-qemu-action@v3
|
|
116
|
+
|
|
117
|
+
- name: Set up Docker Buildx
|
|
118
|
+
uses: docker/setup-buildx-action@v3
|
|
119
|
+
|
|
120
|
+
- name: Login to Docker Hub
|
|
121
|
+
uses: docker/login-action@v3
|
|
122
|
+
with:
|
|
123
|
+
username: ${{ secrets.DOCKER_USERNAME }}
|
|
124
|
+
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
125
|
+
|
|
126
|
+
- name: Login to GitHub Container Registry
|
|
127
|
+
uses: docker/login-action@v3
|
|
128
|
+
with:
|
|
129
|
+
registry: ghcr.io
|
|
130
|
+
username: ${{ github.actor }}
|
|
131
|
+
password: ${{ secrets.GITHUB_TOKEN }}
|
|
132
|
+
|
|
133
|
+
- name: Extract metadata
|
|
134
|
+
id: meta
|
|
135
|
+
uses: docker/metadata-action@v5
|
|
136
|
+
with:
|
|
137
|
+
images: |
|
|
138
|
+
erfanzar/xerxes
|
|
139
|
+
ghcr.io/${{ github.repository }}
|
|
140
|
+
tags: |
|
|
141
|
+
type=ref,event=branch
|
|
142
|
+
type=ref,event=pr
|
|
143
|
+
type=semver,pattern={{version}}
|
|
144
|
+
type=semver,pattern={{major}}.{{minor}}
|
|
145
|
+
type=semver,pattern={{major}}
|
|
146
|
+
type=sha
|
|
147
|
+
|
|
148
|
+
- name: Build and push Docker image
|
|
149
|
+
uses: docker/build-push-action@v5
|
|
150
|
+
with:
|
|
151
|
+
context: .
|
|
152
|
+
platforms: linux/amd64,linux/arm64
|
|
153
|
+
push: true
|
|
154
|
+
tags: ${{ steps.meta.outputs.tags }}
|
|
155
|
+
labels: ${{ steps.meta.outputs.labels }}
|
|
156
|
+
cache-from: type=gha
|
|
157
|
+
cache-to: type=gha,mode=max
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
*.json
|
|
7
|
+
.DS_Store
|
|
8
|
+
# C extensions
|
|
9
|
+
*.so
|
|
10
|
+
.chainlit
|
|
11
|
+
chainlit.md
|
|
12
|
+
public/
|
|
13
|
+
run.py
|
|
14
|
+
env.py
|
|
15
|
+
exp.py
|
|
16
|
+
dist-bin/
|
|
17
|
+
outputs/
|
|
18
|
+
# Distribution / packaging
|
|
19
|
+
assistant_memory
|
|
20
|
+
.Python
|
|
21
|
+
.xerxes_memory
|
|
22
|
+
build/
|
|
23
|
+
develop-eggs/
|
|
24
|
+
dist/
|
|
25
|
+
downloads/
|
|
26
|
+
eggs/
|
|
27
|
+
.eggs/
|
|
28
|
+
lib/
|
|
29
|
+
lib64/
|
|
30
|
+
parts/
|
|
31
|
+
sdist/
|
|
32
|
+
var/
|
|
33
|
+
wheels/
|
|
34
|
+
share/python-wheels/
|
|
35
|
+
*.egg-info/
|
|
36
|
+
.installed.cfg
|
|
37
|
+
*.egg
|
|
38
|
+
MANIFEST
|
|
39
|
+
|
|
40
|
+
# PyInstaller
|
|
41
|
+
# Usually these files are written by a python script from a template
|
|
42
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
43
|
+
*.manifest
|
|
44
|
+
*.spec
|
|
45
|
+
|
|
46
|
+
# Installer logs
|
|
47
|
+
pip-log.txt
|
|
48
|
+
pip-delete-this-directory.txt
|
|
49
|
+
|
|
50
|
+
# Unit test / coverage reports
|
|
51
|
+
htmlcov/
|
|
52
|
+
.tox/
|
|
53
|
+
.nox/
|
|
54
|
+
.coverage
|
|
55
|
+
.coverage.*
|
|
56
|
+
.cache
|
|
57
|
+
nosetests.xml
|
|
58
|
+
coverage.xml
|
|
59
|
+
*.cover
|
|
60
|
+
*.py,cover
|
|
61
|
+
.hypothesis/
|
|
62
|
+
.pytest_cache/
|
|
63
|
+
cover/
|
|
64
|
+
tmp-files/
|
|
65
|
+
# Translations
|
|
66
|
+
*.mo
|
|
67
|
+
*.pot
|
|
68
|
+
|
|
69
|
+
# Django stuff:
|
|
70
|
+
*.log
|
|
71
|
+
local_settings.py
|
|
72
|
+
db.sqlite3
|
|
73
|
+
db.sqlite3-journal
|
|
74
|
+
|
|
75
|
+
# Flask stuff:
|
|
76
|
+
instance/
|
|
77
|
+
.webassets-cache
|
|
78
|
+
|
|
79
|
+
# Scrapy stuff:
|
|
80
|
+
.scrapy
|
|
81
|
+
|
|
82
|
+
# Sphinx documentation
|
|
83
|
+
docs/_build/
|
|
84
|
+
|
|
85
|
+
# PyBuilder
|
|
86
|
+
.pybuilder/
|
|
87
|
+
target/
|
|
88
|
+
|
|
89
|
+
# Jupyter Notebook
|
|
90
|
+
.ipynb_checkpoints
|
|
91
|
+
|
|
92
|
+
# IPython
|
|
93
|
+
profile_default/
|
|
94
|
+
ipython_config.py
|
|
95
|
+
|
|
96
|
+
# pyenv
|
|
97
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
98
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
99
|
+
# .python-version
|
|
100
|
+
|
|
101
|
+
# pipenv
|
|
102
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
103
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
104
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
105
|
+
# install all needed dependencies.
|
|
106
|
+
#Pipfile.lock
|
|
107
|
+
|
|
108
|
+
# poetry
|
|
109
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
110
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
111
|
+
# commonly ignored for libraries.
|
|
112
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
113
|
+
#poetry.lock
|
|
114
|
+
|
|
115
|
+
# pdm
|
|
116
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
117
|
+
#pdm.lock
|
|
118
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
119
|
+
# in version control.
|
|
120
|
+
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
|
|
121
|
+
.pdm.toml
|
|
122
|
+
.pdm-python
|
|
123
|
+
.pdm-build/
|
|
124
|
+
|
|
125
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
126
|
+
__pypackages__/
|
|
127
|
+
|
|
128
|
+
# Celery stuff
|
|
129
|
+
celerybeat-schedule
|
|
130
|
+
celerybeat.pid
|
|
131
|
+
|
|
132
|
+
# SageMath parsed files
|
|
133
|
+
*.sage.py
|
|
134
|
+
|
|
135
|
+
# Environments
|
|
136
|
+
.env
|
|
137
|
+
.venv
|
|
138
|
+
env/
|
|
139
|
+
venv/
|
|
140
|
+
ENV/
|
|
141
|
+
env.bak/
|
|
142
|
+
venv.bak/
|
|
143
|
+
|
|
144
|
+
# Spyder project settings
|
|
145
|
+
.spyderproject
|
|
146
|
+
.spyproject
|
|
147
|
+
|
|
148
|
+
# Rope project settings
|
|
149
|
+
.ropeproject
|
|
150
|
+
|
|
151
|
+
# mkdocs documentation
|
|
152
|
+
/site
|
|
153
|
+
|
|
154
|
+
# mypy
|
|
155
|
+
.mypy_cache/
|
|
156
|
+
.dmypy.json
|
|
157
|
+
dmypy.json
|
|
158
|
+
|
|
159
|
+
# Pyre type checker
|
|
160
|
+
.pyre/
|
|
161
|
+
|
|
162
|
+
# pytype static type analyzer
|
|
163
|
+
.pytype/
|
|
164
|
+
|
|
165
|
+
# Cython debug symbols
|
|
166
|
+
cython_debug/
|
|
167
|
+
|
|
168
|
+
# PyCharm
|
|
169
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
170
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
171
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
172
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
173
|
+
#.idea/
|
|
174
|
+
autoresearch-results.tsv
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
# Copyright 2026 The Xerxes-Agents Author @erfanzar (Erfan Zare Chavoshi).
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
repos:
|
|
15
|
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
16
|
+
rev: v4.5.0
|
|
17
|
+
hooks:
|
|
18
|
+
- id: trailing-whitespace
|
|
19
|
+
- id: end-of-file-fixer
|
|
20
|
+
- id: check-yaml
|
|
21
|
+
- id: check-json
|
|
22
|
+
- id: check-toml
|
|
23
|
+
- id: check-added-large-files
|
|
24
|
+
args: ['--maxkb=1000']
|
|
25
|
+
- id: check-case-conflict
|
|
26
|
+
- id: check-merge-conflict
|
|
27
|
+
- id: check-docstring-first
|
|
28
|
+
- id: debug-statements
|
|
29
|
+
- id: mixed-line-ending
|
|
30
|
+
args: ['--fix=lf']
|
|
31
|
+
- id: name-tests-test
|
|
32
|
+
args: ['--pytest-test-first']
|
|
33
|
+
|
|
34
|
+
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
35
|
+
rev: v0.1.11
|
|
36
|
+
hooks:
|
|
37
|
+
- id: ruff
|
|
38
|
+
args: [--fix]
|
|
39
|
+
- id: ruff-format
|
|
40
|
+
|
|
41
|
+
- repo: https://github.com/psf/black
|
|
42
|
+
rev: 24.1.1
|
|
43
|
+
hooks:
|
|
44
|
+
- id: black
|
|
45
|
+
language_version: python3.11
|
|
46
|
+
|
|
47
|
+
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
48
|
+
rev: v1.8.0
|
|
49
|
+
hooks:
|
|
50
|
+
- id: mypy
|
|
51
|
+
additional_dependencies: [types-all]
|
|
52
|
+
args: [--ignore-missing-imports]
|
|
53
|
+
|
|
54
|
+
- repo: https://github.com/pycqa/isort
|
|
55
|
+
rev: 5.13.2
|
|
56
|
+
hooks:
|
|
57
|
+
- id: isort
|
|
58
|
+
args: ["--profile", "black"]
|
|
59
|
+
|
|
60
|
+
- repo: https://github.com/PyCQA/bandit
|
|
61
|
+
rev: 1.7.6
|
|
62
|
+
hooks:
|
|
63
|
+
- id: bandit
|
|
64
|
+
args: ['-r', 'src/python/xerxes/', '-f', 'json', '-o', 'bandit-report.json']
|
|
65
|
+
exclude: ^tests/
|
|
66
|
+
|
|
67
|
+
- repo: https://github.com/commitizen-tools/commitizen
|
|
68
|
+
rev: v3.13.0
|
|
69
|
+
hooks:
|
|
70
|
+
- id: commitizen
|
|
71
|
+
stages: [commit-msg]
|
|
72
|
+
|
|
73
|
+
- repo: https://github.com/pre-commit/mirrors-prettier
|
|
74
|
+
rev: v4.0.0-alpha.8
|
|
75
|
+
hooks:
|
|
76
|
+
- id: prettier
|
|
77
|
+
types_or: [yaml, json, markdown]
|
|
78
|
+
exclude: ^docs/
|
|
79
|
+
|
|
80
|
+
default_language_version:
|
|
81
|
+
python: python3.11
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Copyright 2026 The Xerxes-Agents Author @erfanzar (Erfan Zare Chavoshi).
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
version: 2
|
|
15
|
+
build:
|
|
16
|
+
os: ubuntu-22.04
|
|
17
|
+
tools:
|
|
18
|
+
python: "3.11"
|
|
19
|
+
sphinx:
|
|
20
|
+
configuration: docs/conf.py
|
|
21
|
+
python:
|
|
22
|
+
install:
|
|
23
|
+
- requirements: docs/requirements.txt
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
# Copyright 2026 The Xerxes-Agents Author @erfanzar (Erfan Zare Chavoshi).
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
FROM python:3.11-slim as builder
|
|
15
|
+
|
|
16
|
+
# Set working directory
|
|
17
|
+
WORKDIR /build
|
|
18
|
+
|
|
19
|
+
# Install system dependencies for building
|
|
20
|
+
RUN apt-get update && apt-get install -y \
|
|
21
|
+
gcc \
|
|
22
|
+
g++ \
|
|
23
|
+
make \
|
|
24
|
+
libpq-dev \
|
|
25
|
+
&& rm -rf /var/lib/apt/lists/*
|
|
26
|
+
|
|
27
|
+
# Copy requirements
|
|
28
|
+
COPY pyproject.toml .
|
|
29
|
+
COPY README.md .
|
|
30
|
+
|
|
31
|
+
# Create wheels
|
|
32
|
+
RUN pip install --upgrade pip wheel setuptools
|
|
33
|
+
RUN pip wheel --wheel-dir=/wheels .
|
|
34
|
+
|
|
35
|
+
# Final stage
|
|
36
|
+
FROM python:3.11-slim
|
|
37
|
+
|
|
38
|
+
# Set environment variables
|
|
39
|
+
ENV PYTHONUNBUFFERED=1 \
|
|
40
|
+
PYTHONDONTWRITEBYTECODE=1 \
|
|
41
|
+
PYTHONHASHSEED=random \
|
|
42
|
+
PIP_NO_CACHE_DIR=1 \
|
|
43
|
+
PIP_DISABLE_PIP_VERSION_CHECK=1 \
|
|
44
|
+
XERXES_ENV=production
|
|
45
|
+
|
|
46
|
+
# Install runtime dependencies
|
|
47
|
+
RUN apt-get update && apt-get install -y \
|
|
48
|
+
libpq5 \
|
|
49
|
+
curl \
|
|
50
|
+
&& rm -rf /var/lib/apt/lists/*
|
|
51
|
+
|
|
52
|
+
# Create non-root user
|
|
53
|
+
RUN groupadd -r xerxes && useradd -r -g xerxes xerxes
|
|
54
|
+
|
|
55
|
+
# Set working directory
|
|
56
|
+
WORKDIR /app
|
|
57
|
+
|
|
58
|
+
# Copy wheels from builder
|
|
59
|
+
COPY --from=builder /wheels /wheels
|
|
60
|
+
|
|
61
|
+
# Install packages
|
|
62
|
+
RUN pip install --upgrade pip && \
|
|
63
|
+
pip install --no-cache-dir --no-index --find-links=/wheels xerxes && \
|
|
64
|
+
rm -rf /wheels
|
|
65
|
+
|
|
66
|
+
# Copy application code
|
|
67
|
+
COPY --chown=xerxes:xerxes xerxes_agent/ ./xerxes_agent/
|
|
68
|
+
|
|
69
|
+
# Create necessary directories
|
|
70
|
+
RUN mkdir -p /app/logs /app/data /app/config && \
|
|
71
|
+
chown -R xerxes:xerxes /app
|
|
72
|
+
|
|
73
|
+
# Switch to non-root user
|
|
74
|
+
USER xerxes
|
|
75
|
+
|
|
76
|
+
# Health check
|
|
77
|
+
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
|
|
78
|
+
CMD python -c "import xerxes; print('OK')" || exit 1
|
|
79
|
+
|
|
80
|
+
# Default command
|
|
81
|
+
CMD ["python", "-m", "xerxes"]
|
|
82
|
+
|
|
83
|
+
# Expose ports (if needed for API server)
|
|
84
|
+
EXPOSE 8000
|
|
85
|
+
|
|
86
|
+
# Labels
|
|
87
|
+
LABEL maintainer="erfanzar <Erfanzare810@gmail.com>" \
|
|
88
|
+
version="0.0.18" \
|
|
89
|
+
description="Xerxes - AI Agent Orchestration Framework"
|