agentwire-dev 1.45.0__tar.gz → 1.46.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.
Files changed (483) hide show
  1. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/.github/PULL_REQUEST_TEMPLATE.md +2 -2
  2. agentwire_dev-1.46.0/.github/workflows/pytest.yml +62 -0
  3. agentwire_dev-1.46.0/.github/workflows/ruff.yml +33 -0
  4. agentwire_dev-1.46.0/.github/workflows/security.yml +104 -0
  5. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/.github/workflows/tts-smoke.yml +6 -0
  6. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/CONTRIBUTING.md +6 -2
  7. agentwire_dev-1.46.0/LICENSE +201 -0
  8. agentwire_dev-1.46.0/PKG-INFO +599 -0
  9. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/README.md +33 -9
  10. agentwire_dev-1.46.0/SPONSORS.md +44 -0
  11. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/__init__.py +1 -1
  12. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/__main__.py +169 -118
  13. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/channels/__init__.py +6 -4
  14. agentwire_dev-1.46.0/agentwire/channels/push.py +244 -0
  15. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/cli_safety.py +3 -1
  16. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/completion.py +1 -1
  17. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/config.py +5 -0
  18. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/council/state.py +2 -1
  19. agentwire_dev-1.46.0/agentwire/diff_cli.py +236 -0
  20. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/fetch.py +0 -1
  21. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/handoff/instructions.py +0 -1
  22. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/handoff/renderer.py +0 -1
  23. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/inbox.py +28 -7
  24. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/limits_cli.py +52 -4
  25. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/locking.py +15 -14
  26. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/mcp_server.py +38 -0
  27. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/onboarding.py +8 -5
  28. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/prompt_router.py +7 -6
  29. agentwire_dev-1.46.0/agentwire/push_store.py +199 -0
  30. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/scheduler.py +4 -8
  31. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/security.py +116 -4
  32. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/server.py +313 -23
  33. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/session_context.py +2 -7
  34. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/css/desktop.css +193 -0
  35. agentwire_dev-1.46.0/agentwire/static/icons/machines/android.webp +0 -0
  36. agentwire_dev-1.46.0/agentwire/static/icons/machines/automaton.webp +0 -0
  37. agentwire_dev-1.46.0/agentwire/static/icons/machines/bot.webp +0 -0
  38. agentwire_dev-1.46.0/agentwire/static/icons/machines/cyborg.webp +0 -0
  39. agentwire_dev-1.46.0/agentwire/static/icons/machines/droid.webp +0 -0
  40. agentwire_dev-1.46.0/agentwire/static/icons/machines/drone.webp +0 -0
  41. agentwire_dev-1.46.0/agentwire/static/icons/machines/guardian.webp +0 -0
  42. agentwire_dev-1.46.0/agentwire/static/icons/machines/mech.webp +0 -0
  43. agentwire_dev-1.46.0/agentwire/static/icons/machines/probe.webp +0 -0
  44. agentwire_dev-1.46.0/agentwire/static/icons/machines/robot.webp +0 -0
  45. agentwire_dev-1.46.0/agentwire/static/icons/machines/sentinel.webp +0 -0
  46. agentwire_dev-1.46.0/agentwire/static/icons/machines/unit.webp +0 -0
  47. agentwire_dev-1.46.0/agentwire/static/icons/projects/blob.webp +0 -0
  48. agentwire_dev-1.46.0/agentwire/static/icons/projects/cloud.webp +0 -0
  49. agentwire_dev-1.46.0/agentwire/static/icons/projects/crystal.webp +0 -0
  50. agentwire_dev-1.46.0/agentwire/static/icons/projects/cyclops.webp +0 -0
  51. agentwire_dev-1.46.0/agentwire/static/icons/projects/flame.webp +0 -0
  52. agentwire_dev-1.46.0/agentwire/static/icons/projects/fuzzy.webp +0 -0
  53. agentwire_dev-1.46.0/agentwire/static/icons/projects/horned.webp +0 -0
  54. agentwire_dev-1.46.0/agentwire/static/icons/projects/moon.webp +0 -0
  55. agentwire_dev-1.46.0/agentwire/static/icons/projects/slime.webp +0 -0
  56. agentwire_dev-1.46.0/agentwire/static/icons/projects/star.webp +0 -0
  57. agentwire_dev-1.46.0/agentwire/static/icons/projects/tentacle.webp +0 -0
  58. agentwire_dev-1.46.0/agentwire/static/icons/projects/winged.webp +0 -0
  59. agentwire_dev-1.46.0/agentwire/static/icons/sessions/bear.webp +0 -0
  60. agentwire_dev-1.46.0/agentwire/static/icons/sessions/cat.webp +0 -0
  61. agentwire_dev-1.46.0/agentwire/static/icons/sessions/crown.webp +0 -0
  62. agentwire_dev-1.46.0/agentwire/static/icons/sessions/custom/agentwire-portal.webp +0 -0
  63. agentwire_dev-1.46.0/agentwire/static/icons/sessions/custom/agentwire-tts.webp +0 -0
  64. agentwire_dev-1.46.0/agentwire/static/icons/sessions/custom/agentwire.webp +0 -0
  65. agentwire_dev-1.46.0/agentwire/static/icons/sessions/deer.webp +0 -0
  66. agentwire_dev-1.46.0/agentwire/static/icons/sessions/drone.webp +0 -0
  67. agentwire_dev-1.46.0/agentwire/static/icons/sessions/eagle.webp +0 -0
  68. agentwire_dev-1.46.0/agentwire/static/icons/sessions/fox.webp +0 -0
  69. agentwire_dev-1.46.0/agentwire/static/icons/sessions/hawk.webp +0 -0
  70. agentwire_dev-1.46.0/agentwire/static/icons/sessions/horse.webp +0 -0
  71. agentwire_dev-1.46.0/agentwire/static/icons/sessions/lion.webp +0 -0
  72. agentwire_dev-1.46.0/agentwire/static/icons/sessions/rabbit.webp +0 -0
  73. agentwire_dev-1.46.0/agentwire/static/icons/sessions/robot.webp +0 -0
  74. agentwire_dev-1.46.0/agentwire/static/icons/sessions/tiger.webp +0 -0
  75. agentwire_dev-1.46.0/agentwire/static/icons/sessions/wolf.webp +0 -0
  76. agentwire_dev-1.46.0/agentwire/static/img/icon-192.png +0 -0
  77. agentwire_dev-1.46.0/agentwire/static/img/icon-512.png +0 -0
  78. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/desktop.js +48 -0
  79. agentwire_dev-1.46.0/agentwire/static/js/push-client.js +146 -0
  80. agentwire_dev-1.46.0/agentwire/static/js/review-window.js +250 -0
  81. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/sidebar/sessions-section.js +6 -0
  82. agentwire_dev-1.46.0/agentwire/static/manifest.webmanifest +25 -0
  83. agentwire_dev-1.46.0/agentwire/static/service-worker.js +60 -0
  84. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tasks.py +1 -1
  85. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/templates/base.html +7 -0
  86. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/templates/desktop.html +1 -0
  87. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tts/engines/chatterbox.py +1 -2
  88. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tts/engines/zonos.py +0 -2
  89. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tunnels.py +14 -4
  90. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/usage_limit.py +3 -6
  91. agentwire_dev-1.46.0/agentwire/utils/event_log.py +102 -0
  92. agentwire_dev-1.46.0/docs/wiki/security/pip-audit.md +60 -0
  93. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/pyproject.toml +35 -7
  94. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/conftest.py +0 -1
  95. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/integration/test_scheduler_board.py +3 -7
  96. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/integration/test_worktree_cmd.py +1 -2
  97. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_build_agent_command.py +0 -1
  98. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_channels.py +4 -4
  99. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_cli_commands.py +3 -4
  100. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_cli_output.py +0 -4
  101. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_cli_safety.py +8 -7
  102. agentwire_dev-1.46.0/tests/unit/test_cli_smoke.py +68 -0
  103. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_config.py +1 -1
  104. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_control_plane_protection.py +2 -3
  105. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_damage_control_hooks.py +0 -1
  106. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_devices.py +2 -1
  107. agentwire_dev-1.46.0/tests/unit/test_diff_cli.py +134 -0
  108. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_doctor_voice.py +0 -2
  109. agentwire_dev-1.46.0/tests/unit/test_event_log.py +87 -0
  110. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_file_io.py +1 -3
  111. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_handoff_instructions.py +0 -1
  112. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_handoff_renderer.py +0 -1
  113. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_history.py +1 -1
  114. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_idle_handler.py +2 -3
  115. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_inbox.py +81 -0
  116. agentwire_dev-1.46.0/tests/unit/test_init_command.py +38 -0
  117. agentwire_dev-1.46.0/tests/unit/test_limits_tick_isolation.py +109 -0
  118. agentwire_dev-1.46.0/tests/unit/test_locking.py +158 -0
  119. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_mcp_server.py +1 -2
  120. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_mcp_tools_args.py +1 -3
  121. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_msg_cli.py +3 -1
  122. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_portal_api.py +198 -8
  123. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_project_config.py +3 -4
  124. agentwire_dev-1.46.0/tests/unit/test_push.py +119 -0
  125. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_roles.py +2 -5
  126. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_scheduler.py +13 -7
  127. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_scratchpad.py +0 -1
  128. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_security.py +107 -3
  129. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_server_async.py +0 -1
  130. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_server_pure.py +1 -4
  131. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_services.py +1 -2
  132. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_session_ready.py +0 -1
  133. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_tasks.py +3 -5
  134. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_templating.py +2 -3
  135. agentwire_dev-1.46.0/tests/unit/test_tunnels_probe.py +73 -0
  136. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_usage_limit.py +1 -1
  137. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_worktree_registry.py +1 -2
  138. agentwire_dev-1.45.0/.github/workflows/pytest.yml +0 -35
  139. agentwire_dev-1.45.0/.github/workflows/security.yml +0 -74
  140. agentwire_dev-1.45.0/CLA.md +0 -54
  141. agentwire_dev-1.45.0/LICENSE +0 -661
  142. agentwire_dev-1.45.0/PKG-INFO +0 -1033
  143. agentwire_dev-1.45.0/SPONSORS.md +0 -52
  144. agentwire_dev-1.45.0/tests/unit/test_locking.py +0 -17
  145. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/.agents/skills/agentwire-cli/SKILL.md +0 -0
  146. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/.agents/skills/agentwire-config/SKILL.md +0 -0
  147. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/.agents/skills/agentwire-desktop-ui/SKILL.md +0 -0
  148. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/.agents/skills/agentwire-mcp-tools/SKILL.md +0 -0
  149. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/.agents/skills/agentwire-pi/SKILL.md +0 -0
  150. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/.agents/skills/agentwire-project-config/SKILL.md +0 -0
  151. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/.agents/skills/agentwire-scheduler/SKILL.md +0 -0
  152. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/.agents/skills/wiki/SKILL.md +0 -0
  153. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/.claude/skills/wiki/SKILL.md +0 -0
  154. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/.github/FUNDING.yml +0 -0
  155. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  156. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  157. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/.github/ISSUE_TEMPLATE/question.md +0 -0
  158. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/.gitignore +0 -0
  159. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/AGENTS.md +0 -0
  160. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/CODE_OF_CONDUCT.md +0 -0
  161. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/Dockerfile.local +0 -0
  162. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/Dockerfile.runpod +0 -0
  163. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/RELEASING.md +0 -0
  164. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/SECURITY.md +0 -0
  165. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/agents/__init__.py +0 -0
  166. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/agents/base.py +0 -0
  167. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/agents/tmux.py +1 -1
  168. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/cached_status.py +0 -0
  169. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/channels/base.py +0 -0
  170. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/channels/email.py +0 -0
  171. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/channels/quo.py +0 -0
  172. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/council/__init__.py +0 -0
  173. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/council/cli.py +0 -0
  174. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/council/inbox.py +0 -0
  175. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/council/view.py +0 -0
  176. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/devices.py +0 -0
  177. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/doctor_voice.py +0 -0
  178. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/handoff/__init__.py +1 -1
  179. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/handoff/git_state.py +0 -0
  180. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/handoff/parser.py +1 -1
  181. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/handoff/schema.py +0 -0
  182. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/history.py +0 -0
  183. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/__init__.py +0 -0
  184. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/agentwire-permission.sh +0 -0
  185. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/damage-control/__init__.py +0 -0
  186. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/damage-control/audit_logger.py +0 -0
  187. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/damage-control/bash-tool-damage-control.py +0 -0
  188. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/damage-control/edit-tool-damage-control.py +0 -0
  189. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/damage-control/mcp-tool-damage-control.py +0 -0
  190. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/damage-control/read-tool-damage-control.py +0 -0
  191. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/damage-control/rules/agentwire.yaml +0 -0
  192. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/damage-control/rules/aws.yaml +0 -0
  193. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/damage-control/rules/cloud-hosting.yaml +0 -0
  194. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/damage-control/rules/containers.yaml +0 -0
  195. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/damage-control/rules/control-plane.yaml +0 -0
  196. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/damage-control/rules/core.yaml +0 -0
  197. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/damage-control/rules/databases.yaml +0 -0
  198. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/damage-control/rules/firebase.yaml +0 -0
  199. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/damage-control/rules/gcp.yaml +0 -0
  200. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/damage-control/rules/git.yaml +0 -0
  201. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/damage-control/rules/gws.yaml +0 -0
  202. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/damage-control/rules/infrastructure.yaml +0 -0
  203. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/damage-control/rules/outbound.yaml +0 -0
  204. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/damage-control/rules/publish.yaml +0 -0
  205. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/damage-control/rules/remote.yaml +0 -0
  206. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/damage-control/write-tool-damage-control.py +0 -0
  207. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/idle-handler.sh +0 -0
  208. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/hooks/queue-processor.sh +0 -0
  209. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/listen.py +2 -2
  210. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/msg_cli.py +0 -0
  211. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/network.py +0 -0
  212. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/pane_manager.py +0 -0
  213. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/project_config.py +0 -0
  214. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/projects.py +0 -0
  215. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/prompts/__init__.py +0 -0
  216. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/prompts/init.md +0 -0
  217. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/prompts_cli.py +0 -0
  218. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/research.py +0 -0
  219. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/roles/__init__.py +0 -0
  220. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/roles/agentwire.md +0 -0
  221. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/roles/anchor.md +0 -0
  222. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/roles/chatbot.md +0 -0
  223. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/roles/correspondent.md +0 -0
  224. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/roles/council-brain.md +0 -0
  225. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/roles/council-conscience.md +0 -0
  226. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/roles/council-critic.md +0 -0
  227. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/roles/council-devils-advocate.md +0 -0
  228. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/roles/council-gut.md +0 -0
  229. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/roles/council-historian.md +0 -0
  230. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/roles/council-member.md +0 -0
  231. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/roles/council-orchestrator.md +0 -0
  232. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/roles/init.md +0 -0
  233. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/roles/notifications.md +0 -0
  234. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/roles/orchestrator.md +0 -0
  235. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/roles/soul.md +0 -0
  236. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/roles/task-runner.md +0 -0
  237. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/roles/voice.md +0 -0
  238. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/roles/worker.md +0 -0
  239. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/roles/worktree-session.md +0 -0
  240. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/safety/__init__.py +0 -0
  241. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/safety/_core.py +0 -0
  242. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/scratchpad.py +0 -0
  243. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/services.py +0 -0
  244. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/session_ready.py +0 -0
  245. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/ssh.py +0 -0
  246. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/agentwire-Echo--black.png +0 -0
  247. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/agentwire-Echo--transparent.png +0 -0
  248. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/agentwire-Echo.png +0 -0
  249. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/agentwire-email-banner.png +0 -0
  250. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/agentwire-splash-logo-layers--agentwire-text.png +0 -0
  251. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/agentwire-splash-logo-layers--echo-claw-fg.png +0 -0
  252. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/agentwire-splash-logo-layers--echo.png +0 -0
  253. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/agentwire-splash-logo-layers--full--transparent-top.png +0 -0
  254. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/agentwire-splash-logo-layers--full-black.png +0 -0
  255. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/agentwire-splash-logo-layers--telephone-fg.png +0 -0
  256. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/agentwire-splash-logo-layers--telephone.png +0 -0
  257. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/agentwire-splash-logo-layers--transparent-top.png +0 -0
  258. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/agentwire-splash-logo-layers--transparent.png +0 -0
  259. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/agentwire-splash-logo-layers--tree.png +0 -0
  260. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/agentwire-splash-logo-layers.png +0 -0
  261. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/announcements.json +0 -0
  262. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/css/mobile.css +0 -0
  263. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/favicon.png +0 -0
  264. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/machines/android.jpeg +0 -0
  265. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/machines/automaton.jpeg +0 -0
  266. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/machines/bot.jpeg +0 -0
  267. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/machines/cyborg.jpeg +0 -0
  268. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/machines/droid.jpeg +0 -0
  269. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/machines/drone.jpeg +0 -0
  270. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/machines/guardian.jpeg +0 -0
  271. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/machines/mech.jpeg +0 -0
  272. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/machines/probe.jpeg +0 -0
  273. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/machines/robot.jpeg +0 -0
  274. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/machines/sentinel.jpeg +0 -0
  275. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/machines/unit.jpeg +0 -0
  276. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/projects/blob.jpeg +0 -0
  277. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/projects/cloud.jpeg +0 -0
  278. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/projects/crystal.jpeg +0 -0
  279. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/projects/cyclops.jpeg +0 -0
  280. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/projects/flame.jpeg +0 -0
  281. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/projects/fuzzy.jpeg +0 -0
  282. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/projects/horned.jpeg +0 -0
  283. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/projects/moon.jpeg +0 -0
  284. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/projects/slime.jpeg +0 -0
  285. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/projects/star.jpeg +0 -0
  286. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/projects/tentacle.jpeg +0 -0
  287. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/projects/winged.jpeg +0 -0
  288. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/sessions/bear.jpeg +0 -0
  289. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/sessions/cat.jpeg +0 -0
  290. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/sessions/crown.jpeg +0 -0
  291. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/sessions/custom/agentwire-portal.png +0 -0
  292. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/sessions/custom/agentwire-tts.png +0 -0
  293. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/sessions/custom/agentwire.png +0 -0
  294. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/sessions/deer.jpeg +0 -0
  295. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/sessions/drone.jpeg +0 -0
  296. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/sessions/eagle.jpeg +0 -0
  297. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/sessions/fox.jpeg +0 -0
  298. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/sessions/hawk.jpeg +0 -0
  299. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/sessions/horse.jpeg +0 -0
  300. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/sessions/lion.jpeg +0 -0
  301. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/sessions/rabbit.jpeg +0 -0
  302. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/sessions/robot.jpeg +0 -0
  303. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/sessions/tiger.jpeg +0 -0
  304. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/icons/sessions/wolf.jpeg +0 -0
  305. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/.gitkeep +0 -0
  306. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/announcement-modal.js +0 -0
  307. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/api.js +0 -0
  308. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/artifact-window.js +0 -0
  309. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/collage.js +0 -0
  310. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/command-palette.js +0 -0
  311. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/components/icon-picker.js +0 -0
  312. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/components/list-card.js +0 -0
  313. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/components/type-tag.js +0 -0
  314. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/council-window.js +0 -0
  315. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/dead-key-suppressor.js +0 -0
  316. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/desktop-manager.js +0 -0
  317. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/icon-manager.js +0 -0
  318. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/mobile.js +0 -0
  319. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/notification-prefs.js +0 -0
  320. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/notifications-panel.js +0 -0
  321. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/safety-shared.js +0 -0
  322. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/safety-window.js +0 -0
  323. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/scratchpad.js +0 -0
  324. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/service-classification.js +0 -0
  325. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/session-id.js +0 -0
  326. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/session-window.js +0 -0
  327. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/sidebar/artifacts-section.js +0 -0
  328. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/sidebar/config-section.js +0 -0
  329. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/sidebar/council-section.js +0 -0
  330. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/sidebar/machines-section.js +0 -0
  331. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/sidebar/projects-section.js +0 -0
  332. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/sidebar/safety-section.js +0 -0
  333. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/sidebar/scheduler-section.js +0 -0
  334. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/sidebar/services-section.js +0 -0
  335. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/sidebar.js +0 -0
  336. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/terminal-font-prefs.js +0 -0
  337. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/tile-manager.js +0 -0
  338. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/toast.js +0 -0
  339. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/token-modal.js +0 -0
  340. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/utils/ansi.js +0 -0
  341. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/utils/auto-refresh.js +0 -0
  342. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/utils/swipe.js +0 -0
  343. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/voice/autosend-prefs.js +0 -0
  344. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/voice/browser-stt.js +0 -0
  345. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/voice/browser-tts.js +0 -0
  346. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/voice/jargon.js +0 -0
  347. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/voice/prompt.js +0 -0
  348. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/static/js/winbox.bundle.min.js +0 -0
  349. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/stt/__init__.py +0 -0
  350. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/stt/base.py +0 -0
  351. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/stt/cloud.py +0 -0
  352. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/stt/engine.py +0 -0
  353. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/stt/local.py +0 -0
  354. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/stt/server_backend.py +0 -0
  355. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/stt/stt_server.py +0 -0
  356. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/templates/__init__.py +0 -0
  357. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/templates/email_notification.html +0 -0
  358. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/templates/handoff/show-the-story.html.j2 +0 -0
  359. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/templates/handoff/theme.css.j2 +0 -0
  360. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/templates/mobile.html +0 -0
  361. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/templates/pair.html +0 -0
  362. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/templates/tmux.conf +0 -0
  363. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/templating.py +0 -0
  364. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tooldefs/aws.yaml +0 -0
  365. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tooldefs/docker.yaml +0 -0
  366. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tooldefs/gcp.yaml +0 -0
  367. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tooldefs/gh.yaml +0 -0
  368. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tooldefs/git.yaml +0 -0
  369. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tooldefs/gws.yaml +0 -0
  370. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tooldefs/kubectl.yaml +0 -0
  371. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tooldefs/npm.yaml +0 -0
  372. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tooldefs/terraform.yaml +0 -0
  373. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tooldefs/uv.yaml +0 -0
  374. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tts/__init__.py +0 -0
  375. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tts/audio.py +0 -0
  376. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tts/base.py +0 -0
  377. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tts/engines/__init__.py +0 -0
  378. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tts/engines/kokoro.py +0 -0
  379. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tts/engines/qwen_base.py +0 -0
  380. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tts/engines/qwen_custom.py +0 -0
  381. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tts/engines/qwen_design.py +0 -0
  382. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tts/kokoro_server.py +0 -0
  383. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tts/local.py +0 -0
  384. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tts/registry.py +0 -0
  385. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/tts_server.py +0 -0
  386. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/utils/__init__.py +0 -0
  387. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/utils/chunker.py +0 -0
  388. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/utils/file_io.py +0 -0
  389. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/utils/paths.py +0 -0
  390. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/utils/speech.py +0 -0
  391. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/utils/subprocess.py +0 -0
  392. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/validation.py +0 -0
  393. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/voice_status.py +0 -0
  394. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/voiceclone.py +0 -0
  395. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/voices/darren.wav +0 -0
  396. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/voices/default.wav +0 -0
  397. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/voices/jessica.wav +0 -0
  398. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/voices/lisa.wav +0 -0
  399. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/voices/may.wav +0 -0
  400. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/wiki.py +0 -0
  401. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/wiki_audit.py +0 -0
  402. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/worktree.py +0 -0
  403. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/agentwire/worktree_registry.py +0 -0
  404. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/decisions/obsidian-second-brain.md +0 -0
  405. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/logo.png +0 -0
  406. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/INDEX.md +0 -0
  407. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/architecture.md +0 -0
  408. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/briefing-mode.md +0 -0
  409. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/communication/channels.md +0 -0
  410. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/communication/hammerspoon.md +0 -0
  411. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/communication/handoff.md +0 -0
  412. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/concepts.md +0 -0
  413. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/council.md +0 -0
  414. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/deployment/remote-access.md +0 -0
  415. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/deployment/remote-machines.md +0 -0
  416. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/glossary.md +0 -0
  417. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/integrations/gws-google-workspace-cli.md +0 -0
  418. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/internals/damage-control.md +0 -0
  419. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/internals/portal.md +0 -0
  420. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/internals/shell-escaping.md +0 -0
  421. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/internals/troubleshooting.md +0 -0
  422. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/internals/window-collage.md +0 -0
  423. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/quickstart.md +0 -0
  424. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/research/briefing-mode-feasibility.md +0 -0
  425. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/research/orchestration-transport-alternatives.md +0 -0
  426. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/scheduling/scheduled-workloads.md +0 -0
  427. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/security/damage-control-hardening.md +0 -0
  428. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/security/remote-access-hardening.md +0 -0
  429. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/security/secrets.md +0 -0
  430. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/services.md +0 -0
  431. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/sessions/claude-code-auto-mode.md +0 -0
  432. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/sessions/messaging.md +0 -0
  433. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/sessions/pi.md +0 -0
  434. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/sessions/prompt-routing.md +0 -0
  435. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/sessions/window-sizing.md +0 -0
  436. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/sessions/worktree-sessions.md +0 -0
  437. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/usage-limit-recovery.md +0 -0
  438. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/voice/shim-contract.md +0 -0
  439. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/voice/stt-cloud.md +0 -0
  440. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/voice/stt-self-hosted.md +0 -0
  441. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/docs/wiki/voice/tts-self-hosted.md +0 -0
  442. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/requirements-tts.txt +0 -0
  443. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/e2e/test_portal_ui.py +0 -0
  444. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/fixtures/sample_agentwire.yml +0 -0
  445. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/fixtures/sample_config.yaml +0 -0
  446. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/fixtures/sample_scheduler.yaml +0 -0
  447. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/integration/test_council_portal.py +0 -0
  448. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/integration/test_server_websockets.py +0 -0
  449. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_announcements.py +0 -0
  450. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_council_cli.py +0 -0
  451. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_council_inbox.py +0 -0
  452. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_council_state.py +0 -0
  453. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_council_view.py +0 -0
  454. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_damage_control_bypass.py +0 -0
  455. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_damage_control_sync.py +0 -0
  456. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_handoff_git_state.py +0 -0
  457. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_handoff_parser.py +0 -0
  458. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_hooks_install.py +0 -0
  459. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_idle_nag.py +0 -0
  460. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_prompt_router.py +0 -0
  461. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_rebuild_guard.py +0 -0
  462. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_safety_disabled_rules.py +0 -0
  463. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_safety_escape_hatch.py +0 -0
  464. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_safety_heal.py +0 -0
  465. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_safety_kill_switch.py +0 -0
  466. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_scheduler_parsing.py +0 -0
  467. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_session_context.py +0 -0
  468. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_skill_install.py +0 -0
  469. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_speech_tags.py +0 -0
  470. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_ssh.py +0 -0
  471. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_stt_backend.py +0 -0
  472. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_stt_cloud.py +0 -0
  473. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_stt_engine.py +0 -0
  474. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_task_cli.py +0 -0
  475. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_terminal_resize.py +0 -0
  476. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_tmux_template.py +0 -0
  477. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_tts_engine_resolution.py +0 -0
  478. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_tts_local.py +0 -0
  479. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_validation.py +0 -0
  480. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_voice_status.py +0 -0
  481. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_wiki.py +0 -0
  482. {agentwire_dev-1.45.0 → agentwire_dev-1.46.0}/tests/unit/test_wiki_audit.py +0 -0
  483. {agentwire_dev-1.45.0 → agentwire_dev-1.46.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 agree to the Contributor License Agreement:
13
- https://github.com/dotdevdotdev/agentwire-dev/blob/main/CLA.md
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
- ## Contributor License Agreement
5
+ ## Developer Certificate of Origin
6
6
 
7
- By submitting a pull request, you agree to the terms of our [Contributor License Agreement](CLA.md). This allows us to maintain our dual-licensing model (AGPL v3 + commercial) while accepting community contributions.
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.