agentwire-dev 1.45.1__tar.gz → 1.47.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.
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/.github/PULL_REQUEST_TEMPLATE.md +2 -2
- agentwire_dev-1.47.0/.github/workflows/pytest.yml +62 -0
- agentwire_dev-1.47.0/.github/workflows/ruff.yml +33 -0
- agentwire_dev-1.47.0/.github/workflows/security.yml +104 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/.github/workflows/tts-smoke.yml +6 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/CONTRIBUTING.md +6 -2
- agentwire_dev-1.47.0/LICENSE +201 -0
- agentwire_dev-1.47.0/PKG-INFO +599 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/README.md +33 -9
- agentwire_dev-1.47.0/SPONSORS.md +44 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/__init__.py +1 -1
- agentwire_dev-1.47.0/agentwire/__main__.py +391 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/channels/__init__.py +6 -4
- agentwire_dev-1.47.0/agentwire/channels/push.py +244 -0
- agentwire_dev-1.47.0/agentwire/channels_cli.py +553 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/cli_safety.py +19 -7
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/completion.py +1 -1
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/config.py +5 -0
- agentwire_dev-1.47.0/agentwire/core.py +1162 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/council/state.py +2 -1
- agentwire_dev-1.47.0/agentwire/diff_cli.py +236 -0
- agentwire_dev-1.47.0/agentwire/doctor_cli.py +916 -0
- agentwire_dev-1.47.0/agentwire/ensure_cli.py +1068 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/fetch.py +0 -1
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/handoff/instructions.py +0 -1
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/handoff/renderer.py +0 -1
- agentwire_dev-1.47.0/agentwire/handoff_cli.py +378 -0
- agentwire_dev-1.47.0/agentwire/history_cli.py +361 -0
- agentwire_dev-1.47.0/agentwire/hooks_cli.py +618 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/inbox.py +142 -10
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/limits_cli.py +105 -4
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/locking.py +15 -14
- agentwire_dev-1.47.0/agentwire/machine_cli.py +235 -0
- agentwire_dev-1.47.0/agentwire/mcp_cli.py +27 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/mcp_server.py +38 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/msg_cli.py +59 -4
- agentwire_dev-1.47.0/agentwire/notify_cli.py +290 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/onboarding.py +8 -5
- agentwire_dev-1.47.0/agentwire/pane_cli.py +1150 -0
- agentwire_dev-1.47.0/agentwire/portal_cli.py +557 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/prompt_router.py +29 -15
- agentwire_dev-1.47.0/agentwire/push_cli.py +20 -0
- agentwire_dev-1.47.0/agentwire/push_store.py +199 -0
- agentwire_dev-1.47.0/agentwire/repo_cli.py +159 -0
- agentwire_dev-1.47.0/agentwire/roles_cli.py +304 -0
- agentwire_dev-1.47.0/agentwire/safety_cli.py +131 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/scheduler.py +4 -8
- agentwire_dev-1.47.0/agentwire/scheduler_cli.py +995 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/security.py +116 -4
- agentwire_dev-1.47.0/agentwire/send_cli.py +323 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/server.py +420 -201
- agentwire_dev-1.47.0/agentwire/session_cli.py +1745 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/session_context.py +2 -7
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/css/desktop.css +193 -0
- agentwire_dev-1.47.0/agentwire/static/icons/machines/android.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/machines/automaton.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/machines/bot.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/machines/cyborg.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/machines/droid.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/machines/drone.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/machines/guardian.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/machines/mech.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/machines/probe.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/machines/robot.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/machines/sentinel.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/machines/unit.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/projects/blob.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/projects/cloud.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/projects/crystal.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/projects/cyclops.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/projects/flame.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/projects/fuzzy.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/projects/horned.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/projects/moon.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/projects/slime.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/projects/star.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/projects/tentacle.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/projects/winged.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/sessions/bear.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/sessions/cat.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/sessions/crown.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/sessions/custom/agentwire-portal.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/sessions/custom/agentwire-tts.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/sessions/custom/agentwire.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/sessions/deer.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/sessions/drone.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/sessions/eagle.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/sessions/fox.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/sessions/hawk.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/sessions/horse.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/sessions/lion.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/sessions/rabbit.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/sessions/robot.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/sessions/tiger.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/icons/sessions/wolf.webp +0 -0
- agentwire_dev-1.47.0/agentwire/static/img/icon-192.png +0 -0
- agentwire_dev-1.47.0/agentwire/static/img/icon-512.png +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/desktop.js +48 -0
- agentwire_dev-1.47.0/agentwire/static/js/push-client.js +146 -0
- agentwire_dev-1.47.0/agentwire/static/js/review-window.js +250 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/sidebar/sessions-section.js +6 -0
- agentwire_dev-1.47.0/agentwire/static/manifest.webmanifest +25 -0
- agentwire_dev-1.47.0/agentwire/static/service-worker.js +60 -0
- agentwire_dev-1.47.0/agentwire/system_cli.py +708 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tasks.py +1 -1
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/templates/base.html +7 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/templates/desktop.html +1 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tts/engines/chatterbox.py +1 -2
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tts/engines/zonos.py +0 -2
- agentwire_dev-1.47.0/agentwire/tts_cli.py +1057 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tunnels.py +14 -4
- agentwire_dev-1.47.0/agentwire/tunnels_cli.py +253 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/usage_limit.py +3 -6
- agentwire_dev-1.47.0/agentwire/utils/event_log.py +102 -0
- agentwire_dev-1.47.0/agentwire/wiki_cli.py +139 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/INDEX.md +1 -0
- agentwire_dev-1.47.0/docs/wiki/internals/parallel-refactor.md +117 -0
- agentwire_dev-1.47.0/docs/wiki/security/pip-audit.md +60 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/sessions/messaging.md +33 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/pyproject.toml +35 -7
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/conftest.py +0 -1
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/integration/test_scheduler_board.py +3 -7
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/integration/test_worktree_cmd.py +2 -3
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_build_agent_command.py +7 -8
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_channels.py +4 -4
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_cli_commands.py +28 -28
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_cli_output.py +0 -4
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_cli_safety.py +8 -7
- agentwire_dev-1.47.0/tests/unit/test_cli_smoke.py +68 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_config.py +1 -1
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_control_plane_protection.py +2 -3
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_damage_control_hooks.py +0 -1
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_devices.py +2 -1
- agentwire_dev-1.47.0/tests/unit/test_diff_cli.py +134 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_doctor_voice.py +0 -2
- agentwire_dev-1.47.0/tests/unit/test_event_log.py +87 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_file_io.py +1 -3
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_handoff_instructions.py +0 -1
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_handoff_renderer.py +0 -1
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_history.py +1 -1
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_hooks_install.py +3 -3
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_idle_handler.py +2 -3
- agentwire_dev-1.47.0/tests/unit/test_inbox.py +526 -0
- agentwire_dev-1.47.0/tests/unit/test_init_command.py +38 -0
- agentwire_dev-1.47.0/tests/unit/test_limits_tick_isolation.py +109 -0
- agentwire_dev-1.47.0/tests/unit/test_locking.py +158 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_mcp_server.py +1 -2
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_mcp_tools_args.py +1 -3
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_msg_cli.py +47 -2
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_portal_api.py +196 -8
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_project_config.py +3 -4
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_prompt_router.py +3 -3
- agentwire_dev-1.47.0/tests/unit/test_push.py +119 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_rebuild_guard.py +5 -4
- agentwire_dev-1.47.0/tests/unit/test_repo_cli.py +115 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_roles.py +2 -5
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_safety_heal.py +18 -4
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_scheduler.py +13 -7
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_scratchpad.py +6 -7
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_security.py +107 -3
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_server_async.py +0 -1
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_server_pure.py +1 -4
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_services.py +2 -3
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_session_ready.py +0 -1
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_skill_install.py +3 -3
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_task_cli.py +1 -1
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_tasks.py +3 -5
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_templating.py +2 -3
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_tts_engine_resolution.py +1 -1
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_tts_local.py +10 -10
- agentwire_dev-1.47.0/tests/unit/test_tunnels_probe.py +73 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_usage_limit.py +1 -1
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_worktree_registry.py +1 -2
- agentwire_dev-1.45.1/.github/workflows/pytest.yml +0 -35
- agentwire_dev-1.45.1/.github/workflows/security.yml +0 -74
- agentwire_dev-1.45.1/CLA.md +0 -54
- agentwire_dev-1.45.1/LICENSE +0 -661
- agentwire_dev-1.45.1/PKG-INFO +0 -1033
- agentwire_dev-1.45.1/SPONSORS.md +0 -52
- agentwire_dev-1.45.1/agentwire/__main__.py +0 -12803
- agentwire_dev-1.45.1/tests/unit/test_inbox.py +0 -284
- agentwire_dev-1.45.1/tests/unit/test_locking.py +0 -17
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/.agents/skills/agentwire-cli/SKILL.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/.agents/skills/agentwire-config/SKILL.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/.agents/skills/agentwire-desktop-ui/SKILL.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/.agents/skills/agentwire-mcp-tools/SKILL.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/.agents/skills/agentwire-pi/SKILL.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/.agents/skills/agentwire-project-config/SKILL.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/.agents/skills/agentwire-scheduler/SKILL.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/.agents/skills/wiki/SKILL.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/.claude/skills/wiki/SKILL.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/.github/FUNDING.yml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/.github/ISSUE_TEMPLATE/question.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/.gitignore +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/AGENTS.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/CODE_OF_CONDUCT.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/Dockerfile.local +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/Dockerfile.runpod +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/RELEASING.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/SECURITY.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/agents/__init__.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/agents/base.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/agents/tmux.py +1 -1
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/cached_status.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/channels/base.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/channels/email.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/channels/quo.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/council/__init__.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/council/cli.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/council/inbox.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/council/view.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/devices.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/doctor_voice.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/handoff/__init__.py +1 -1
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/handoff/git_state.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/handoff/parser.py +1 -1
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/handoff/schema.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/history.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/__init__.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/agentwire-permission.sh +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/damage-control/__init__.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/damage-control/audit_logger.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/damage-control/bash-tool-damage-control.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/damage-control/edit-tool-damage-control.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/damage-control/mcp-tool-damage-control.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/damage-control/read-tool-damage-control.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/damage-control/rules/agentwire.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/damage-control/rules/aws.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/damage-control/rules/cloud-hosting.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/damage-control/rules/containers.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/damage-control/rules/control-plane.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/damage-control/rules/core.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/damage-control/rules/databases.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/damage-control/rules/firebase.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/damage-control/rules/gcp.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/damage-control/rules/git.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/damage-control/rules/gws.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/damage-control/rules/infrastructure.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/damage-control/rules/outbound.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/damage-control/rules/publish.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/damage-control/rules/remote.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/damage-control/write-tool-damage-control.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/idle-handler.sh +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/hooks/queue-processor.sh +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/listen.py +2 -2
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/network.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/pane_manager.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/project_config.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/projects.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/prompts/__init__.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/prompts/init.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/prompts_cli.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/research.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/roles/__init__.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/roles/agentwire.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/roles/anchor.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/roles/chatbot.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/roles/correspondent.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/roles/council-brain.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/roles/council-conscience.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/roles/council-critic.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/roles/council-devils-advocate.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/roles/council-gut.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/roles/council-historian.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/roles/council-member.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/roles/council-orchestrator.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/roles/init.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/roles/notifications.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/roles/orchestrator.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/roles/soul.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/roles/task-runner.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/roles/voice.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/roles/worker.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/roles/worktree-session.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/safety/__init__.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/safety/_core.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/scratchpad.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/services.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/session_ready.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/ssh.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/agentwire-Echo--black.png +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/agentwire-Echo--transparent.png +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/agentwire-Echo.png +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/agentwire-email-banner.png +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/agentwire-splash-logo-layers--agentwire-text.png +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/agentwire-splash-logo-layers--echo-claw-fg.png +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/agentwire-splash-logo-layers--echo.png +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/agentwire-splash-logo-layers--full--transparent-top.png +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/agentwire-splash-logo-layers--full-black.png +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/agentwire-splash-logo-layers--telephone-fg.png +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/agentwire-splash-logo-layers--telephone.png +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/agentwire-splash-logo-layers--transparent-top.png +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/agentwire-splash-logo-layers--transparent.png +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/agentwire-splash-logo-layers--tree.png +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/agentwire-splash-logo-layers.png +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/announcements.json +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/css/mobile.css +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/favicon.png +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/machines/android.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/machines/automaton.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/machines/bot.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/machines/cyborg.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/machines/droid.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/machines/drone.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/machines/guardian.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/machines/mech.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/machines/probe.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/machines/robot.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/machines/sentinel.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/machines/unit.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/projects/blob.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/projects/cloud.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/projects/crystal.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/projects/cyclops.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/projects/flame.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/projects/fuzzy.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/projects/horned.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/projects/moon.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/projects/slime.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/projects/star.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/projects/tentacle.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/projects/winged.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/sessions/bear.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/sessions/cat.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/sessions/crown.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/sessions/custom/agentwire-portal.png +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/sessions/custom/agentwire-tts.png +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/sessions/custom/agentwire.png +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/sessions/deer.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/sessions/drone.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/sessions/eagle.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/sessions/fox.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/sessions/hawk.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/sessions/horse.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/sessions/lion.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/sessions/rabbit.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/sessions/robot.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/sessions/tiger.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/icons/sessions/wolf.jpeg +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/.gitkeep +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/announcement-modal.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/api.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/artifact-window.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/collage.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/command-palette.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/components/icon-picker.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/components/list-card.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/components/type-tag.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/council-window.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/dead-key-suppressor.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/desktop-manager.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/icon-manager.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/mobile.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/notification-prefs.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/notifications-panel.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/safety-shared.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/safety-window.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/scratchpad.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/service-classification.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/session-id.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/session-window.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/sidebar/artifacts-section.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/sidebar/config-section.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/sidebar/council-section.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/sidebar/machines-section.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/sidebar/projects-section.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/sidebar/safety-section.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/sidebar/scheduler-section.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/sidebar/services-section.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/sidebar.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/terminal-font-prefs.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/tile-manager.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/toast.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/token-modal.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/utils/ansi.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/utils/auto-refresh.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/utils/swipe.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/voice/autosend-prefs.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/voice/browser-stt.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/voice/browser-tts.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/voice/jargon.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/voice/prompt.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/static/js/winbox.bundle.min.js +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/stt/__init__.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/stt/base.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/stt/cloud.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/stt/engine.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/stt/local.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/stt/server_backend.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/stt/stt_server.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/templates/__init__.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/templates/email_notification.html +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/templates/handoff/show-the-story.html.j2 +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/templates/handoff/theme.css.j2 +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/templates/mobile.html +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/templates/pair.html +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/templates/tmux.conf +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/templating.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tooldefs/aws.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tooldefs/docker.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tooldefs/gcp.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tooldefs/gh.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tooldefs/git.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tooldefs/gws.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tooldefs/kubectl.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tooldefs/npm.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tooldefs/terraform.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tooldefs/uv.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tts/__init__.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tts/audio.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tts/base.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tts/engines/__init__.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tts/engines/kokoro.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tts/engines/qwen_base.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tts/engines/qwen_custom.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tts/engines/qwen_design.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tts/kokoro_server.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tts/local.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tts/registry.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/tts_server.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/utils/__init__.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/utils/chunker.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/utils/file_io.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/utils/paths.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/utils/speech.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/utils/subprocess.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/validation.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/voice_status.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/voiceclone.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/voices/darren.wav +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/voices/default.wav +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/voices/jessica.wav +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/voices/lisa.wav +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/voices/may.wav +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/wiki.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/wiki_audit.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/worktree.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/agentwire/worktree_registry.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/decisions/obsidian-second-brain.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/logo.png +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/architecture.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/briefing-mode.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/communication/channels.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/communication/hammerspoon.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/communication/handoff.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/concepts.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/council.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/deployment/remote-access.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/deployment/remote-machines.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/glossary.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/integrations/gws-google-workspace-cli.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/internals/damage-control.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/internals/portal.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/internals/shell-escaping.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/internals/troubleshooting.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/internals/window-collage.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/quickstart.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/research/briefing-mode-feasibility.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/research/orchestration-transport-alternatives.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/scheduling/scheduled-workloads.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/security/damage-control-hardening.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/security/remote-access-hardening.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/security/secrets.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/services.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/sessions/claude-code-auto-mode.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/sessions/pi.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/sessions/prompt-routing.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/sessions/window-sizing.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/sessions/worktree-sessions.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/usage-limit-recovery.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/voice/shim-contract.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/voice/stt-cloud.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/voice/stt-self-hosted.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/docs/wiki/voice/tts-self-hosted.md +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/requirements-tts.txt +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/e2e/test_portal_ui.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/fixtures/sample_agentwire.yml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/fixtures/sample_config.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/fixtures/sample_scheduler.yaml +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/integration/test_council_portal.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/integration/test_server_websockets.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_announcements.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_council_cli.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_council_inbox.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_council_state.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_council_view.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_damage_control_bypass.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_damage_control_sync.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_handoff_git_state.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_handoff_parser.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_idle_nag.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_safety_disabled_rules.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_safety_escape_hatch.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_safety_kill_switch.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_scheduler_parsing.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_session_context.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_speech_tags.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_ssh.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_stt_backend.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_stt_cloud.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_stt_engine.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_terminal_resize.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_tmux_template.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_validation.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_voice_status.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_wiki.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_wiki_audit.py +0 -0
- {agentwire_dev-1.45.1 → agentwire_dev-1.47.0}/tests/unit/test_worktree.py +7 -7
|
@@ -9,8 +9,8 @@ Before submitting, please make sure:
|
|
|
9
9
|
4. For bug fixes: include a test that would have caught the bug
|
|
10
10
|
5. For new features: include tests and update docs if needed
|
|
11
11
|
|
|
12
|
-
By submitting this PR, you
|
|
13
|
-
https://
|
|
12
|
+
By submitting this PR, you certify the Developer Certificate of Origin
|
|
13
|
+
(https://developercertificate.org/) — sign off your commits with `git commit -s`.
|
|
14
14
|
-->
|
|
15
15
|
|
|
16
16
|
## Summary
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# Pytest CI gate (#323).
|
|
2
|
+
#
|
|
3
|
+
# 1,191+ test functions exist in the repo; before this workflow none ran in CI,
|
|
4
|
+
# so `main` could (and did, #249) go red unnoticed. This runs the suite on every
|
|
5
|
+
# PR and every push to main and is the whole win: a trustworthy green/red signal.
|
|
6
|
+
#
|
|
7
|
+
# Hermetic by design — the runner has no live tmux session or portal, so tests
|
|
8
|
+
# that spawn a real tmux binary (the WS-connect and speak-fanout PTY paths) are
|
|
9
|
+
# marked `requires_tmux` and deselected here. They still run locally where tmux
|
|
10
|
+
# is on PATH. Per the council guardrail we do NOT chase coverage % or block PRs
|
|
11
|
+
# on flaky/tmux-dependent tests.
|
|
12
|
+
#
|
|
13
|
+
# Coverage is measured and surfaced (term-missing in the log + a table in the
|
|
14
|
+
# run's job summary + an uploaded coverage.xml artifact) but is REPORT-ONLY:
|
|
15
|
+
# there is deliberately no --cov-fail-under, so a low percentage never reds the
|
|
16
|
+
# build. The point is visibility — letting the maintainer spot untested
|
|
17
|
+
# new/changed handlers (#487) — not a threshold gate.
|
|
18
|
+
name: pytest
|
|
19
|
+
|
|
20
|
+
on:
|
|
21
|
+
push:
|
|
22
|
+
branches: [main]
|
|
23
|
+
pull_request:
|
|
24
|
+
|
|
25
|
+
jobs:
|
|
26
|
+
pytest:
|
|
27
|
+
name: pytest (hermetic)
|
|
28
|
+
runs-on: ubuntu-latest
|
|
29
|
+
steps:
|
|
30
|
+
- uses: actions/checkout@v4
|
|
31
|
+
|
|
32
|
+
- name: Install uv
|
|
33
|
+
uses: astral-sh/setup-uv@v5
|
|
34
|
+
with:
|
|
35
|
+
python-version: "3.12"
|
|
36
|
+
|
|
37
|
+
- name: Sync dependencies
|
|
38
|
+
run: uv sync --extra dev
|
|
39
|
+
|
|
40
|
+
- name: Run test suite (tmux-dependent tests deselected) + coverage
|
|
41
|
+
run: >
|
|
42
|
+
uv run --no-sync pytest -q -m "not requires_tmux"
|
|
43
|
+
--cov=agentwire --cov-report=term-missing --cov-report=xml
|
|
44
|
+
|
|
45
|
+
- name: Publish coverage summary (report-only)
|
|
46
|
+
if: always()
|
|
47
|
+
run: |
|
|
48
|
+
{
|
|
49
|
+
echo '## Coverage (report-only — no threshold gate)'
|
|
50
|
+
echo ''
|
|
51
|
+
echo '```'
|
|
52
|
+
uv run --no-sync coverage report 2>/dev/null || echo 'no coverage data'
|
|
53
|
+
echo '```'
|
|
54
|
+
} >> "$GITHUB_STEP_SUMMARY"
|
|
55
|
+
|
|
56
|
+
- name: Upload coverage.xml artifact
|
|
57
|
+
if: always()
|
|
58
|
+
uses: actions/upload-artifact@v4
|
|
59
|
+
with:
|
|
60
|
+
name: coverage-xml
|
|
61
|
+
path: coverage.xml
|
|
62
|
+
if-no-files-found: ignore
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Ruff lint gate (#485).
|
|
2
|
+
#
|
|
3
|
+
# `ruff` was a declared dev dep with full config ([tool.ruff.lint]
|
|
4
|
+
# select = E,F,I,N,W in pyproject.toml) but no workflow ever invoked it, so
|
|
5
|
+
# lint regressions landed on main unnoticed — including a guaranteed
|
|
6
|
+
# NameError crash in `agentwire hooks status` that sat for ~5 months because
|
|
7
|
+
# only a pyflakes-class gate catches an undefined name in a code path with no
|
|
8
|
+
# test coverage. This runs ruff on every PR and every push to main and fails
|
|
9
|
+
# the build on any lint error in the configured set.
|
|
10
|
+
name: ruff
|
|
11
|
+
|
|
12
|
+
on:
|
|
13
|
+
push:
|
|
14
|
+
branches: [main]
|
|
15
|
+
pull_request:
|
|
16
|
+
|
|
17
|
+
jobs:
|
|
18
|
+
ruff:
|
|
19
|
+
name: ruff (lint)
|
|
20
|
+
runs-on: ubuntu-latest
|
|
21
|
+
steps:
|
|
22
|
+
- uses: actions/checkout@v4
|
|
23
|
+
|
|
24
|
+
- name: Install uv
|
|
25
|
+
uses: astral-sh/setup-uv@v5
|
|
26
|
+
with:
|
|
27
|
+
python-version: "3.12"
|
|
28
|
+
|
|
29
|
+
- name: Sync dependencies
|
|
30
|
+
run: uv sync --extra dev
|
|
31
|
+
|
|
32
|
+
- name: Run ruff (configured set in pyproject.toml)
|
|
33
|
+
run: uv run --no-sync ruff check agentwire/ tests/
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
# Security CI for the damage-control matcher.
|
|
2
|
+
#
|
|
3
|
+
# Three independent signals:
|
|
4
|
+
# 1. bypass-corpus — the load-bearing gate. Asserts the known evasion vectors
|
|
5
|
+
# (quoting/escaping, $VAR, substitution, tilde/$HOME secret
|
|
6
|
+
# reads, non-rm deletion) stay BLOCK/ASK and a corpus of
|
|
7
|
+
# safe everyday commands keeps PASSing. Merges gate on this.
|
|
8
|
+
# 2. bandit — static scan tuned to a meaningful green gate. Intentional
|
|
9
|
+
# `shell=True` / localhost `verify=False` sites are skipped in
|
|
10
|
+
# pyproject [tool.bandit]; the step fails only on NEW
|
|
11
|
+
# high-severity high-confidence findings.
|
|
12
|
+
# 3. pip-audit — known-vuln scan over the resolved dependency set, on PRs
|
|
13
|
+
# and a weekly cron.
|
|
14
|
+
name: security
|
|
15
|
+
|
|
16
|
+
on:
|
|
17
|
+
push:
|
|
18
|
+
branches: [main]
|
|
19
|
+
pull_request:
|
|
20
|
+
schedule:
|
|
21
|
+
- cron: "0 7 * * 1" # Mondays 07:00 UTC
|
|
22
|
+
|
|
23
|
+
jobs:
|
|
24
|
+
bypass-corpus:
|
|
25
|
+
name: damage-control bypass corpus (merge gate)
|
|
26
|
+
runs-on: ubuntu-latest
|
|
27
|
+
steps:
|
|
28
|
+
- uses: actions/checkout@v4
|
|
29
|
+
- name: Install uv
|
|
30
|
+
uses: astral-sh/setup-uv@v5
|
|
31
|
+
with:
|
|
32
|
+
python-version: "3.12"
|
|
33
|
+
- name: Sync dependencies
|
|
34
|
+
run: uv sync --extra dev
|
|
35
|
+
- name: Hooks are in sync with _core.py
|
|
36
|
+
run: uv run --no-sync python scripts/regen_damage_control_hooks.py --check
|
|
37
|
+
- name: Run bypass + sync + control-plane corpus
|
|
38
|
+
run: >
|
|
39
|
+
uv run --no-sync pytest -q
|
|
40
|
+
tests/unit/test_damage_control_bypass.py
|
|
41
|
+
tests/unit/test_damage_control_sync.py
|
|
42
|
+
tests/unit/test_control_plane_protection.py
|
|
43
|
+
|
|
44
|
+
bandit:
|
|
45
|
+
name: bandit
|
|
46
|
+
runs-on: ubuntu-latest
|
|
47
|
+
steps:
|
|
48
|
+
- uses: actions/checkout@v4
|
|
49
|
+
- name: Install uv
|
|
50
|
+
uses: astral-sh/setup-uv@v5
|
|
51
|
+
with:
|
|
52
|
+
python-version: "3.12"
|
|
53
|
+
# Meaningful green gate: tuned config (pyproject [tool.bandit]) skips the
|
|
54
|
+
# intentional-by-design test-IDs (subprocess/shell, localhost verify=False,
|
|
55
|
+
# asserts), and we fail only on high-severity high-confidence findings.
|
|
56
|
+
# Green on the clean tree today; red only on NEW genuinely-dangerous code.
|
|
57
|
+
- name: Run bandit
|
|
58
|
+
run: uvx bandit -c pyproject.toml -r agentwire --severity-level high --confidence-level high
|
|
59
|
+
|
|
60
|
+
pip-audit:
|
|
61
|
+
name: pip-audit (advisory)
|
|
62
|
+
runs-on: ubuntu-latest
|
|
63
|
+
# Advisory, not a merge gate: hard-blocking every PR on transitive CVEs is
|
|
64
|
+
# noise. Keep it running on PRs + the weekly cron for visibility; the
|
|
65
|
+
# damage-control bypass corpus is the hard merge gate. Direct portal-facing
|
|
66
|
+
# deps are bumped explicitly in pyproject; transitive fixes land via lock
|
|
67
|
+
# bumps. See docs/wiki/security/pip-audit.md for the residual-CVE rationale.
|
|
68
|
+
continue-on-error: true
|
|
69
|
+
steps:
|
|
70
|
+
- uses: actions/checkout@v4
|
|
71
|
+
- name: Install uv
|
|
72
|
+
uses: astral-sh/setup-uv@v5
|
|
73
|
+
with:
|
|
74
|
+
python-version: "3.12"
|
|
75
|
+
# PR/push audit is scoped to RUNTIME deps only (--no-dev, no optional
|
|
76
|
+
# extras) so the signal tracks what the default install actually ships.
|
|
77
|
+
# The heavy torch/onnxruntime+gradio chain lives behind the tts/stt
|
|
78
|
+
# extras and is covered by the full audit on the weekly cron below.
|
|
79
|
+
- name: Export runtime (default) dependencies
|
|
80
|
+
run: uv export --no-emit-project --no-dev --format requirements-txt -o requirements.txt
|
|
81
|
+
# Residual starlette CVEs are un-bumpable: starlette is transitive via mcp
|
|
82
|
+
# and the fixes require starlette >=1.0, but the tts extra (gradio ->
|
|
83
|
+
# chatterbox-tts) caps starlette <1.0 in the universal resolution. agentwire
|
|
84
|
+
# speaks MCP over stdio and serves the portal with aiohttp, so starlette's
|
|
85
|
+
# HTTP request-handling CVEs are not on a reachable path. Documented +
|
|
86
|
+
# ignored here so the advisory signal stays meaningful; revisit when mcp /
|
|
87
|
+
# chatterbox-tts relax the ceiling. See docs/wiki/security/pip-audit.md.
|
|
88
|
+
- name: Audit runtime dependencies
|
|
89
|
+
run: >
|
|
90
|
+
uvx pip-audit -r requirements.txt
|
|
91
|
+
--ignore-vuln PYSEC-2026-161
|
|
92
|
+
--ignore-vuln CVE-2026-48818
|
|
93
|
+
--ignore-vuln CVE-2026-48817
|
|
94
|
+
--ignore-vuln CVE-2026-54283
|
|
95
|
+
--ignore-vuln CVE-2026-54282
|
|
96
|
+
# Full audit including optional extras (tts/stt: torch, onnxruntime,
|
|
97
|
+
# gradio, ...). Weekly only and never ignore-filtered — surfaces the full
|
|
98
|
+
# backlog for review without blocking or spamming every PR.
|
|
99
|
+
- name: Export all dependencies (incl. optional extras)
|
|
100
|
+
if: github.event_name == 'schedule'
|
|
101
|
+
run: uv export --no-emit-project --all-extras --format requirements-txt -o requirements-all.txt
|
|
102
|
+
- name: Full audit (weekly cron, optional extras)
|
|
103
|
+
if: github.event_name == 'schedule'
|
|
104
|
+
run: uvx pip-audit -r requirements-all.txt
|
|
@@ -12,13 +12,19 @@ on:
|
|
|
12
12
|
branches: [main]
|
|
13
13
|
paths:
|
|
14
14
|
- "pyproject.toml"
|
|
15
|
+
- "uv.lock"
|
|
15
16
|
- "agentwire/tts/**"
|
|
16
17
|
- ".github/workflows/tts-smoke.yml"
|
|
17
18
|
pull_request:
|
|
18
19
|
paths:
|
|
19
20
|
- "pyproject.toml"
|
|
21
|
+
- "uv.lock"
|
|
20
22
|
- "agentwire/tts/**"
|
|
21
23
|
- ".github/workflows/tts-smoke.yml"
|
|
24
|
+
# Transitive wheel/onnxruntime changes can break Intel-mac resolution without
|
|
25
|
+
# touching any path above; a weekly cron catches that proactively (#487).
|
|
26
|
+
schedule:
|
|
27
|
+
- cron: "0 7 * * 2" # Tuesdays 07:00 UTC
|
|
22
28
|
|
|
23
29
|
jobs:
|
|
24
30
|
torchless-import:
|
|
@@ -2,9 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
Thank you for your interest in contributing to AgentWire!
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Developer Certificate of Origin
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
AgentWire is licensed under the [Apache License 2.0](LICENSE), and we use the [Developer Certificate of Origin](https://developercertificate.org/) (DCO) instead of a CLA — there is nothing to sign. You simply add a `Signed-off-by` line to each commit, certifying you wrote the patch (or otherwise have the right to submit it under Apache-2.0):
|
|
8
|
+
|
|
9
|
+
Signed-off-by: Jane Developer <jane@example.com>
|
|
10
|
+
|
|
11
|
+
Add it automatically with `git commit -s` (use your real name and an email that matches your commit author). That's the whole process.
|
|
8
12
|
|
|
9
13
|
## Development Setup
|
|
10
14
|
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2026 dotdev
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|