.env.example
.gitignore
.pre-commit-config.yaml
.python-version
README.md
litestream
pyproject.toml
uv.lock
.github/workflows/pr-checks.yml
.github/workflows/publish-to-pypi.yml
config/litestream.yml
data/silica-cron.db-shm
data/silica-cron.db-wal
data/.silica-cron.db-litestream/generation
data/.silica-cron.db-litestream/generations/ca2c7e7207c8602f/wal/00000000.wal
docs/cron/CRON_LOGGING.md
docs/cron/CRON_SETUP.md
docs/developer/agentic_memory_placement.md
docs/developer/bash_timeout_enhancement.md
docs/developer/cli_keyboard_input_fix.md
docs/developer/conversation_compaction.md
docs/developer/dual_shell_architecture_examples.md
docs/developer/github_comment_tools.md
docs/developer/gmail_forward_examples.md
docs/developer/gmail_send_content_types.md
docs/developer/google_auth_cli.md
docs/developer/google_remote_auth.md
docs/developer/google_tools_examples.md
docs/developer/issue_tracking_cache.md
docs/developer/issue_tracking_integration.md
docs/developer/memory_webapp.md
docs/developer/plane_tools_examples.md
docs/developer/security_sandbox_workflow.md
docs/developer/session_management.md
docs/developer/todo_tool_enhancements.md
docs/remote/INSTALLATION.md
docs/remote/RASPBERRY_PI_DEPLOYMENT.md
docs/remote/TESTING_STRATEGY.md
docs/remote/UV_AGENT_MANAGEMENT.md
docs/remote/YAML_AGENTS.md
pysilica.egg-info/PKG-INFO
pysilica.egg-info/SOURCES.txt
pysilica.egg-info/dependency_links.txt
pysilica.egg-info/entry_points.txt
pysilica.egg-info/requires.txt
pysilica.egg-info/top_level.txt
silica/__init__.py
silica/_version.py
silica/cli.py
silica/cron/__init__.py
silica/cron/app.py
silica/cron/cli.py
silica/cron/scheduler.py
silica/cron/config/__init__.py
silica/cron/config/logging.py
silica/cron/config/settings.py
silica/cron/models/__init__.py
silica/cron/models/base.py
silica/cron/models/id_generator.py
silica/cron/models/prompt.py
silica/cron/routes/__init__.py
silica/cron/routes/dashboard.py
silica/cron/routes/jobs.py
silica/cron/routes/prompts.py
silica/cron/scripts/__init__.py
silica/cron/scripts/litestream_manager.py
silica/cron/static/.gitkeep
silica/cron/static/style.css
silica/cron/templates/base.html
silica/cron/templates/dashboard.html
silica/cron/templates/jobs.html
silica/cron/templates/prompts.html
silica/cron/templates/session_history.html
silica/developer/__init__.py
silica/developer/agent_loop.py
silica/developer/commit.py
silica/developer/compacter.py
silica/developer/context.py
silica/developer/hdev.py
silica/developer/history.py
silica/developer/memory.py
silica/developer/models.py
silica/developer/prompt.py
silica/developer/rate_limiter.py
silica/developer/sandbox.py
silica/developer/toolbox.py
silica/developer/user_interface.py
silica/developer/utils.py
silica/developer/personas/__init__.py
silica/developer/personas/basic_agent.py
silica/developer/personas/coding_agent.py
silica/developer/personas/deep_research_agent.py
silica/developer/tools/__init__.py
silica/developer/tools/files.py
silica/developer/tools/framework.py
silica/developer/tools/gcal.py
silica/developer/tools/github.py
silica/developer/tools/github_comments.py
silica/developer/tools/gmail.py
silica/developer/tools/google_auth_cli.py
silica/developer/tools/google_shared.py
silica/developer/tools/memory.py
silica/developer/tools/repl.py
silica/developer/tools/sessions.py
silica/developer/tools/shell.py
silica/developer/tools/subagent.py
silica/developer/tools/tmux_session.py
silica/developer/tools/tmux_tool.py
silica/developer/tools/todos.py
silica/developer/tools/web.py
silica/developer/web/__init__.py
silica/developer/web/app.py
silica/developer/web/static/style.css
silica/developer/web/templates/base.html
silica/developer/web/templates/directory.html
silica/developer/web/templates/entry.html
silica/developer/web/templates/error.html
silica/developer/web/templates/search.html
silica/developer/web/templates/tree.html
silica/remote/__init__.py
silica/remote/agents/hdev.yaml
silica/remote/cli/__init__.py
silica/remote/cli/main.py
silica/remote/cli/commands/__init__.py
silica/remote/cli/commands/agent.py
silica/remote/cli/commands/config.py
silica/remote/cli/commands/create.py
silica/remote/cli/commands/destroy.py
silica/remote/cli/commands/piku.py
silica/remote/cli/commands/progress.py
silica/remote/cli/commands/status.py
silica/remote/cli/commands/sync.py
silica/remote/cli/commands/tell.py
silica/remote/cli/commands/todos.py
silica/remote/cli/commands/workspace.py
silica/remote/cli/commands/workspace_environment.py
silica/remote/config/__init__.py
silica/remote/config/multi_workspace.py
silica/remote/utils/__init__.py
silica/remote/utils/agent_runner.py
silica/remote/utils/agent_yaml.py
silica/remote/utils/agents.py
silica/remote/utils/examples.py
silica/remote/utils/git.py
silica/remote/utils/piku.py
silica/remote/utils/yaml_agents.py
silica/remote/utils/templates/.gitignore
silica/remote/utils/templates/.python-version
silica/remote/utils/templates/Procfile
silica/remote/utils/templates/__init__.py
silica/remote/utils/templates/launch_agent.sh
silica/remote/utils/templates/pyproject.toml
silica/remote/utils/templates/requirements.txt
silica/remote/utils/templates/setup_python.sh
silica/remote/utils/templates/verify_setup.py
tests/__init__.py
tests/cron/__init__.py
tests/cron/conftest.py
tests/cron/test_api_jobs.py
tests/cron/test_api_prompts.py
tests/cron/test_app.py
tests/cron/test_dashboard.py
tests/cron/test_logging_config.py
tests/cron/test_models.py
tests/cron/test_scheduler.py
tests/cron/test_setup.py
tests/developer/__init__.py
tests/developer/test_agent_loop.py
tests/developer/test_agent_tool_model.py
tests/developer/test_agent_tool_subagent.py
tests/developer/test_attach_tools_fix.py
tests/developer/test_cli_keyboard_input_fix.py
tests/developer/test_compaction.py
tests/developer/test_compaction_timing_fix.py
tests/developer/test_context.py
tests/developer/test_context_flush.py
tests/developer/test_do_something_else.py
tests/developer/test_file_mentions.py
tests/developer/test_file_mentions_enhancements.py
tests/developer/test_file_mentions_summary.py
tests/developer/test_github_api_tool.py
tests/developer/test_github_comments.py
tests/developer/test_gmail_tools.py
tests/developer/test_history_metadata.py
tests/developer/test_interactive_bash_timeout.py
tests/developer/test_memory_new_format.py
tests/developer/test_memory_tools.py
tests/developer/test_memory_webapp.py
tests/developer/test_model_command.py
tests/developer/test_nested_context.py
tests/developer/test_prompt.py
tests/developer/test_python_repl.py
tests/developer/test_rate_limiter.py
tests/developer/test_rich_to_prompt_toolkit.py
tests/developer/test_sandbox.py
tests/developer/test_session_cli_args.py
tests/developer/test_sessions.py
tests/developer/test_shell_dual_architecture.py
tests/developer/test_tips_command.py
tests/developer/test_tmux_quote_handling.py
tests/developer/test_tmux_session_cwd_inheritance.py
tests/developer/test_tmux_ssh_env_preservation.py
tests/developer/test_tmux_timeout.py
tests/developer/test_tmux_tool.py
tests/developer/test_todo_tools.py
tests/developer/test_todo_tools_enhancements.py
tests/developer/test_token_counting_incomplete_tool_use.py
tests/developer/test_tool_spec_simple.py
tests/developer/test_toolbox.py
tests/developer/test_tools.py
tests/developer/test_unexpected_tool_spec.py
tests/developer/data/history/0c113750-3afe-424b-9b12-b861b943202b/5031339d-cf15-4758-9781-057a508dc36f.json
tests/developer/data/history/0c113750-3afe-424b-9b12-b861b943202b/root.json
tests/remote/__init__.py
tests/remote/conftest.py
tests/remote/test_destroy_command.py
tests/remote/test_environment_propagation.py
tests/remote/test_installation_verification.py
tests/remote/test_piku_utils.py
tests/remote/test_uv_agent_management.py
tests/remote/test_workspace_creation.py
tests/remote/test_workspace_environment.py