sylliptor-agent-cli 0.9.0b1__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.
- sylliptor_agent_cli-0.9.0b1/.dockerignore +28 -0
- sylliptor_agent_cli-0.9.0b1/.editorconfig +15 -0
- sylliptor_agent_cli-0.9.0b1/.gitattributes +1 -0
- sylliptor_agent_cli-0.9.0b1/.github/FUNDING.yml +1 -0
- sylliptor_agent_cli-0.9.0b1/.github/ISSUE_TEMPLATE/bug_report.yml +73 -0
- sylliptor_agent_cli-0.9.0b1/.github/ISSUE_TEMPLATE/config.yml +8 -0
- sylliptor_agent_cli-0.9.0b1/.github/ISSUE_TEMPLATE/feature_request.yml +34 -0
- sylliptor_agent_cli-0.9.0b1/.github/PULL_REQUEST_TEMPLATE.md +26 -0
- sylliptor_agent_cli-0.9.0b1/.github/workflows/ci.yml +112 -0
- sylliptor_agent_cli-0.9.0b1/.github/workflows/release.yml +92 -0
- sylliptor_agent_cli-0.9.0b1/.gitignore +38 -0
- sylliptor_agent_cli-0.9.0b1/.trivyignore +2 -0
- sylliptor_agent_cli-0.9.0b1/CHANGELOG.md +77 -0
- sylliptor_agent_cli-0.9.0b1/CODE_OF_CONDUCT.md +83 -0
- sylliptor_agent_cli-0.9.0b1/CONTRIBUTING.md +61 -0
- sylliptor_agent_cli-0.9.0b1/LICENSE +176 -0
- sylliptor_agent_cli-0.9.0b1/NOTICE +4 -0
- sylliptor_agent_cli-0.9.0b1/PKG-INFO +253 -0
- sylliptor_agent_cli-0.9.0b1/README.md +205 -0
- sylliptor_agent_cli-0.9.0b1/RELEASING.md +75 -0
- sylliptor_agent_cli-0.9.0b1/SECURITY.md +30 -0
- sylliptor_agent_cli-0.9.0b1/docs/README.md +36 -0
- sylliptor_agent_cli-0.9.0b1/docs/architecture.md +204 -0
- sylliptor_agent_cli-0.9.0b1/docs/assets/sylliptor-demo.gif +0 -0
- sylliptor_agent_cli-0.9.0b1/docs/credentials.md +37 -0
- sylliptor_agent_cli-0.9.0b1/docs/custom_tools.md +226 -0
- sylliptor_agent_cli-0.9.0b1/docs/examples/README.md +20 -0
- sylliptor_agent_cli-0.9.0b1/docs/examples/custom_tools/README.md +22 -0
- sylliptor_agent_cli-0.9.0b1/docs/examples/custom_tools/workspace_manifest.py +55 -0
- sylliptor_agent_cli-0.9.0b1/docs/examples/hooks/README.md +23 -0
- sylliptor_agent_cli-0.9.0b1/docs/examples/hooks/block_dangerous.py +29 -0
- sylliptor_agent_cli-0.9.0b1/docs/examples/hooks/block_destructive_git.py +91 -0
- sylliptor_agent_cli-0.9.0b1/docs/examples/hooks/block_env_files.py +107 -0
- sylliptor_agent_cli-0.9.0b1/docs/examples/hooks/format_on_write.py +81 -0
- sylliptor_agent_cli-0.9.0b1/docs/examples/hooks/notify_done.py +25 -0
- sylliptor_agent_cli-0.9.0b1/docs/examples/hooks/notify_done_macos.py +70 -0
- sylliptor_agent_cli-0.9.0b1/docs/examples/hooks/sample_hooks.json +86 -0
- sylliptor_agent_cli-0.9.0b1/docs/examples/hooks/secret_scanner.py +99 -0
- sylliptor_agent_cli-0.9.0b1/docs/forge.md +149 -0
- sylliptor_agent_cli-0.9.0b1/docs/hooks.md +235 -0
- sylliptor_agent_cli-0.9.0b1/docs/mcp.md +272 -0
- sylliptor_agent_cli-0.9.0b1/docs/plugins.md +204 -0
- sylliptor_agent_cli-0.9.0b1/docs/quickstart.md +168 -0
- sylliptor_agent_cli-0.9.0b1/docs/reference.md +358 -0
- sylliptor_agent_cli-0.9.0b1/docs/sandbox.md +18 -0
- sylliptor_agent_cli-0.9.0b1/docs/security_model.md +85 -0
- sylliptor_agent_cli-0.9.0b1/docs/server.md +171 -0
- sylliptor_agent_cli-0.9.0b1/docs/shell_sandbox.md +259 -0
- sylliptor_agent_cli-0.9.0b1/docs/skills.md +186 -0
- sylliptor_agent_cli-0.9.0b1/docs/skills_lifecycle.md +228 -0
- sylliptor_agent_cli-0.9.0b1/docs/subagents.md +90 -0
- sylliptor_agent_cli-0.9.0b1/docs/terminals.md +266 -0
- sylliptor_agent_cli-0.9.0b1/pyproject.toml +100 -0
- sylliptor_agent_cli-0.9.0b1/sandbox/Dockerfile +159 -0
- sylliptor_agent_cli-0.9.0b1/sandbox/README.md +28 -0
- sylliptor_agent_cli-0.9.0b1/scripts/README.md +22 -0
- sylliptor_agent_cli-0.9.0b1/scripts/refresh_litellm_model_catalog.py +311 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/__init__.py +3 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/__main__.py +4 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/agent/README.md +35 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/agent/__init__.py +11 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/agent/errors.py +9 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/agent/prompt_context.py +2677 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/agent/routing.py +1478 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/agent/session.py +1781 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/agent/tools_assembly.py +2055 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/agent/turn/__init__.py +119 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/agent/turn/core.py +2758 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/agent/turn/events.py +108 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/agent/turn/exploration.py +369 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/agent/turn/read_cache.py +362 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/agent/turn/snapshot.py +168 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/agent/verification.py +1062 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/agent/verification_commands.py +468 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/agent_loop.py +551 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/README.md +33 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/__init__.py +120 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/asset_read_core.py +281 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/budget_allocator.py +456 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/comprehender.py +756 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/index.py +569 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/ingestion.py +275 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/legacy_migration.py +386 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/models.py +263 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/ocr.py +239 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/ascii/f-000.txt +13 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/ascii/f-001.txt +13 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/ascii/f-002.txt +13 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/ascii/f-003.txt +13 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/ascii/f-004.txt +13 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/ascii/f-005.txt +13 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/ascii/f-006.txt +13 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/ascii/f-007.txt +13 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/ascii/f-008.txt +13 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/ascii/f-009.txt +13 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/ascii/f-010.txt +13 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/ascii/f-011.txt +13 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/ascii/f-012.txt +13 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/ascii/f-013.txt +13 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/ascii/f-014.txt +13 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/ascii/f-015.txt +13 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/ascii/f-016.txt +13 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/ascii/f-017.txt +13 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/ascii/f-018.txt +13 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/ascii/f-019.txt +13 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/ascii/f-020.txt +13 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/index.html +98 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/owl/show-owl.sh +761 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/paths.py +49 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/plan_binding.py +111 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/planner_context.py +466 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/planner_tools.py +184 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/prompts.py +101 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/replanner_context.py +239 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/surface.py +521 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/untrusted_content.py +48 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/usage_logger.py +94 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/worker_mirror.py +427 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/worker_section.py +303 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/assets/worker_tools.py +468 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/atomic_io.py +83 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/background_runner.py +358 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/branding.py +78 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/builtin_hooks/__init__.py +7 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/builtin_hooks/notify_done_windows.py +65 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/bwrap_etc.py +76 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli.py +11 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/__init__.py +1 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/assets_cli.py +477 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/assets_modal.py +412 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/chat/__init__.py +124 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/chat/commands.py +2065 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/chat/loop.py +1645 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/chat/rendering.py +488 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/chat/state.py +101 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/chat_resume.py +711 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/chat_slash_completer.py +242 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/__init__.py +11 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/_shared.py +61 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/chat_resume_helpers.py +1218 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/chat_state.py +155 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/chat_status.py +858 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/chat_terminal.py +842 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/cli_common.py +1178 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/cli_surface.py +77 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/config.py +122 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/conventions.py +85 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/execution_helpers.py +339 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/extensions.py +401 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/forge.py +540 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/forge_helpers.py +1115 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/hooks.py +709 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/mcp.py +699 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/profile.py +321 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/prompt_helpers.py +310 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/report.py +88 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/root.py +581 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/sandbox.py +184 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/server.py +54 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/sessions.py +212 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/skills.py +404 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/startup.py +555 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/tools.py +333 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/update.py +216 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/commands/welcome.py +930 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/config_menu.py +1975 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/forge.py +1891 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/cli_impl/setup_wizard.py +1379 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/clipboard.py +109 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/compaction/__init__.py +28 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/compaction/conversation_compactor.py +2065 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/compaction/importance.py +177 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/compaction/settings.py +277 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/compaction/tool_output_offload.py +244 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/config.py +1854 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/conflict_auto_resolver.py +894 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/custom_tools/README.md +34 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/custom_tools/__init__.py +43 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/custom_tools/discovery.py +901 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/custom_tools/runtime.py +1491 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/custom_tools/session.py +227 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/custom_tools/trust.py +232 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/diff_paths.py +113 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/direction_change.py +282 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/error_text.py +49 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/execution_budget.py +411 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/execution_context.py +915 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/execution_shared.py +1899 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/extensions/README.md +30 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/extensions/__init__.py +93 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/extensions/activation.py +138 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/extensions/install.py +1434 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/extensions/manifest.py +459 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/extensions/models.py +74 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/extensions/paths.py +57 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/extensions/registry.json +4 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/extensions/registry.py +52 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/extensions/state.py +83 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/extensions/workspace_trust.py +101 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/failure_category.py +165 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/feedback_report.py +1417 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/forge.py +1640 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/frontmatter_utils.py +95 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/git_ops.py +560 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/git_safe.py +60 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/git_worktrees.py +190 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/hooks/README.md +33 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/hooks/__init__.py +67 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/hooks/audit.py +171 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/hooks/config.py +226 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/hooks/dispatcher.py +1102 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/hooks/models.py +447 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/hooks/trust.py +202 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/integration_gate.py +494 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/interactive_input_guard.py +39 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/interactive_plan_mode.py +26 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/knowledge_base.py +1395 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/knowledge_capture.py +1180 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/knowledge_librarian.py +605 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/language_policy.py +34 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/litellm_static_provider.py +410 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/llm/__init__.py +1 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/llm/factory.py +66 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/llm/openai_compat.py +1275 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/llm/openai_responses.py +390 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/llm/provider_limits.py +331 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/llm_error_display.py +87 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/mcp/README.md +33 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/mcp/__init__.py +24 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/mcp/client.py +1137 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/mcp/config.py +597 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/mcp/errors.py +113 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/mcp/forge_scope.py +154 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/mcp/jsonrpc.py +214 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/mcp/manager.py +1803 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/mcp/models.py +666 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/mcp/oauth.py +972 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/mcp/oauth_runtime.py +310 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/mcp/oauth_store.py +255 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/mcp/prompts.py +329 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/mcp/resources.py +295 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/mcp/roots.py +106 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/mcp/server_requests.py +75 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/mcp/token_store.py +510 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/mcp/transport_http.py +1338 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/mcp/transport_stdio.py +1217 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/mcp/untrusted_content.py +119 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/merge_conflict_reviewer.py +742 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/model_catalog/__init__.py +1 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/model_catalog/litellm_model_prices_snapshot.json +39767 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/model_catalog/litellm_model_prices_snapshot.meta.json +17 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/model_metadata_policy.py +220 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/model_metadata_utils.py +103 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/model_registry.py +524 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/model_router.py +121 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/plan_assistant.py +4388 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/plan_mode.py +387 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/plan_reconciliation.py +1058 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/plan_validation.py +713 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/policy.py +95 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/profile_presets.py +457 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/profiles.py +399 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/remote_sync.py +348 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/replanning.py +1163 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/repo_scan.py +957 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/request_estimation.py +186 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/review_gate.py +618 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/run_lock.py +389 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/runtime_artifacts.py +112 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/runtime_context_features.py +78 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/runtime_kind.py +52 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/safety/__init__.py +11 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/safety/mcp_sanitize.py +29 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/safety/safe_http.py +281 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/sandbox_doctor.py +578 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/sandbox_runner.py +937 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/sandbox_settings.py +366 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/serialized_paths.py +355 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/server/__init__.py +3 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/server/app.py +356 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/server/auth.py +34 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/server/job_config.py +30 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/server/settings.py +208 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/server/store.py +193 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/server/worker_runner.py +586 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/session_artifacts.py +85 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/session_metrics.py +321 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/session_store.py +276 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/skills/README.md +34 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/skills/__init__.py +104 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/skills/conventions.py +84 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/skills/discovery.py +176 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/skills/eval_models.py +235 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/skills/eval_runner.py +375 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/skills/evals.py +1359 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/skills/install.py +293 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/skills/loader.py +118 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/skills/matching.py +103 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/skills/models.py +71 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/skills/paths.py +56 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/skills/prompting.py +500 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/skills/scaffold.py +142 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/skills/state.py +441 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/skills/transactions.py +125 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/skills/validation.py +274 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/step_budget.py +345 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/subagents.py +400 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/surface/__init__.py +80 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/surface/base.py +299 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/surface/console.py +51 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/surface/events.py +322 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/surface/hidden_surface.py +407 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/surface/noop_surface.py +216 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/surface/rich_surface.py +1384 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/surface/styles.py +67 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/surface/theme.py +469 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/surface/types.py +90 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/swarm_backend.py +1034 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/swarm_orchestrator.py +3157 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/swarm_scheduler.py +315 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/swarm_trace.py +420 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/swarm_worker.py +1786 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/task_readiness.py +763 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/task_scope.py +817 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/terminal_manager.py +696 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/token_budget.py +89 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/tools/README.md +34 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/tools/__init__.py +1 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/tools/availability.py +139 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/tools/fs.py +627 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/tools/git.py +359 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/tools/history.py +178 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/tools/http_timeout.py +78 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/tools/registry.py +1459 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/tools/search.py +366 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/tools/shell.py +89 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/tools/symbols.py +1070 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/tools/web.py +439 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/tools/web_search.py +1300 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/tools/web_search_dashscope.py +424 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/tools/web_search_provider_adapters.py +1208 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/tools/web_search_tavily.py +191 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/turn_intent.py +521 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/updates.py +705 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/usage_tracker.py +628 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/verify_gate.py +2311 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/web_research.py +1315 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/web_search_adapters.py +46 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/workspace_binding.py +377 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/workspace_binding_ui.py +408 -0
- sylliptor_agent_cli-0.9.0b1/src/sylliptor_agent_cli/workspace_context.py +273 -0
- sylliptor_agent_cli-0.9.0b1/tests/_assets_test_helpers.py +59 -0
- sylliptor_agent_cli-0.9.0b1/tests/_terminal_matrix_harness.py +282 -0
- sylliptor_agent_cli-0.9.0b1/tests/conftest.py +361 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/mcp_servers/minimal_stdio_server.py +549 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/skills_eval/sample_cases.json +50 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/skills_eval/workspaces/combined_repo/.sylliptor_skills/pytest/SKILL.md +7 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/skills_eval/workspaces/combined_repo/AGENTS.md +2 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/skills_eval/workspaces/combined_repo/README.md +4 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/skills_eval/workspaces/combined_repo/src/parser.py +2 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/skills_eval/workspaces/combined_repo/tests/parser_checks.py +5 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/skills_eval/workspaces/empty_authoring/README.md +3 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/skills_eval/workspaces/negative_control/README.md +3 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/terminal_matrix/scenario_1.json +21 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/terminal_matrix/scenario_10.json +25 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/terminal_matrix/scenario_11.json +25 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/terminal_matrix/scenario_12.json +20 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/terminal_matrix/scenario_2.json +21 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/terminal_matrix/scenario_3.json +21 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/terminal_matrix/scenario_4.json +21 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/terminal_matrix/scenario_5.json +20 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/terminal_matrix/scenario_6.json +19 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/terminal_matrix/scenario_7.json +21 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/terminal_matrix/scenario_8.json +24 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/terminal_matrix/scenario_9.json +24 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/tesseract_osd/english.txt +6 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/tesseract_osd/greek.txt +6 -0
- sylliptor_agent_cli-0.9.0b1/tests/fixtures/tesseract_osd/japanese.txt +6 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_agent_loop_event_emission.py +319 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_agent_loop_final_step_nudge.py +379 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_agent_loop_forced_summary.py +833 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_agent_loop_hooks.py +2341 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_agent_loop_host_managed_context.py +80 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_agent_loop_images.py +124 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_agent_loop_interactive_execution_posture.py +808 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_agent_loop_non_interactive.py +287 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_agent_loop_one_shot_follow_through.py +8130 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_agent_loop_plugin_filter.py +167 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_agent_loop_retry_guard.py +464 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_agent_loop_review_approval.py +167 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_agent_loop_same_batch_read_dedup.py +489 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_agent_loop_small_talk.py +3426 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_agent_loop_step_budget_runtime.py +297 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_agent_loop_tool_transcript_shaping.py +201 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_assets_budget_allocator.py +250 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_assets_comprehender.py +370 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_assets_index.py +254 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_assets_ingestion.py +124 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_assets_legacy_migration.py +285 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_assets_models.py +85 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_assets_ocr.py +161 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_assets_plan_binding.py +74 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_assets_planner_context.py +250 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_assets_planner_tools.py +128 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_assets_replanner_context.py +67 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_assets_surface.py +238 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_assets_worker_mirror.py +184 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_assets_worker_section.py +315 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_assets_worker_tools.py +221 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_background_runner.py +221 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_background_runner_sandbox.py +605 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_chat_assets_slash.py +125 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_chat_image_hotkeys.py +109 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_chat_mode_rebuild.py +244 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_chat_plan_mode.py +7320 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_chat_resume.py +1377 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_chat_session_workdir.py +541 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_chat_slash_completer.py +187 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_chat_terminals_slash.py +411 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_cli_api_key.py +5699 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_cli_assets.py +510 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_cli_assets_prune_legacy.py +125 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_cli_config_menu_command.py +37 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_cli_entrypoint.py +70 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_cli_facade.py +12 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_cli_impl_forge.py +24 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_cli_skill_lifecycle.py +193 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_cli_skills.py +262 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_cli_subagents.py +245 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_cli_tools.py +269 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_cli_ux.py +2192 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_clipboard.py +47 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_color_adaptation.py +368 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_compaction_settings.py +177 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_config.py +1473 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_config_menu.py +358 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_config_menu_flow.py +659 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_config_menu_raw_mode.py +236 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_conflict_auto_resolver.py +2172 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_conventions_cli.py +101 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_conversation_compaction.py +1399 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_custom_tools_cli.py +270 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_custom_tools_discovery.py +804 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_custom_tools_runtime.py +1876 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_custom_tools_trust.py +338 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_docs_alignment.py +175 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_execution_budget.py +544 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_execution_context.py +329 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_execution_shared_mirror.py +128 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_execution_shared_reporting.py +471 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_execution_shared_snapshot.py +206 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_extensions_cli.py +61 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_extensions_registry.py +60 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_extensions_state.py +84 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_feedback_report.py +1711 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_forge.py +1789 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_forge_assets_legacy_deprecation.py +22 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_forge_assets_legacy_migration_loadplan.py +121 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_forge_exec.py +5464 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_forge_review.py +123 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_forge_swarm.py +8259 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_fs_edit_tool.py +225 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_fs_file_ops_tool.py +293 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_fs_tools.py +240 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_fullaccess_audit.py +124 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_git_apply_patch_tool.py +90 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_git_history_tool.py +225 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_git_hygiene.py +53 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_git_ops.py +668 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_git_safe.py +62 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_git_worktrees.py +271 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_history_search_tool.py +120 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_hooks_cli.py +677 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_hooks_config.py +335 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_importance_scoring.py +55 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_integration_compaction_pipeline.py +399 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_integration_gate.py +603 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_knowledge_base.py +620 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_knowledge_capture.py +203 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_knowledge_librarian.py +988 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_language_policy.py +127 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_language_policy_prompts.py +93 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_legacy_profile_migration.py +63 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_litellm_model_registry.py +520 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_llm_factory_profiles.py +67 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_mcp_auth_cli.py +270 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_mcp_config.py +1428 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_mcp_errors.py +228 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_mcp_http.py +3268 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_mcp_manager.py +2324 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_mcp_oauth.py +1626 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_mcp_prompts.py +703 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_mcp_resources.py +161 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_mcp_roots.py +141 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_mcp_sanitize.py +44 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_mcp_scope.py +72 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_mcp_stdio.py +1363 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_merge_conflict_reviewer.py +610 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_model_catalog_packaging.py +55 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_model_metadata_policy.py +131 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_model_router.py +113 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_model_router_forge_context.py +73 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_openai_compat.py +1818 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_openai_responses.py +220 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_plan_assistant.py +4584 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_plan_assistant_assets.py +231 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_plan_assistant_forge_context.py +62 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_plan_mode.py +192 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_plan_reconciliation.py +630 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_plan_validation.py +686 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_plugin_activation.py +145 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_plugin_enable_disable.py +233 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_plugin_enable_disable_cli.py +183 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_plugin_install.py +544 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_plugin_install_cli.py +234 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_plugin_manifest.py +610 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_policy.py +33 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_profile_cli_commands.py +136 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_profile_presets.py +170 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_profiles.py +158 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_prompt_helpers.py +86 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_prompt_payload.py +510 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_prompts_invariants.py +207 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_protected_paths.py +161 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_provider_limits.py +411 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_refresh_litellm_model_catalog.py +208 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_release_smoke.py +477 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_remote_sync.py +240 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_replanning.py +877 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_replanning_assets.py +177 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_repo_scan.py +282 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_request_size_telemetry.py +70 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_review_gate.py +483 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_run_mutation.py +421 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_runtime_context_features.py +105 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_safe_http.py +235 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_sandbox_cli.py +236 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_sandbox_doctor.py +247 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_sandbox_settings_background.py +81 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_search_rg_security.py +313 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_security_docs.py +28 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_serialized_paths.py +89 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_server_app.py +488 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_server_job_config.py +78 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_server_settings.py +77 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_server_upload_flow.py +107 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_server_worker_runner.py +478 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_server_worker_runner_args.py +51 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_session_metrics.py +529 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_session_store.py +1389 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_setup_wizard.py +1056 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_shell_background_integration.py +749 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_shell_sandbox.py +1056 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_show_owl_matrix.py +99 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_skill_lifecycle.py +760 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_skill_lifecycle_prompting.py +139 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_skills.py +1050 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_skills_evals.py +1306 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_step_budget.py +304 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_subagent_turn_policy.py +317 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_subagents.py +1467 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_surface.py +1634 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_surface_event_migration.py +329 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_surface_events.py +201 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_swarm_backend.py +1027 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_swarm_scheduler.py +398 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_swarm_worker.py +4895 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_swarm_worker_assets.py +260 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_symbol_search_tool.py +684 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_task_scope.py +838 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_terminal_manager.py +746 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_terminal_matrix_consistency.py +27 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_terminal_matrix_visible_anchors.py +27 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_token_budget.py +49 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_tool_exposure_by_mode.py +533 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_tool_output_offload.py +316 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_tool_registry.py +1519 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_updates.py +488 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_usage_tracker.py +714 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_verify_gate.py +2764 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_verify_tool.py +1687 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_web_fetch_tool.py +526 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_web_search_dashscope.py +626 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_web_search_tavily.py +192 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_web_search_tool.py +1447 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_workspace_binding.py +299 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_workspace_context.py +174 -0
- sylliptor_agent_cli-0.9.0b1/tests/test_workspace_trust.py +166 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
*
|
|
2
|
+
|
|
3
|
+
!sandbox/
|
|
4
|
+
!sandbox/**
|
|
5
|
+
!src/
|
|
6
|
+
!src/**
|
|
7
|
+
!pyproject.toml
|
|
8
|
+
!README.md
|
|
9
|
+
|
|
10
|
+
.git
|
|
11
|
+
.venv
|
|
12
|
+
venv
|
|
13
|
+
**/__pycache__
|
|
14
|
+
**/*.pyc
|
|
15
|
+
.pytest_cache
|
|
16
|
+
.ruff_cache
|
|
17
|
+
dist
|
|
18
|
+
build
|
|
19
|
+
*.egg-info
|
|
20
|
+
reports/
|
|
21
|
+
.sylliptor/
|
|
22
|
+
.sylliptor_images/
|
|
23
|
+
.claude/
|
|
24
|
+
sylliptor-feedback/
|
|
25
|
+
node_modules/
|
|
26
|
+
.DS_Store
|
|
27
|
+
.env
|
|
28
|
+
.env.*
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
root = true
|
|
2
|
+
|
|
3
|
+
[*]
|
|
4
|
+
charset = utf-8
|
|
5
|
+
end_of_line = lf
|
|
6
|
+
insert_final_newline = true
|
|
7
|
+
trim_trailing_whitespace = true
|
|
8
|
+
|
|
9
|
+
[*.py]
|
|
10
|
+
indent_style = space
|
|
11
|
+
indent_size = 4
|
|
12
|
+
|
|
13
|
+
[*.{md,yml,yaml,toml,json}]
|
|
14
|
+
indent_style = space
|
|
15
|
+
indent_size = 2
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
* text=auto eol=lf
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
github: [AlysisAi]
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
name: Bug report
|
|
2
|
+
description: Report a reproducible bug in Sylliptor.
|
|
3
|
+
title: "bug: "
|
|
4
|
+
labels: ["bug"]
|
|
5
|
+
body:
|
|
6
|
+
- type: markdown
|
|
7
|
+
attributes:
|
|
8
|
+
value: |
|
|
9
|
+
Thanks for taking the time to file a bug report. Please fill in
|
|
10
|
+
the sections below so we can reproduce and fix the issue.
|
|
11
|
+
- type: textarea
|
|
12
|
+
id: summary
|
|
13
|
+
attributes:
|
|
14
|
+
label: Summary
|
|
15
|
+
description: A short, clear description of the bug.
|
|
16
|
+
placeholder: e.g. `sylliptor chat` crashes when the model returns no tool_calls.
|
|
17
|
+
validations:
|
|
18
|
+
required: true
|
|
19
|
+
- type: textarea
|
|
20
|
+
id: steps
|
|
21
|
+
attributes:
|
|
22
|
+
label: Steps to reproduce
|
|
23
|
+
description: Minimal, exact commands or actions that trigger the bug.
|
|
24
|
+
placeholder: |
|
|
25
|
+
1. Run `sylliptor config set model gpt-4.1-mini`
|
|
26
|
+
2. Run `sylliptor run "..."`
|
|
27
|
+
3. Observe the error
|
|
28
|
+
validations:
|
|
29
|
+
required: true
|
|
30
|
+
- type: textarea
|
|
31
|
+
id: expected
|
|
32
|
+
attributes:
|
|
33
|
+
label: Expected behavior
|
|
34
|
+
validations:
|
|
35
|
+
required: true
|
|
36
|
+
- type: textarea
|
|
37
|
+
id: actual
|
|
38
|
+
attributes:
|
|
39
|
+
label: Actual behavior
|
|
40
|
+
description: Include the full error message and stack trace if possible.
|
|
41
|
+
validations:
|
|
42
|
+
required: true
|
|
43
|
+
- type: input
|
|
44
|
+
id: version
|
|
45
|
+
attributes:
|
|
46
|
+
label: Sylliptor version
|
|
47
|
+
description: Output of `sylliptor --version` (or commit SHA if running from source).
|
|
48
|
+
placeholder: 0.1.4
|
|
49
|
+
validations:
|
|
50
|
+
required: true
|
|
51
|
+
- type: input
|
|
52
|
+
id: python
|
|
53
|
+
attributes:
|
|
54
|
+
label: Python version
|
|
55
|
+
placeholder: 3.11.x
|
|
56
|
+
validations:
|
|
57
|
+
required: true
|
|
58
|
+
- type: dropdown
|
|
59
|
+
id: os
|
|
60
|
+
attributes:
|
|
61
|
+
label: Operating system
|
|
62
|
+
options:
|
|
63
|
+
- macOS
|
|
64
|
+
- Linux
|
|
65
|
+
- Windows
|
|
66
|
+
- Other
|
|
67
|
+
validations:
|
|
68
|
+
required: true
|
|
69
|
+
- type: textarea
|
|
70
|
+
id: extra
|
|
71
|
+
attributes:
|
|
72
|
+
label: Additional context
|
|
73
|
+
description: Logs, config snippets, screenshots, anything else relevant.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
blank_issues_enabled: false
|
|
2
|
+
contact_links:
|
|
3
|
+
- name: Question or discussion
|
|
4
|
+
url: https://github.com/AlysisAi/Sylliptor/discussions
|
|
5
|
+
about: Use Discussions for questions, ideas, and general help.
|
|
6
|
+
- name: Security vulnerability
|
|
7
|
+
url: https://github.com/AlysisAi/Sylliptor/security/advisories/new
|
|
8
|
+
about: Please report security issues privately, not as public issues.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
name: Feature request
|
|
2
|
+
description: Suggest a new capability or improvement for Sylliptor.
|
|
3
|
+
title: "feat: "
|
|
4
|
+
labels: ["enhancement"]
|
|
5
|
+
body:
|
|
6
|
+
- type: markdown
|
|
7
|
+
attributes:
|
|
8
|
+
value: |
|
|
9
|
+
Thanks for suggesting an improvement. Please describe the problem
|
|
10
|
+
first, then your proposed solution.
|
|
11
|
+
- type: textarea
|
|
12
|
+
id: problem
|
|
13
|
+
attributes:
|
|
14
|
+
label: Problem
|
|
15
|
+
description: What problem does this feature solve? Who feels the pain today?
|
|
16
|
+
validations:
|
|
17
|
+
required: true
|
|
18
|
+
- type: textarea
|
|
19
|
+
id: proposal
|
|
20
|
+
attributes:
|
|
21
|
+
label: Proposed solution
|
|
22
|
+
description: Describe what you would like to see, ideally with usage examples.
|
|
23
|
+
validations:
|
|
24
|
+
required: true
|
|
25
|
+
- type: textarea
|
|
26
|
+
id: alternatives
|
|
27
|
+
attributes:
|
|
28
|
+
label: Alternatives considered
|
|
29
|
+
description: Workarounds or other designs you thought about.
|
|
30
|
+
- type: textarea
|
|
31
|
+
id: extra
|
|
32
|
+
attributes:
|
|
33
|
+
label: Additional context
|
|
34
|
+
description: Links, screenshots, prior art in other tools, etc.
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
## Summary
|
|
2
|
+
|
|
3
|
+
<!-- 1-3 sentences: what changed and why. -->
|
|
4
|
+
|
|
5
|
+
## Changes
|
|
6
|
+
|
|
7
|
+
<!-- Bullet list of concrete changes. Keep it tight. -->
|
|
8
|
+
|
|
9
|
+
-
|
|
10
|
+
|
|
11
|
+
## Test plan
|
|
12
|
+
|
|
13
|
+
<!-- How you verified this works. Tick what applies. -->
|
|
14
|
+
|
|
15
|
+
- [ ] `pytest` passes locally
|
|
16
|
+
- [ ] `ruff check .` clean
|
|
17
|
+
- [ ] `ruff format --check .` clean
|
|
18
|
+
- [ ] Manual smoke test (describe):
|
|
19
|
+
|
|
20
|
+
## Linked issues
|
|
21
|
+
|
|
22
|
+
<!-- Closes #N, refs #N -->
|
|
23
|
+
|
|
24
|
+
## Notes for reviewers
|
|
25
|
+
|
|
26
|
+
<!-- Anything reviewers should pay extra attention to. Optional. -->
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
name: ci
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
pull_request:
|
|
8
|
+
workflow_dispatch:
|
|
9
|
+
|
|
10
|
+
permissions:
|
|
11
|
+
contents: read
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
test:
|
|
15
|
+
name: test (ubuntu-latest, py${{ matrix.python-version }})
|
|
16
|
+
runs-on: ubuntu-latest
|
|
17
|
+
strategy:
|
|
18
|
+
fail-fast: false
|
|
19
|
+
matrix:
|
|
20
|
+
include:
|
|
21
|
+
- {"python-version":"3.11"}
|
|
22
|
+
- {"python-version":"3.12"}
|
|
23
|
+
|
|
24
|
+
steps:
|
|
25
|
+
- name: Check out repository
|
|
26
|
+
uses: actions/checkout@v6
|
|
27
|
+
|
|
28
|
+
- name: Set up Python
|
|
29
|
+
uses: actions/setup-python@v6
|
|
30
|
+
with:
|
|
31
|
+
python-version: ${{ matrix.python-version }}
|
|
32
|
+
cache: pip
|
|
33
|
+
|
|
34
|
+
- name: Install package
|
|
35
|
+
run: |
|
|
36
|
+
python -m pip install --upgrade pip
|
|
37
|
+
python -m pip install -e ".[dev]"
|
|
38
|
+
|
|
39
|
+
- name: Lint
|
|
40
|
+
run: ruff check .
|
|
41
|
+
|
|
42
|
+
- name: Format check
|
|
43
|
+
run: ruff format --check .
|
|
44
|
+
|
|
45
|
+
- name: Test
|
|
46
|
+
run: pytest -q
|
|
47
|
+
|
|
48
|
+
macos-smoke:
|
|
49
|
+
name: macOS smoke
|
|
50
|
+
runs-on: macos-latest
|
|
51
|
+
env:
|
|
52
|
+
PYTHON_KEYRING_BACKEND: keyring.backends.null.Keyring
|
|
53
|
+
|
|
54
|
+
steps:
|
|
55
|
+
- name: Check out repository
|
|
56
|
+
uses: actions/checkout@v6
|
|
57
|
+
|
|
58
|
+
- name: Set up Python
|
|
59
|
+
uses: actions/setup-python@v6
|
|
60
|
+
with:
|
|
61
|
+
python-version: "3.12"
|
|
62
|
+
cache: pip
|
|
63
|
+
|
|
64
|
+
- name: Install package
|
|
65
|
+
run: |
|
|
66
|
+
python -m pip install --upgrade pip
|
|
67
|
+
python -m pip install -e ".[dev]"
|
|
68
|
+
|
|
69
|
+
- name: Smoke test CLI
|
|
70
|
+
run: |
|
|
71
|
+
sylliptor --help
|
|
72
|
+
sylliptor --version
|
|
73
|
+
|
|
74
|
+
package:
|
|
75
|
+
name: package smoke
|
|
76
|
+
runs-on: ubuntu-latest
|
|
77
|
+
needs:
|
|
78
|
+
- test
|
|
79
|
+
- macos-smoke
|
|
80
|
+
|
|
81
|
+
steps:
|
|
82
|
+
- name: Check out repository
|
|
83
|
+
uses: actions/checkout@v6
|
|
84
|
+
|
|
85
|
+
- name: Set up Python
|
|
86
|
+
uses: actions/setup-python@v6
|
|
87
|
+
with:
|
|
88
|
+
python-version: "3.12"
|
|
89
|
+
cache: pip
|
|
90
|
+
|
|
91
|
+
- name: Build package
|
|
92
|
+
run: |
|
|
93
|
+
python -m pip install --upgrade pip
|
|
94
|
+
python -m pip install build twine pipx
|
|
95
|
+
python -m build
|
|
96
|
+
python -m twine check dist/*
|
|
97
|
+
|
|
98
|
+
- name: Smoke install wheel
|
|
99
|
+
env:
|
|
100
|
+
PIPX_HOME: ${{ runner.temp }}/pipx-home
|
|
101
|
+
PIPX_BIN_DIR: ${{ runner.temp }}/pipx-bin
|
|
102
|
+
run: |
|
|
103
|
+
python -m pipx install dist/*.whl
|
|
104
|
+
"$PIPX_BIN_DIR/sylliptor" --help
|
|
105
|
+
"$PIPX_BIN_DIR/sylliptor" --version
|
|
106
|
+
|
|
107
|
+
- name: Upload distributions
|
|
108
|
+
uses: actions/upload-artifact@v7
|
|
109
|
+
with:
|
|
110
|
+
name: python-distributions
|
|
111
|
+
path: dist/*
|
|
112
|
+
if-no-files-found: error
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
name: release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- "v*"
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
contents: read
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
build:
|
|
13
|
+
name: build and validate
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
|
|
16
|
+
steps:
|
|
17
|
+
- name: Check out repository
|
|
18
|
+
uses: actions/checkout@v6
|
|
19
|
+
|
|
20
|
+
- name: Set up Python
|
|
21
|
+
uses: actions/setup-python@v6
|
|
22
|
+
with:
|
|
23
|
+
python-version: "3.12"
|
|
24
|
+
cache: pip
|
|
25
|
+
|
|
26
|
+
- name: Validate tag matches package version
|
|
27
|
+
run: |
|
|
28
|
+
python - <<'PY'
|
|
29
|
+
import os
|
|
30
|
+
import tomllib
|
|
31
|
+
from pathlib import Path
|
|
32
|
+
|
|
33
|
+
tag = os.environ["GITHUB_REF_NAME"].removeprefix("v")
|
|
34
|
+
version = tomllib.loads(Path("pyproject.toml").read_text())["project"]["version"]
|
|
35
|
+
if tag != version:
|
|
36
|
+
raise SystemExit(f"tag v{tag} does not match package version {version}")
|
|
37
|
+
PY
|
|
38
|
+
|
|
39
|
+
- name: Install package
|
|
40
|
+
run: |
|
|
41
|
+
python -m pip install --upgrade pip
|
|
42
|
+
python -m pip install -e ".[dev]"
|
|
43
|
+
python -m pip install build twine pipx
|
|
44
|
+
|
|
45
|
+
- name: Lint
|
|
46
|
+
run: ruff check .
|
|
47
|
+
|
|
48
|
+
- name: Format check
|
|
49
|
+
run: ruff format --check .
|
|
50
|
+
|
|
51
|
+
- name: Test
|
|
52
|
+
run: pytest -q
|
|
53
|
+
|
|
54
|
+
- name: Build distributions
|
|
55
|
+
run: |
|
|
56
|
+
python -m build
|
|
57
|
+
python -m twine check dist/*
|
|
58
|
+
|
|
59
|
+
- name: Smoke install wheel
|
|
60
|
+
env:
|
|
61
|
+
PIPX_HOME: ${{ runner.temp }}/pipx-home
|
|
62
|
+
PIPX_BIN_DIR: ${{ runner.temp }}/pipx-bin
|
|
63
|
+
run: |
|
|
64
|
+
python -m pipx install dist/*.whl
|
|
65
|
+
"$PIPX_BIN_DIR/sylliptor" --help
|
|
66
|
+
"$PIPX_BIN_DIR/sylliptor" --version
|
|
67
|
+
|
|
68
|
+
- name: Upload distributions
|
|
69
|
+
uses: actions/upload-artifact@v7
|
|
70
|
+
with:
|
|
71
|
+
name: python-distributions
|
|
72
|
+
path: dist/*
|
|
73
|
+
if-no-files-found: error
|
|
74
|
+
|
|
75
|
+
publish-pypi:
|
|
76
|
+
name: publish to PyPI
|
|
77
|
+
runs-on: ubuntu-latest
|
|
78
|
+
needs: build
|
|
79
|
+
environment: pypi
|
|
80
|
+
permissions:
|
|
81
|
+
contents: read
|
|
82
|
+
id-token: write
|
|
83
|
+
|
|
84
|
+
steps:
|
|
85
|
+
- name: Download distributions
|
|
86
|
+
uses: actions/download-artifact@v8
|
|
87
|
+
with:
|
|
88
|
+
name: python-distributions
|
|
89
|
+
path: dist
|
|
90
|
+
|
|
91
|
+
- name: Publish distributions to PyPI
|
|
92
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*.pyd
|
|
5
|
+
.Python
|
|
6
|
+
*.egg-info/
|
|
7
|
+
dist/
|
|
8
|
+
build/
|
|
9
|
+
|
|
10
|
+
# Virtualenv
|
|
11
|
+
.venv/
|
|
12
|
+
venv/
|
|
13
|
+
.tmp_ci*/
|
|
14
|
+
|
|
15
|
+
# Tooling
|
|
16
|
+
.pytest_cache/
|
|
17
|
+
.ruff_cache/
|
|
18
|
+
.mypy_cache/
|
|
19
|
+
.coverage
|
|
20
|
+
htmlcov/
|
|
21
|
+
.sylliptor/
|
|
22
|
+
.sylliptor_data_demo/
|
|
23
|
+
.sylliptor_data_demo_verify/
|
|
24
|
+
.sylliptor_images/
|
|
25
|
+
sylliptor-feedback/
|
|
26
|
+
reports/
|
|
27
|
+
|
|
28
|
+
# Claude Code local config
|
|
29
|
+
.claude/
|
|
30
|
+
|
|
31
|
+
# OS / IDE
|
|
32
|
+
.DS_Store
|
|
33
|
+
.idea/
|
|
34
|
+
.vscode/
|
|
35
|
+
|
|
36
|
+
# Secrets / env
|
|
37
|
+
.env
|
|
38
|
+
.env.*
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to Sylliptor will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
6
|
+
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Public-facing repository documentation was trimmed and polished for beta launch.
|
|
12
|
+
- README and docs navigation now point visitors to the public Sylliptor website.
|
|
13
|
+
|
|
14
|
+
## [0.1.4] - 2026-04-06
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- Mutable chat session workdirs for changing task context during a session.
|
|
19
|
+
- Live surface feedback, including a thinking spinner and streamed Markdown rerendering.
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- Plan Mode entry flow, exact plan subcommand parsing, and natural-language workdir navigation.
|
|
24
|
+
- Review approval keyboard navigation.
|
|
25
|
+
|
|
26
|
+
## [0.1.3] - 2026-04-02
|
|
27
|
+
|
|
28
|
+
### Added
|
|
29
|
+
|
|
30
|
+
- Production-grade Skills validation flow and installed CLI smoke coverage.
|
|
31
|
+
- Skills lifecycle guidance for first-time authoring and installation flows.
|
|
32
|
+
|
|
33
|
+
### Fixed
|
|
34
|
+
|
|
35
|
+
- Invalid `/plan` guidance and blank MCP prompt server filter handling.
|
|
36
|
+
|
|
37
|
+
## [0.1.2] - 2026-03-31
|
|
38
|
+
|
|
39
|
+
### Added
|
|
40
|
+
|
|
41
|
+
- First Skills MVP with authoring, lifecycle, validation, and evaluation support.
|
|
42
|
+
- MCP foundations for stdio and streamable HTTP, including tools, roots, resources, and prompts.
|
|
43
|
+
- Tier 1 custom tools foundation and bundled model catalog provenance.
|
|
44
|
+
|
|
45
|
+
### Changed
|
|
46
|
+
|
|
47
|
+
- Chat Plan Mode, repo grounding, and approval flows were tightened for clearer read-only planning.
|
|
48
|
+
- Forge and swarm execution were hardened around task scope, verification, and planner handoff.
|
|
49
|
+
|
|
50
|
+
### Fixed
|
|
51
|
+
|
|
52
|
+
- MCP transport completion edge cases, protected follow-up synthesis, and atomic runtime artifact handling.
|
|
53
|
+
|
|
54
|
+
## [0.1.1] - 2026-03-18
|
|
55
|
+
|
|
56
|
+
### Added
|
|
57
|
+
|
|
58
|
+
- Core local agent CLI with chat and run modes, OpenAI-compatible model access, tool execution, streaming responses, image inputs, clipboard support, and slash commands.
|
|
59
|
+
- Setup, configuration, usage tracking, conversation compaction, history search, and workspace binding flows.
|
|
60
|
+
- Forge planning and execution workflows with swarm orchestration, worktrees, verification gates, review gates, conflict review, and feedback bundle export.
|
|
61
|
+
- Sandboxed shell execution, isolated server worker jobs, web fetch/search tools, subagents, and the first extensions foundation.
|
|
62
|
+
|
|
63
|
+
### Changed
|
|
64
|
+
|
|
65
|
+
- Rebranded the package and visible CLI surfaces from the initial Coder naming to Sylliptor and Forge.
|
|
66
|
+
- Hardened runtime safety across git operations, protected paths, shell policy, workspace scope, sandboxing, and verification evidence.
|
|
67
|
+
|
|
68
|
+
### Fixed
|
|
69
|
+
|
|
70
|
+
- Cross-platform verification, terminal UX, task routing, prompt handling, and recovery paths across managed execution flows.
|
|
71
|
+
|
|
72
|
+
## [0.1.0] - 2026-02-13
|
|
73
|
+
|
|
74
|
+
### Added
|
|
75
|
+
|
|
76
|
+
- Initial Python package scaffold for a local OpenAI-compatible coding agent CLI.
|
|
77
|
+
- Baseline README, architecture notes, Apache-2.0 license, packaging metadata, and development configuration.
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, caste, color, religion, or sexual identity and orientation.
|
|
6
|
+
|
|
7
|
+
We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
|
|
8
|
+
|
|
9
|
+
## Our Standards
|
|
10
|
+
|
|
11
|
+
Examples of behavior that contributes to a positive environment for our community include:
|
|
12
|
+
|
|
13
|
+
* Demonstrating empathy and kindness toward other people
|
|
14
|
+
* Being respectful of differing opinions, viewpoints, and experiences
|
|
15
|
+
* Giving and gracefully accepting constructive feedback
|
|
16
|
+
* Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
|
|
17
|
+
* Focusing on what is best not just for us as individuals, but for the overall community
|
|
18
|
+
|
|
19
|
+
Examples of unacceptable behavior include:
|
|
20
|
+
|
|
21
|
+
* The use of sexualized language or imagery, and sexual attention or advances of any kind
|
|
22
|
+
* Trolling, insulting or derogatory comments, and personal or political attacks
|
|
23
|
+
* Public or private harassment
|
|
24
|
+
* Publishing others' private information, such as a physical or email address, without their explicit permission
|
|
25
|
+
* Other conduct which could reasonably be considered inappropriate in a professional setting
|
|
26
|
+
|
|
27
|
+
## Enforcement Responsibilities
|
|
28
|
+
|
|
29
|
+
Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
|
|
30
|
+
|
|
31
|
+
Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
|
|
32
|
+
|
|
33
|
+
## Scope
|
|
34
|
+
|
|
35
|
+
This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
|
|
36
|
+
|
|
37
|
+
## Enforcement
|
|
38
|
+
|
|
39
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at products@alysisai.com. All complaints will be reviewed and investigated promptly and fairly.
|
|
40
|
+
|
|
41
|
+
All community leaders are obligated to respect the privacy and security of the reporter of any incident.
|
|
42
|
+
|
|
43
|
+
## Enforcement Guidelines
|
|
44
|
+
|
|
45
|
+
Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
|
|
46
|
+
|
|
47
|
+
### 1. Correction
|
|
48
|
+
|
|
49
|
+
**Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
|
|
50
|
+
|
|
51
|
+
**Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
|
|
52
|
+
|
|
53
|
+
### 2. Warning
|
|
54
|
+
|
|
55
|
+
**Community Impact**: A violation through a single incident or series of actions.
|
|
56
|
+
|
|
57
|
+
**Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
|
|
58
|
+
|
|
59
|
+
### 3. Temporary Ban
|
|
60
|
+
|
|
61
|
+
**Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
|
|
62
|
+
|
|
63
|
+
**Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
|
|
64
|
+
|
|
65
|
+
### 4. Permanent Ban
|
|
66
|
+
|
|
67
|
+
**Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
|
|
68
|
+
|
|
69
|
+
**Consequence**: A permanent ban from any sort of public interaction within the community.
|
|
70
|
+
|
|
71
|
+
## Attribution
|
|
72
|
+
|
|
73
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.1, available at [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
|
|
74
|
+
|
|
75
|
+
Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder][Mozilla CoC].
|
|
76
|
+
|
|
77
|
+
For answers to common questions about this code of conduct, see the FAQ at [https://www.contributor-covenant.org/faq][FAQ]. Translations are available at [https://www.contributor-covenant.org/translations][translations].
|
|
78
|
+
|
|
79
|
+
[homepage]: https://www.contributor-covenant.org
|
|
80
|
+
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
|
|
81
|
+
[Mozilla CoC]: https://github.com/mozilla/diversity
|
|
82
|
+
[FAQ]: https://www.contributor-covenant.org/faq
|
|
83
|
+
[translations]: https://www.contributor-covenant.org/translations
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# Contributing to Sylliptor
|
|
2
|
+
|
|
3
|
+
## Development setup
|
|
4
|
+
|
|
5
|
+
- Use Python 3.11+.
|
|
6
|
+
- Clone the repository:
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
git clone https://github.com/AlysisAi/Sylliptor.git
|
|
10
|
+
cd Sylliptor
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
- Install development dependencies:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
pip install -e ".[dev]"
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
- Run tests:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
pytest
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
- Lint:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
ruff check . && ruff format --check .
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Branch naming
|
|
32
|
+
|
|
33
|
+
Use one of these branch prefixes:
|
|
34
|
+
|
|
35
|
+
- `feat/<topic>`
|
|
36
|
+
- `fix/<topic>`
|
|
37
|
+
- `chore/<topic>`
|
|
38
|
+
- `docs/<topic>`
|
|
39
|
+
- `test/<topic>`
|
|
40
|
+
|
|
41
|
+
## Pull requests
|
|
42
|
+
|
|
43
|
+
- Keep PRs small and focused.
|
|
44
|
+
- Link related issues.
|
|
45
|
+
- All CI checks must be green.
|
|
46
|
+
- Open one PR per logical change.
|
|
47
|
+
|
|
48
|
+
## Commit messages
|
|
49
|
+
|
|
50
|
+
Use Conventional Commits style:
|
|
51
|
+
|
|
52
|
+
- `feat:`
|
|
53
|
+
- `fix:`
|
|
54
|
+
- `chore:`
|
|
55
|
+
- `docs:`
|
|
56
|
+
- `test:`
|
|
57
|
+
- `refactor:`
|
|
58
|
+
|
|
59
|
+
## Code of Conduct
|
|
60
|
+
|
|
61
|
+
Please follow [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md).
|