stackwright-puppy 0.0.472.post1__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 (307) hide show
  1. stackwright_puppy-0.0.472.post1/.gitignore +47 -0
  2. stackwright_puppy-0.0.472.post1/LICENSE +21 -0
  3. stackwright_puppy-0.0.472.post1/PKG-INFO +809 -0
  4. stackwright_puppy-0.0.472.post1/README.md +763 -0
  5. stackwright_puppy-0.0.472.post1/code_puppy/__init__.py +10 -0
  6. stackwright_puppy-0.0.472.post1/code_puppy/__main__.py +10 -0
  7. stackwright_puppy-0.0.472.post1/code_puppy/agents/__init__.py +31 -0
  8. stackwright_puppy-0.0.472.post1/code_puppy/agents/_builder.py +285 -0
  9. stackwright_puppy-0.0.472.post1/code_puppy/agents/_compaction.py +485 -0
  10. stackwright_puppy-0.0.472.post1/code_puppy/agents/_diagnostics.py +173 -0
  11. stackwright_puppy-0.0.472.post1/code_puppy/agents/_history.py +273 -0
  12. stackwright_puppy-0.0.472.post1/code_puppy/agents/_key_listeners.py +150 -0
  13. stackwright_puppy-0.0.472.post1/code_puppy/agents/_non_streaming_render.py +149 -0
  14. stackwright_puppy-0.0.472.post1/code_puppy/agents/_runtime.py +523 -0
  15. stackwright_puppy-0.0.472.post1/code_puppy/agents/agent_c_reviewer.py +154 -0
  16. stackwright_puppy-0.0.472.post1/code_puppy/agents/agent_code_puppy.py +96 -0
  17. stackwright_puppy-0.0.472.post1/code_puppy/agents/agent_code_reviewer.py +89 -0
  18. stackwright_puppy-0.0.472.post1/code_puppy/agents/agent_cpp_reviewer.py +131 -0
  19. stackwright_puppy-0.0.472.post1/code_puppy/agents/agent_creator_agent.py +631 -0
  20. stackwright_puppy-0.0.472.post1/code_puppy/agents/agent_golang_reviewer.py +150 -0
  21. stackwright_puppy-0.0.472.post1/code_puppy/agents/agent_helios.py +123 -0
  22. stackwright_puppy-0.0.472.post1/code_puppy/agents/agent_javascript_reviewer.py +159 -0
  23. stackwright_puppy-0.0.472.post1/code_puppy/agents/agent_manager.py +742 -0
  24. stackwright_puppy-0.0.472.post1/code_puppy/agents/agent_pack_leader.py +402 -0
  25. stackwright_puppy-0.0.472.post1/code_puppy/agents/agent_planning.py +164 -0
  26. stackwright_puppy-0.0.472.post1/code_puppy/agents/agent_python_programmer.py +168 -0
  27. stackwright_puppy-0.0.472.post1/code_puppy/agents/agent_python_reviewer.py +89 -0
  28. stackwright_puppy-0.0.472.post1/code_puppy/agents/agent_qa_expert.py +162 -0
  29. stackwright_puppy-0.0.472.post1/code_puppy/agents/agent_qa_kitten.py +207 -0
  30. stackwright_puppy-0.0.472.post1/code_puppy/agents/agent_scheduler.py +120 -0
  31. stackwright_puppy-0.0.472.post1/code_puppy/agents/agent_security_auditor.py +180 -0
  32. stackwright_puppy-0.0.472.post1/code_puppy/agents/agent_terminal_qa.py +322 -0
  33. stackwright_puppy-0.0.472.post1/code_puppy/agents/agent_typescript_reviewer.py +165 -0
  34. stackwright_puppy-0.0.472.post1/code_puppy/agents/base_agent.py +189 -0
  35. stackwright_puppy-0.0.472.post1/code_puppy/agents/event_stream_handler.py +349 -0
  36. stackwright_puppy-0.0.472.post1/code_puppy/agents/json_agent.py +202 -0
  37. stackwright_puppy-0.0.472.post1/code_puppy/agents/pack/__init__.py +32 -0
  38. stackwright_puppy-0.0.472.post1/code_puppy/agents/pack/bloodhound.py +303 -0
  39. stackwright_puppy-0.0.472.post1/code_puppy/agents/pack/retriever.py +392 -0
  40. stackwright_puppy-0.0.472.post1/code_puppy/agents/pack/shepherd.py +344 -0
  41. stackwright_puppy-0.0.472.post1/code_puppy/agents/pack/terrier.py +286 -0
  42. stackwright_puppy-0.0.472.post1/code_puppy/agents/pack/watchdog.py +366 -0
  43. stackwright_puppy-0.0.472.post1/code_puppy/agents/prompt_reviewer.py +144 -0
  44. stackwright_puppy-0.0.472.post1/code_puppy/agents/subagent_stream_handler.py +277 -0
  45. stackwright_puppy-0.0.472.post1/code_puppy/api/__init__.py +13 -0
  46. stackwright_puppy-0.0.472.post1/code_puppy/api/app.py +169 -0
  47. stackwright_puppy-0.0.472.post1/code_puppy/api/main.py +21 -0
  48. stackwright_puppy-0.0.472.post1/code_puppy/api/pty_manager.py +453 -0
  49. stackwright_puppy-0.0.472.post1/code_puppy/api/routers/__init__.py +12 -0
  50. stackwright_puppy-0.0.472.post1/code_puppy/api/routers/agents.py +36 -0
  51. stackwright_puppy-0.0.472.post1/code_puppy/api/routers/commands.py +217 -0
  52. stackwright_puppy-0.0.472.post1/code_puppy/api/routers/config.py +75 -0
  53. stackwright_puppy-0.0.472.post1/code_puppy/api/routers/sessions.py +234 -0
  54. stackwright_puppy-0.0.472.post1/code_puppy/api/templates/terminal.html +361 -0
  55. stackwright_puppy-0.0.472.post1/code_puppy/api/websocket.py +154 -0
  56. stackwright_puppy-0.0.472.post1/code_puppy/callbacks.py +790 -0
  57. stackwright_puppy-0.0.472.post1/code_puppy/chatgpt_codex_client.py +338 -0
  58. stackwright_puppy-0.0.472.post1/code_puppy/claude_cache_client.py +773 -0
  59. stackwright_puppy-0.0.472.post1/code_puppy/cli_runner.py +1063 -0
  60. stackwright_puppy-0.0.472.post1/code_puppy/command_line/__init__.py +1 -0
  61. stackwright_puppy-0.0.472.post1/code_puppy/command_line/add_model_menu.py +1332 -0
  62. stackwright_puppy-0.0.472.post1/code_puppy/command_line/agent_menu.py +675 -0
  63. stackwright_puppy-0.0.472.post1/code_puppy/command_line/attachments.py +395 -0
  64. stackwright_puppy-0.0.472.post1/code_puppy/command_line/autosave_menu.py +716 -0
  65. stackwright_puppy-0.0.472.post1/code_puppy/command_line/clipboard.py +527 -0
  66. stackwright_puppy-0.0.472.post1/code_puppy/command_line/colors_menu.py +532 -0
  67. stackwright_puppy-0.0.472.post1/code_puppy/command_line/command_handler.py +293 -0
  68. stackwright_puppy-0.0.472.post1/code_puppy/command_line/command_registry.py +150 -0
  69. stackwright_puppy-0.0.472.post1/code_puppy/command_line/config_commands.py +719 -0
  70. stackwright_puppy-0.0.472.post1/code_puppy/command_line/core_commands.py +764 -0
  71. stackwright_puppy-0.0.472.post1/code_puppy/command_line/diff_menu.py +865 -0
  72. stackwright_puppy-0.0.472.post1/code_puppy/command_line/file_path_completion.py +73 -0
  73. stackwright_puppy-0.0.472.post1/code_puppy/command_line/load_context_completion.py +52 -0
  74. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/__init__.py +10 -0
  75. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/base.py +32 -0
  76. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/catalog_server_installer.py +175 -0
  77. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/custom_server_form.py +688 -0
  78. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/custom_server_installer.py +195 -0
  79. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/edit_command.py +148 -0
  80. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/handler.py +138 -0
  81. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/help_command.py +147 -0
  82. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/install_command.py +214 -0
  83. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/install_menu.py +705 -0
  84. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/list_command.py +94 -0
  85. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/logs_command.py +235 -0
  86. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/remove_command.py +82 -0
  87. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/restart_command.py +100 -0
  88. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/search_command.py +123 -0
  89. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/start_all_command.py +135 -0
  90. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/start_command.py +117 -0
  91. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/status_command.py +184 -0
  92. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/stop_all_command.py +112 -0
  93. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/stop_command.py +80 -0
  94. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/test_command.py +107 -0
  95. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/utils.py +129 -0
  96. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp/wizard_utils.py +334 -0
  97. stackwright_puppy-0.0.472.post1/code_puppy/command_line/mcp_completion.py +174 -0
  98. stackwright_puppy-0.0.472.post1/code_puppy/command_line/model_picker_completion.py +512 -0
  99. stackwright_puppy-0.0.472.post1/code_puppy/command_line/model_settings_menu.py +986 -0
  100. stackwright_puppy-0.0.472.post1/code_puppy/command_line/onboarding_slides.py +179 -0
  101. stackwright_puppy-0.0.472.post1/code_puppy/command_line/onboarding_wizard.py +342 -0
  102. stackwright_puppy-0.0.472.post1/code_puppy/command_line/pagination.py +43 -0
  103. stackwright_puppy-0.0.472.post1/code_puppy/command_line/pin_command_completion.py +329 -0
  104. stackwright_puppy-0.0.472.post1/code_puppy/command_line/prompt_toolkit_completion.py +850 -0
  105. stackwright_puppy-0.0.472.post1/code_puppy/command_line/session_commands.py +304 -0
  106. stackwright_puppy-0.0.472.post1/code_puppy/command_line/shell_passthrough.py +145 -0
  107. stackwright_puppy-0.0.472.post1/code_puppy/command_line/skills_completion.py +160 -0
  108. stackwright_puppy-0.0.472.post1/code_puppy/command_line/uc_menu.py +908 -0
  109. stackwright_puppy-0.0.472.post1/code_puppy/command_line/utils.py +93 -0
  110. stackwright_puppy-0.0.472.post1/code_puppy/command_line/wiggum_state.py +78 -0
  111. stackwright_puppy-0.0.472.post1/code_puppy/config.py +1972 -0
  112. stackwright_puppy-0.0.472.post1/code_puppy/error_logging.py +134 -0
  113. stackwright_puppy-0.0.472.post1/code_puppy/gemini_code_assist.py +385 -0
  114. stackwright_puppy-0.0.472.post1/code_puppy/gemini_model.py +840 -0
  115. stackwright_puppy-0.0.472.post1/code_puppy/hook_engine/README.md +105 -0
  116. stackwright_puppy-0.0.472.post1/code_puppy/hook_engine/__init__.py +21 -0
  117. stackwright_puppy-0.0.472.post1/code_puppy/hook_engine/aliases.py +155 -0
  118. stackwright_puppy-0.0.472.post1/code_puppy/hook_engine/engine.py +221 -0
  119. stackwright_puppy-0.0.472.post1/code_puppy/hook_engine/executor.py +296 -0
  120. stackwright_puppy-0.0.472.post1/code_puppy/hook_engine/matcher.py +156 -0
  121. stackwright_puppy-0.0.472.post1/code_puppy/hook_engine/models.py +240 -0
  122. stackwright_puppy-0.0.472.post1/code_puppy/hook_engine/registry.py +106 -0
  123. stackwright_puppy-0.0.472.post1/code_puppy/hook_engine/validator.py +144 -0
  124. stackwright_puppy-0.0.472.post1/code_puppy/http_utils.py +361 -0
  125. stackwright_puppy-0.0.472.post1/code_puppy/keymap.py +128 -0
  126. stackwright_puppy-0.0.472.post1/code_puppy/list_filtering.py +26 -0
  127. stackwright_puppy-0.0.472.post1/code_puppy/main.py +10 -0
  128. stackwright_puppy-0.0.472.post1/code_puppy/mcp_/__init__.py +66 -0
  129. stackwright_puppy-0.0.472.post1/code_puppy/mcp_/async_lifecycle.py +286 -0
  130. stackwright_puppy-0.0.472.post1/code_puppy/mcp_/blocking_startup.py +469 -0
  131. stackwright_puppy-0.0.472.post1/code_puppy/mcp_/captured_stdio_server.py +275 -0
  132. stackwright_puppy-0.0.472.post1/code_puppy/mcp_/circuit_breaker.py +290 -0
  133. stackwright_puppy-0.0.472.post1/code_puppy/mcp_/config_wizard.py +507 -0
  134. stackwright_puppy-0.0.472.post1/code_puppy/mcp_/dashboard.py +308 -0
  135. stackwright_puppy-0.0.472.post1/code_puppy/mcp_/error_isolation.py +407 -0
  136. stackwright_puppy-0.0.472.post1/code_puppy/mcp_/examples/retry_example.py +226 -0
  137. stackwright_puppy-0.0.472.post1/code_puppy/mcp_/health_monitor.py +589 -0
  138. stackwright_puppy-0.0.472.post1/code_puppy/mcp_/managed_server.py +428 -0
  139. stackwright_puppy-0.0.472.post1/code_puppy/mcp_/manager.py +872 -0
  140. stackwright_puppy-0.0.472.post1/code_puppy/mcp_/mcp_logs.py +224 -0
  141. stackwright_puppy-0.0.472.post1/code_puppy/mcp_/registry.py +451 -0
  142. stackwright_puppy-0.0.472.post1/code_puppy/mcp_/retry_manager.py +337 -0
  143. stackwright_puppy-0.0.472.post1/code_puppy/mcp_/server_registry_catalog.py +1126 -0
  144. stackwright_puppy-0.0.472.post1/code_puppy/mcp_/status_tracker.py +355 -0
  145. stackwright_puppy-0.0.472.post1/code_puppy/mcp_/system_tools.py +209 -0
  146. stackwright_puppy-0.0.472.post1/code_puppy/mcp_prompts/__init__.py +1 -0
  147. stackwright_puppy-0.0.472.post1/code_puppy/mcp_prompts/hook_creator.py +103 -0
  148. stackwright_puppy-0.0.472.post1/code_puppy/messaging/__init__.py +255 -0
  149. stackwright_puppy-0.0.472.post1/code_puppy/messaging/bus.py +613 -0
  150. stackwright_puppy-0.0.472.post1/code_puppy/messaging/commands.py +167 -0
  151. stackwright_puppy-0.0.472.post1/code_puppy/messaging/markdown_patches.py +57 -0
  152. stackwright_puppy-0.0.472.post1/code_puppy/messaging/message_queue.py +361 -0
  153. stackwright_puppy-0.0.472.post1/code_puppy/messaging/messages.py +569 -0
  154. stackwright_puppy-0.0.472.post1/code_puppy/messaging/queue_console.py +271 -0
  155. stackwright_puppy-0.0.472.post1/code_puppy/messaging/renderers.py +311 -0
  156. stackwright_puppy-0.0.472.post1/code_puppy/messaging/rich_renderer.py +1158 -0
  157. stackwright_puppy-0.0.472.post1/code_puppy/messaging/spinner/__init__.py +83 -0
  158. stackwright_puppy-0.0.472.post1/code_puppy/messaging/spinner/console_spinner.py +240 -0
  159. stackwright_puppy-0.0.472.post1/code_puppy/messaging/spinner/spinner_base.py +95 -0
  160. stackwright_puppy-0.0.472.post1/code_puppy/messaging/subagent_console.py +460 -0
  161. stackwright_puppy-0.0.472.post1/code_puppy/model_factory.py +938 -0
  162. stackwright_puppy-0.0.472.post1/code_puppy/model_switching.py +63 -0
  163. stackwright_puppy-0.0.472.post1/code_puppy/model_utils.py +156 -0
  164. stackwright_puppy-0.0.472.post1/code_puppy/models.json +165 -0
  165. stackwright_puppy-0.0.472.post1/code_puppy/models_dev_api.json +1 -0
  166. stackwright_puppy-0.0.472.post1/code_puppy/models_dev_parser.py +592 -0
  167. stackwright_puppy-0.0.472.post1/code_puppy/plugins/__init__.py +186 -0
  168. stackwright_puppy-0.0.472.post1/code_puppy/plugins/agent_skills/__init__.py +22 -0
  169. stackwright_puppy-0.0.472.post1/code_puppy/plugins/agent_skills/config.py +175 -0
  170. stackwright_puppy-0.0.472.post1/code_puppy/plugins/agent_skills/discovery.py +136 -0
  171. stackwright_puppy-0.0.472.post1/code_puppy/plugins/agent_skills/downloader.py +392 -0
  172. stackwright_puppy-0.0.472.post1/code_puppy/plugins/agent_skills/installer.py +22 -0
  173. stackwright_puppy-0.0.472.post1/code_puppy/plugins/agent_skills/metadata.py +219 -0
  174. stackwright_puppy-0.0.472.post1/code_puppy/plugins/agent_skills/prompt_builder.py +60 -0
  175. stackwright_puppy-0.0.472.post1/code_puppy/plugins/agent_skills/register_callbacks.py +241 -0
  176. stackwright_puppy-0.0.472.post1/code_puppy/plugins/agent_skills/remote_catalog.py +322 -0
  177. stackwright_puppy-0.0.472.post1/code_puppy/plugins/agent_skills/skill_catalog.py +257 -0
  178. stackwright_puppy-0.0.472.post1/code_puppy/plugins/agent_skills/skills_install_menu.py +691 -0
  179. stackwright_puppy-0.0.472.post1/code_puppy/plugins/agent_skills/skills_menu.py +797 -0
  180. stackwright_puppy-0.0.472.post1/code_puppy/plugins/aws_bedrock/__init__.py +14 -0
  181. stackwright_puppy-0.0.472.post1/code_puppy/plugins/aws_bedrock/config.py +101 -0
  182. stackwright_puppy-0.0.472.post1/code_puppy/plugins/aws_bedrock/register_callbacks.py +243 -0
  183. stackwright_puppy-0.0.472.post1/code_puppy/plugins/aws_bedrock/utils.py +155 -0
  184. stackwright_puppy-0.0.472.post1/code_puppy/plugins/azure_foundry/README.md +238 -0
  185. stackwright_puppy-0.0.472.post1/code_puppy/plugins/azure_foundry/__init__.py +15 -0
  186. stackwright_puppy-0.0.472.post1/code_puppy/plugins/azure_foundry/config.py +127 -0
  187. stackwright_puppy-0.0.472.post1/code_puppy/plugins/azure_foundry/discovery.py +189 -0
  188. stackwright_puppy-0.0.472.post1/code_puppy/plugins/azure_foundry/register_callbacks.py +497 -0
  189. stackwright_puppy-0.0.472.post1/code_puppy/plugins/azure_foundry/token.py +182 -0
  190. stackwright_puppy-0.0.472.post1/code_puppy/plugins/azure_foundry/utils.py +348 -0
  191. stackwright_puppy-0.0.472.post1/code_puppy/plugins/chatgpt_oauth/__init__.py +8 -0
  192. stackwright_puppy-0.0.472.post1/code_puppy/plugins/chatgpt_oauth/config.py +52 -0
  193. stackwright_puppy-0.0.472.post1/code_puppy/plugins/chatgpt_oauth/oauth_flow.py +329 -0
  194. stackwright_puppy-0.0.472.post1/code_puppy/plugins/chatgpt_oauth/register_callbacks.py +174 -0
  195. stackwright_puppy-0.0.472.post1/code_puppy/plugins/chatgpt_oauth/test_plugin.py +301 -0
  196. stackwright_puppy-0.0.472.post1/code_puppy/plugins/chatgpt_oauth/utils.py +530 -0
  197. stackwright_puppy-0.0.472.post1/code_puppy/plugins/claude_code_hooks/__init__.py +1 -0
  198. stackwright_puppy-0.0.472.post1/code_puppy/plugins/claude_code_hooks/config.py +137 -0
  199. stackwright_puppy-0.0.472.post1/code_puppy/plugins/claude_code_hooks/register_callbacks.py +176 -0
  200. stackwright_puppy-0.0.472.post1/code_puppy/plugins/claude_code_oauth/README.md +167 -0
  201. stackwright_puppy-0.0.472.post1/code_puppy/plugins/claude_code_oauth/SETUP.md +93 -0
  202. stackwright_puppy-0.0.472.post1/code_puppy/plugins/claude_code_oauth/__init__.py +25 -0
  203. stackwright_puppy-0.0.472.post1/code_puppy/plugins/claude_code_oauth/config.py +52 -0
  204. stackwright_puppy-0.0.472.post1/code_puppy/plugins/claude_code_oauth/fast_mode.py +128 -0
  205. stackwright_puppy-0.0.472.post1/code_puppy/plugins/claude_code_oauth/prompt_handler.py +65 -0
  206. stackwright_puppy-0.0.472.post1/code_puppy/plugins/claude_code_oauth/register_callbacks.py +515 -0
  207. stackwright_puppy-0.0.472.post1/code_puppy/plugins/claude_code_oauth/test_fast_mode.py +167 -0
  208. stackwright_puppy-0.0.472.post1/code_puppy/plugins/claude_code_oauth/test_plugin.py +283 -0
  209. stackwright_puppy-0.0.472.post1/code_puppy/plugins/claude_code_oauth/token_refresh_heartbeat.py +241 -0
  210. stackwright_puppy-0.0.472.post1/code_puppy/plugins/claude_code_oauth/utils.py +649 -0
  211. stackwright_puppy-0.0.472.post1/code_puppy/plugins/copilot_auth/__init__.py +11 -0
  212. stackwright_puppy-0.0.472.post1/code_puppy/plugins/copilot_auth/config.py +93 -0
  213. stackwright_puppy-0.0.472.post1/code_puppy/plugins/copilot_auth/reasoning_client.py +411 -0
  214. stackwright_puppy-0.0.472.post1/code_puppy/plugins/copilot_auth/register_callbacks.py +463 -0
  215. stackwright_puppy-0.0.472.post1/code_puppy/plugins/copilot_auth/utils.py +587 -0
  216. stackwright_puppy-0.0.472.post1/code_puppy/plugins/customizable_commands/__init__.py +0 -0
  217. stackwright_puppy-0.0.472.post1/code_puppy/plugins/customizable_commands/register_callbacks.py +152 -0
  218. stackwright_puppy-0.0.472.post1/code_puppy/plugins/example_custom_command/README.md +280 -0
  219. stackwright_puppy-0.0.472.post1/code_puppy/plugins/example_custom_command/register_callbacks.py +51 -0
  220. stackwright_puppy-0.0.472.post1/code_puppy/plugins/file_permission_handler/__init__.py +4 -0
  221. stackwright_puppy-0.0.472.post1/code_puppy/plugins/file_permission_handler/register_callbacks.py +470 -0
  222. stackwright_puppy-0.0.472.post1/code_puppy/plugins/frontend_emitter/__init__.py +25 -0
  223. stackwright_puppy-0.0.472.post1/code_puppy/plugins/frontend_emitter/emitter.py +121 -0
  224. stackwright_puppy-0.0.472.post1/code_puppy/plugins/frontend_emitter/register_callbacks.py +261 -0
  225. stackwright_puppy-0.0.472.post1/code_puppy/plugins/hook_creator/__init__.py +1 -0
  226. stackwright_puppy-0.0.472.post1/code_puppy/plugins/hook_creator/register_callbacks.py +33 -0
  227. stackwright_puppy-0.0.472.post1/code_puppy/plugins/hook_manager/__init__.py +1 -0
  228. stackwright_puppy-0.0.472.post1/code_puppy/plugins/hook_manager/config.py +290 -0
  229. stackwright_puppy-0.0.472.post1/code_puppy/plugins/hook_manager/hooks_menu.py +564 -0
  230. stackwright_puppy-0.0.472.post1/code_puppy/plugins/hook_manager/register_callbacks.py +227 -0
  231. stackwright_puppy-0.0.472.post1/code_puppy/plugins/oauth_puppy_html.py +228 -0
  232. stackwright_puppy-0.0.472.post1/code_puppy/plugins/ollama_setup/__init__.py +5 -0
  233. stackwright_puppy-0.0.472.post1/code_puppy/plugins/ollama_setup/completer.py +38 -0
  234. stackwright_puppy-0.0.472.post1/code_puppy/plugins/ollama_setup/register_callbacks.py +412 -0
  235. stackwright_puppy-0.0.472.post1/code_puppy/plugins/pop_command/__init__.py +1 -0
  236. stackwright_puppy-0.0.472.post1/code_puppy/plugins/pop_command/register_callbacks.py +191 -0
  237. stackwright_puppy-0.0.472.post1/code_puppy/plugins/scheduler/__init__.py +1 -0
  238. stackwright_puppy-0.0.472.post1/code_puppy/plugins/scheduler/register_callbacks.py +88 -0
  239. stackwright_puppy-0.0.472.post1/code_puppy/plugins/scheduler/scheduler_menu.py +538 -0
  240. stackwright_puppy-0.0.472.post1/code_puppy/plugins/scheduler/scheduler_wizard.py +341 -0
  241. stackwright_puppy-0.0.472.post1/code_puppy/plugins/shell_safety/__init__.py +6 -0
  242. stackwright_puppy-0.0.472.post1/code_puppy/plugins/shell_safety/agent_shell_safety.py +69 -0
  243. stackwright_puppy-0.0.472.post1/code_puppy/plugins/shell_safety/command_cache.py +156 -0
  244. stackwright_puppy-0.0.472.post1/code_puppy/plugins/shell_safety/register_callbacks.py +202 -0
  245. stackwright_puppy-0.0.472.post1/code_puppy/plugins/synthetic_status/__init__.py +1 -0
  246. stackwright_puppy-0.0.472.post1/code_puppy/plugins/synthetic_status/register_callbacks.py +132 -0
  247. stackwright_puppy-0.0.472.post1/code_puppy/plugins/synthetic_status/status_api.py +147 -0
  248. stackwright_puppy-0.0.472.post1/code_puppy/plugins/universal_constructor/__init__.py +13 -0
  249. stackwright_puppy-0.0.472.post1/code_puppy/plugins/universal_constructor/models.py +138 -0
  250. stackwright_puppy-0.0.472.post1/code_puppy/plugins/universal_constructor/register_callbacks.py +47 -0
  251. stackwright_puppy-0.0.472.post1/code_puppy/plugins/universal_constructor/registry.py +302 -0
  252. stackwright_puppy-0.0.472.post1/code_puppy/plugins/universal_constructor/sandbox.py +584 -0
  253. stackwright_puppy-0.0.472.post1/code_puppy/provider_identity.py +107 -0
  254. stackwright_puppy-0.0.472.post1/code_puppy/pydantic_patches.py +356 -0
  255. stackwright_puppy-0.0.472.post1/code_puppy/reopenable_async_client.py +232 -0
  256. stackwright_puppy-0.0.472.post1/code_puppy/round_robin_model.py +150 -0
  257. stackwright_puppy-0.0.472.post1/code_puppy/scheduler/__init__.py +41 -0
  258. stackwright_puppy-0.0.472.post1/code_puppy/scheduler/__main__.py +9 -0
  259. stackwright_puppy-0.0.472.post1/code_puppy/scheduler/cli.py +118 -0
  260. stackwright_puppy-0.0.472.post1/code_puppy/scheduler/config.py +126 -0
  261. stackwright_puppy-0.0.472.post1/code_puppy/scheduler/daemon.py +280 -0
  262. stackwright_puppy-0.0.472.post1/code_puppy/scheduler/executor.py +155 -0
  263. stackwright_puppy-0.0.472.post1/code_puppy/scheduler/platform.py +19 -0
  264. stackwright_puppy-0.0.472.post1/code_puppy/scheduler/platform_unix.py +22 -0
  265. stackwright_puppy-0.0.472.post1/code_puppy/scheduler/platform_win.py +32 -0
  266. stackwright_puppy-0.0.472.post1/code_puppy/session_storage.py +338 -0
  267. stackwright_puppy-0.0.472.post1/code_puppy/status_display.py +257 -0
  268. stackwright_puppy-0.0.472.post1/code_puppy/summarization_agent.py +174 -0
  269. stackwright_puppy-0.0.472.post1/code_puppy/terminal_utils.py +418 -0
  270. stackwright_puppy-0.0.472.post1/code_puppy/tools/__init__.py +501 -0
  271. stackwright_puppy-0.0.472.post1/code_puppy/tools/agent_tools.py +646 -0
  272. stackwright_puppy-0.0.472.post1/code_puppy/tools/ask_user_question/__init__.py +26 -0
  273. stackwright_puppy-0.0.472.post1/code_puppy/tools/ask_user_question/constants.py +73 -0
  274. stackwright_puppy-0.0.472.post1/code_puppy/tools/ask_user_question/demo_tui.py +55 -0
  275. stackwright_puppy-0.0.472.post1/code_puppy/tools/ask_user_question/handler.py +234 -0
  276. stackwright_puppy-0.0.472.post1/code_puppy/tools/ask_user_question/models.py +304 -0
  277. stackwright_puppy-0.0.472.post1/code_puppy/tools/ask_user_question/registration.py +39 -0
  278. stackwright_puppy-0.0.472.post1/code_puppy/tools/ask_user_question/renderers.py +309 -0
  279. stackwright_puppy-0.0.472.post1/code_puppy/tools/ask_user_question/terminal_ui.py +329 -0
  280. stackwright_puppy-0.0.472.post1/code_puppy/tools/ask_user_question/theme.py +155 -0
  281. stackwright_puppy-0.0.472.post1/code_puppy/tools/ask_user_question/tui_loop.py +423 -0
  282. stackwright_puppy-0.0.472.post1/code_puppy/tools/browser/__init__.py +37 -0
  283. stackwright_puppy-0.0.472.post1/code_puppy/tools/browser/browser_control.py +289 -0
  284. stackwright_puppy-0.0.472.post1/code_puppy/tools/browser/browser_interactions.py +545 -0
  285. stackwright_puppy-0.0.472.post1/code_puppy/tools/browser/browser_locators.py +640 -0
  286. stackwright_puppy-0.0.472.post1/code_puppy/tools/browser/browser_manager.py +378 -0
  287. stackwright_puppy-0.0.472.post1/code_puppy/tools/browser/browser_navigation.py +251 -0
  288. stackwright_puppy-0.0.472.post1/code_puppy/tools/browser/browser_screenshot.py +179 -0
  289. stackwright_puppy-0.0.472.post1/code_puppy/tools/browser/browser_scripts.py +462 -0
  290. stackwright_puppy-0.0.472.post1/code_puppy/tools/browser/browser_workflows.py +221 -0
  291. stackwright_puppy-0.0.472.post1/code_puppy/tools/browser/chromium_terminal_manager.py +259 -0
  292. stackwright_puppy-0.0.472.post1/code_puppy/tools/browser/terminal_command_tools.py +534 -0
  293. stackwright_puppy-0.0.472.post1/code_puppy/tools/browser/terminal_screenshot_tools.py +677 -0
  294. stackwright_puppy-0.0.472.post1/code_puppy/tools/browser/terminal_tools.py +525 -0
  295. stackwright_puppy-0.0.472.post1/code_puppy/tools/command_runner.py +1346 -0
  296. stackwright_puppy-0.0.472.post1/code_puppy/tools/common.py +1409 -0
  297. stackwright_puppy-0.0.472.post1/code_puppy/tools/display.py +84 -0
  298. stackwright_puppy-0.0.472.post1/code_puppy/tools/file_modifications.py +913 -0
  299. stackwright_puppy-0.0.472.post1/code_puppy/tools/file_operations.py +802 -0
  300. stackwright_puppy-0.0.472.post1/code_puppy/tools/scheduler_tools.py +412 -0
  301. stackwright_puppy-0.0.472.post1/code_puppy/tools/skills_tools.py +244 -0
  302. stackwright_puppy-0.0.472.post1/code_puppy/tools/subagent_context.py +158 -0
  303. stackwright_puppy-0.0.472.post1/code_puppy/tools/tools_content.py +50 -0
  304. stackwright_puppy-0.0.472.post1/code_puppy/tools/universal_constructor.py +893 -0
  305. stackwright_puppy-0.0.472.post1/code_puppy/uvx_detection.py +242 -0
  306. stackwright_puppy-0.0.472.post1/code_puppy/version_checker.py +82 -0
  307. stackwright_puppy-0.0.472.post1/pyproject.toml +110 -0
@@ -0,0 +1,47 @@
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Virtual environments
10
+ .venv
11
+
12
+ .coverage
13
+
14
+ # Session memory
15
+ .puppy_session_memory.json
16
+
17
+ # Pytest cache
18
+ .pytest_cache/
19
+
20
+ dummy_path
21
+
22
+ .idea/
23
+
24
+ .DS_Store
25
+ .env
26
+ .serena/
27
+ .beads/
28
+ main.dist/
29
+ nuitka-crash-report.xml
30
+ *.backup
31
+ main.bin
32
+
33
+ # Bundled skills removed — skills are now fetched from remote catalog
34
+ code_puppy/bundled_skills/
35
+
36
+ # Hook engine runtime artifacts (logs, compiled outputs)
37
+ .claude/activity.jsonl
38
+ .claude/hooks/audit.log
39
+
40
+ # Compiled hook binaries (built from .go sources in .claude/hooks/go-hooks/)
41
+ .claude/hooks/go-hooks/audit-bash
42
+ .claude/hooks/go-hooks/file-policy
43
+
44
+ # Compiled TypeScript hook output (built from .ts sources)
45
+ .claude/hooks/ts-hooks/dist/
46
+
47
+ .json
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Mike Pfaffenberger
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.