code-puppy-core-plugins 0.0.2__py3-none-any.whl

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 (313) hide show
  1. code_puppy_core_plugins/__init__.py +5 -0
  2. code_puppy_core_plugins/acp/README.md +266 -0
  3. code_puppy_core_plugins/acp/__init__.py +8 -0
  4. code_puppy_core_plugins/acp/agent.py +494 -0
  5. code_puppy_core_plugins/acp/bridge.py +309 -0
  6. code_puppy_core_plugins/acp/capabilities.py +73 -0
  7. code_puppy_core_plugins/acp/commands.py +116 -0
  8. code_puppy_core_plugins/acp/content.py +115 -0
  9. code_puppy_core_plugins/acp/io_delegation.py +231 -0
  10. code_puppy_core_plugins/acp/mcp_config.py +66 -0
  11. code_puppy_core_plugins/acp/permissions.py +159 -0
  12. code_puppy_core_plugins/acp/persistence.py +197 -0
  13. code_puppy_core_plugins/acp/register_callbacks.py +110 -0
  14. code_puppy_core_plugins/acp/replay.py +114 -0
  15. code_puppy_core_plugins/acp/session.py +329 -0
  16. code_puppy_core_plugins/acp/session_config.py +179 -0
  17. code_puppy_core_plugins/acp/state.py +135 -0
  18. code_puppy_core_plugins/agent_skills/__init__.py +22 -0
  19. code_puppy_core_plugins/agent_skills/config.py +208 -0
  20. code_puppy_core_plugins/agent_skills/discovery.py +337 -0
  21. code_puppy_core_plugins/agent_skills/downloader.py +392 -0
  22. code_puppy_core_plugins/agent_skills/enabled_skills.py +82 -0
  23. code_puppy_core_plugins/agent_skills/installer.py +22 -0
  24. code_puppy_core_plugins/agent_skills/metadata.py +219 -0
  25. code_puppy_core_plugins/agent_skills/prompt_builder.py +49 -0
  26. code_puppy_core_plugins/agent_skills/provider.py +52 -0
  27. code_puppy_core_plugins/agent_skills/register_callbacks.py +309 -0
  28. code_puppy_core_plugins/agent_skills/remote_catalog.py +322 -0
  29. code_puppy_core_plugins/agent_skills/skill_catalog.py +257 -0
  30. code_puppy_core_plugins/agent_skills/skill_commands.py +102 -0
  31. code_puppy_core_plugins/agent_skills/skills_install_menu.py +698 -0
  32. code_puppy_core_plugins/agent_skills/skills_menu.py +794 -0
  33. code_puppy_core_plugins/aws_bedrock/__init__.py +14 -0
  34. code_puppy_core_plugins/aws_bedrock/config.py +101 -0
  35. code_puppy_core_plugins/aws_bedrock/register_callbacks.py +243 -0
  36. code_puppy_core_plugins/aws_bedrock/utils.py +186 -0
  37. code_puppy_core_plugins/azure_foundry/README.md +238 -0
  38. code_puppy_core_plugins/azure_foundry/__init__.py +15 -0
  39. code_puppy_core_plugins/azure_foundry/config.py +126 -0
  40. code_puppy_core_plugins/azure_foundry/discovery.py +189 -0
  41. code_puppy_core_plugins/azure_foundry/register_callbacks.py +506 -0
  42. code_puppy_core_plugins/azure_foundry/token.py +182 -0
  43. code_puppy_core_plugins/azure_foundry/utils.py +375 -0
  44. code_puppy_core_plugins/btw/__init__.py +1 -0
  45. code_puppy_core_plugins/btw/inline_view.py +135 -0
  46. code_puppy_core_plugins/btw/register_callbacks.py +106 -0
  47. code_puppy_core_plugins/btw/side_query.py +91 -0
  48. code_puppy_core_plugins/chatgpt_oauth/IMAGEGEN_SKILL.md +83 -0
  49. code_puppy_core_plugins/chatgpt_oauth/__init__.py +8 -0
  50. code_puppy_core_plugins/chatgpt_oauth/config.py +52 -0
  51. code_puppy_core_plugins/chatgpt_oauth/image_generation.py +253 -0
  52. code_puppy_core_plugins/chatgpt_oauth/image_tool.py +70 -0
  53. code_puppy_core_plugins/chatgpt_oauth/oauth_flow.py +461 -0
  54. code_puppy_core_plugins/chatgpt_oauth/register_callbacks.py +288 -0
  55. code_puppy_core_plugins/chatgpt_oauth/test_plugin.py +663 -0
  56. code_puppy_core_plugins/chatgpt_oauth/usage.py +113 -0
  57. code_puppy_core_plugins/chatgpt_oauth/utils.py +534 -0
  58. code_puppy_core_plugins/claude_code_hooks/__init__.py +1 -0
  59. code_puppy_core_plugins/claude_code_hooks/config.py +137 -0
  60. code_puppy_core_plugins/claude_code_hooks/register_callbacks.py +383 -0
  61. code_puppy_core_plugins/claude_code_oauth/README.md +167 -0
  62. code_puppy_core_plugins/claude_code_oauth/SETUP.md +93 -0
  63. code_puppy_core_plugins/claude_code_oauth/__init__.py +25 -0
  64. code_puppy_core_plugins/claude_code_oauth/config.py +59 -0
  65. code_puppy_core_plugins/claude_code_oauth/fast_mode.py +122 -0
  66. code_puppy_core_plugins/claude_code_oauth/prompt_handler.py +64 -0
  67. code_puppy_core_plugins/claude_code_oauth/register_callbacks.py +719 -0
  68. code_puppy_core_plugins/claude_code_oauth/test_plugin.py +285 -0
  69. code_puppy_core_plugins/claude_code_oauth/token_refresh_heartbeat.py +240 -0
  70. code_puppy_core_plugins/claude_code_oauth/utils.py +663 -0
  71. code_puppy_core_plugins/code_puppy_agent/AGENTS_AND_TOOLS.md +155 -0
  72. code_puppy_core_plugins/code_puppy_agent/MODELS_AND_MCP.md +104 -0
  73. code_puppy_core_plugins/code_puppy_agent/PLUGINS_AND_CALLBACKS.md +147 -0
  74. code_puppy_core_plugins/code_puppy_agent/SESSIONS_AND_HISTORY.md +39 -0
  75. code_puppy_core_plugins/code_puppy_agent/SKILL.md +180 -0
  76. code_puppy_core_plugins/code_puppy_agent/SKILLS_SYSTEM.md +136 -0
  77. code_puppy_core_plugins/code_puppy_agent/SYSTEM_PROMPT_CONFIG_AND_I18N.md +160 -0
  78. code_puppy_core_plugins/code_puppy_agent/__init__.py +5 -0
  79. code_puppy_core_plugins/code_puppy_agent/register_callbacks.py +46 -0
  80. code_puppy_core_plugins/computer_use/NativeCapture.swift +123 -0
  81. code_puppy_core_plugins/computer_use/README.md +109 -0
  82. code_puppy_core_plugins/computer_use/__init__.py +1 -0
  83. code_puppy_core_plugins/computer_use/accessibility.py +163 -0
  84. code_puppy_core_plugins/computer_use/activation.py +75 -0
  85. code_puppy_core_plugins/computer_use/backend.py +584 -0
  86. code_puppy_core_plugins/computer_use/backend_types.py +5 -0
  87. code_puppy_core_plugins/computer_use/capture.py +110 -0
  88. code_puppy_core_plugins/computer_use/commands.py +62 -0
  89. code_puppy_core_plugins/computer_use/geometry.py +81 -0
  90. code_puppy_core_plugins/computer_use/inline_image.py +56 -0
  91. code_puppy_core_plugins/computer_use/keycodes.py +47 -0
  92. code_puppy_core_plugins/computer_use/policy.py +144 -0
  93. code_puppy_core_plugins/computer_use/register_callbacks.py +96 -0
  94. code_puppy_core_plugins/computer_use/safety.py +18 -0
  95. code_puppy_core_plugins/computer_use/settle.py +64 -0
  96. code_puppy_core_plugins/computer_use/state.py +86 -0
  97. code_puppy_core_plugins/computer_use/tools.py +469 -0
  98. code_puppy_core_plugins/context_indicator/__init__.py +14 -0
  99. code_puppy_core_plugins/context_indicator/register_callbacks.py +249 -0
  100. code_puppy_core_plugins/context_indicator/usage.py +40 -0
  101. code_puppy_core_plugins/copilot_auth/__init__.py +11 -0
  102. code_puppy_core_plugins/copilot_auth/config.py +93 -0
  103. code_puppy_core_plugins/copilot_auth/reasoning_client.py +409 -0
  104. code_puppy_core_plugins/copilot_auth/register_callbacks.py +460 -0
  105. code_puppy_core_plugins/copilot_auth/utils.py +587 -0
  106. code_puppy_core_plugins/customizable_commands/__init__.py +0 -0
  107. code_puppy_core_plugins/customizable_commands/register_callbacks.py +464 -0
  108. code_puppy_core_plugins/dbos_durable_exec/__init__.py +1 -0
  109. code_puppy_core_plugins/dbos_durable_exec/cancel.py +15 -0
  110. code_puppy_core_plugins/dbos_durable_exec/commands.py +31 -0
  111. code_puppy_core_plugins/dbos_durable_exec/config.py +31 -0
  112. code_puppy_core_plugins/dbos_durable_exec/lifecycle.py +83 -0
  113. code_puppy_core_plugins/dbos_durable_exec/register_callbacks.py +45 -0
  114. code_puppy_core_plugins/dbos_durable_exec/runtime.py +65 -0
  115. code_puppy_core_plugins/dbos_durable_exec/startup_lock.py +155 -0
  116. code_puppy_core_plugins/dbos_durable_exec/workflow_ids.py +16 -0
  117. code_puppy_core_plugins/dbos_durable_exec/wrapper.py +58 -0
  118. code_puppy_core_plugins/destructive_command_guard/AGENTS.md +79 -0
  119. code_puppy_core_plugins/destructive_command_guard/__init__.py +14 -0
  120. code_puppy_core_plugins/destructive_command_guard/detector.py +374 -0
  121. code_puppy_core_plugins/destructive_command_guard/register_callbacks.py +165 -0
  122. code_puppy_core_plugins/emoji_filter/__init__.py +12 -0
  123. code_puppy_core_plugins/emoji_filter/config.py +26 -0
  124. code_puppy_core_plugins/emoji_filter/register_callbacks.py +238 -0
  125. code_puppy_core_plugins/emoji_filter/stripper.py +45 -0
  126. code_puppy_core_plugins/empty_html_comment_filter/register_callbacks.py +116 -0
  127. code_puppy_core_plugins/example_custom_command/README.md +328 -0
  128. code_puppy_core_plugins/example_custom_command/register_callbacks.py +66 -0
  129. code_puppy_core_plugins/file_permission_handler/__init__.py +4 -0
  130. code_puppy_core_plugins/file_permission_handler/register_callbacks.py +575 -0
  131. code_puppy_core_plugins/flux_bootstrap/__init__.py +5 -0
  132. code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/_docs/README.md +173 -0
  133. code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/_docs/cheatsheet.md +86 -0
  134. code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/_docs/pipeline.md +167 -0
  135. code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/_docs/synopsis.md +392 -0
  136. code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/about.md +51 -0
  137. code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/address-feedback.md +129 -0
  138. code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/ask.md +211 -0
  139. code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/aug.md +181 -0
  140. code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/auto-pilot.md +71 -0
  141. code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/cheatsheet.md +16 -0
  142. code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/commit.md +103 -0
  143. code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/config.md +108 -0
  144. code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/create-pr.md +195 -0
  145. code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/exec.md +221 -0
  146. code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/new.md +151 -0
  147. code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/qa.md +208 -0
  148. code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/rebase.md +180 -0
  149. code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/review.md +304 -0
  150. code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/split.md +120 -0
  151. code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/squash-commits.md +179 -0
  152. code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/status.md +46 -0
  153. code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/tests.md +155 -0
  154. code_puppy_core_plugins/flux_bootstrap/bundled/scripts/flux_about.py +154 -0
  155. code_puppy_core_plugins/flux_bootstrap/bundled/scripts/flux_cheatsheet.py +248 -0
  156. code_puppy_core_plugins/flux_bootstrap/bundled/scripts/flux_status.py +345 -0
  157. code_puppy_core_plugins/flux_bootstrap/installer.py +256 -0
  158. code_puppy_core_plugins/flux_bootstrap/register_callbacks.py +71 -0
  159. code_puppy_core_plugins/force_push_guard/__init__.py +5 -0
  160. code_puppy_core_plugins/force_push_guard/detector.py +96 -0
  161. code_puppy_core_plugins/force_push_guard/register_callbacks.py +161 -0
  162. code_puppy_core_plugins/fork/__init__.py +7 -0
  163. code_puppy_core_plugins/fork/register_callbacks.py +445 -0
  164. code_puppy_core_plugins/frontend_emitter/__init__.py +25 -0
  165. code_puppy_core_plugins/frontend_emitter/emitter.py +249 -0
  166. code_puppy_core_plugins/frontend_emitter/register_callbacks.py +412 -0
  167. code_puppy_core_plugins/frontend_emitter/session_context.py +50 -0
  168. code_puppy_core_plugins/grok_oauth/__init__.py +6 -0
  169. code_puppy_core_plugins/grok_oauth/config.py +49 -0
  170. code_puppy_core_plugins/grok_oauth/oauth_flow.py +213 -0
  171. code_puppy_core_plugins/grok_oauth/register_callbacks.py +132 -0
  172. code_puppy_core_plugins/grok_oauth/utils.py +195 -0
  173. code_puppy_core_plugins/herdr/README.md +168 -0
  174. code_puppy_core_plugins/herdr/__init__.py +9 -0
  175. code_puppy_core_plugins/herdr/client.py +339 -0
  176. code_puppy_core_plugins/herdr/register_callbacks.py +140 -0
  177. code_puppy_core_plugins/herdr/reporter.py +212 -0
  178. code_puppy_core_plugins/herdr/smoke.py +143 -0
  179. code_puppy_core_plugins/herdr/sources.py +133 -0
  180. code_puppy_core_plugins/hook_creator/__init__.py +1 -0
  181. code_puppy_core_plugins/hook_creator/register_callbacks.py +33 -0
  182. code_puppy_core_plugins/hook_manager/__init__.py +1 -0
  183. code_puppy_core_plugins/hook_manager/config.py +290 -0
  184. code_puppy_core_plugins/hook_manager/hooks_menu.py +571 -0
  185. code_puppy_core_plugins/hook_manager/register_callbacks.py +227 -0
  186. code_puppy_core_plugins/meta_oauth/__init__.py +1 -0
  187. code_puppy_core_plugins/meta_oauth/config.py +55 -0
  188. code_puppy_core_plugins/meta_oauth/oauth_flow.py +109 -0
  189. code_puppy_core_plugins/meta_oauth/register_callbacks.py +154 -0
  190. code_puppy_core_plugins/meta_oauth/utils.py +252 -0
  191. code_puppy_core_plugins/namespace_skill_search/README.md +118 -0
  192. code_puppy_core_plugins/namespace_skill_search/__init__.py +15 -0
  193. code_puppy_core_plugins/namespace_skill_search/namespaces.py +125 -0
  194. code_puppy_core_plugins/namespace_skill_search/register_callbacks.py +99 -0
  195. code_puppy_core_plugins/namespace_skill_search/search_tool.py +158 -0
  196. code_puppy_core_plugins/no_tools/__init__.py +0 -0
  197. code_puppy_core_plugins/no_tools/register_callbacks.py +42 -0
  198. code_puppy_core_plugins/oauth_pasteback.py +110 -0
  199. code_puppy_core_plugins/oauth_puppy_html.py +194 -0
  200. code_puppy_core_plugins/obsidian_agent/README.md +52 -0
  201. code_puppy_core_plugins/obsidian_agent/__init__.py +8 -0
  202. code_puppy_core_plugins/obsidian_agent/agent_obsidian.py +147 -0
  203. code_puppy_core_plugins/obsidian_agent/register_callbacks.py +13 -0
  204. code_puppy_core_plugins/ollama/__init__.py +1 -0
  205. code_puppy_core_plugins/ollama/register_callbacks.py +127 -0
  206. code_puppy_core_plugins/ollama_setup/__init__.py +5 -0
  207. code_puppy_core_plugins/ollama_setup/completer.py +38 -0
  208. code_puppy_core_plugins/ollama_setup/register_callbacks.py +419 -0
  209. code_puppy_core_plugins/plugin_list/__init__.py +0 -0
  210. code_puppy_core_plugins/plugin_list/plugin_contributions.py +348 -0
  211. code_puppy_core_plugins/plugin_list/plugin_meta.py +67 -0
  212. code_puppy_core_plugins/plugin_list/plugin_text_utils.py +173 -0
  213. code_puppy_core_plugins/plugin_list/plugins_menu.py +455 -0
  214. code_puppy_core_plugins/plugin_list/plugins_menu_layout.py +194 -0
  215. code_puppy_core_plugins/plugin_list/plugins_menu_render.py +431 -0
  216. code_puppy_core_plugins/plugin_list/project_trust_flow.py +162 -0
  217. code_puppy_core_plugins/plugin_list/register_callbacks.py +281 -0
  218. code_puppy_core_plugins/pop_command/__init__.py +1 -0
  219. code_puppy_core_plugins/pop_command/register_callbacks.py +191 -0
  220. code_puppy_core_plugins/prompt_newline/__init__.py +13 -0
  221. code_puppy_core_plugins/prompt_newline/config.py +21 -0
  222. code_puppy_core_plugins/prompt_newline/register_callbacks.py +163 -0
  223. code_puppy_core_plugins/prune/__init__.py +1 -0
  224. code_puppy_core_plugins/prune/prune_menu.py +308 -0
  225. code_puppy_core_plugins/prune/prune_model.py +517 -0
  226. code_puppy_core_plugins/prune/prune_render.py +354 -0
  227. code_puppy_core_plugins/prune/register_callbacks.py +388 -0
  228. code_puppy_core_plugins/puppy_kennel/README.md +203 -0
  229. code_puppy_core_plugins/puppy_kennel/__init__.py +6 -0
  230. code_puppy_core_plugins/puppy_kennel/commands.py +206 -0
  231. code_puppy_core_plugins/puppy_kennel/config.py +36 -0
  232. code_puppy_core_plugins/puppy_kennel/kennel.py +368 -0
  233. code_puppy_core_plugins/puppy_kennel/packer.py +152 -0
  234. code_puppy_core_plugins/puppy_kennel/recorder.py +83 -0
  235. code_puppy_core_plugins/puppy_kennel/register_callbacks.py +109 -0
  236. code_puppy_core_plugins/puppy_kennel/retriever.py +28 -0
  237. code_puppy_core_plugins/puppy_kennel/schema.py +78 -0
  238. code_puppy_core_plugins/puppy_kennel/state.py +68 -0
  239. code_puppy_core_plugins/puppy_kennel/tools.py +449 -0
  240. code_puppy_core_plugins/puppy_kennel/wings.py +110 -0
  241. code_puppy_core_plugins/puppy_spinner/README.md +93 -0
  242. code_puppy_core_plugins/puppy_spinner/__init__.py +11 -0
  243. code_puppy_core_plugins/puppy_spinner/builtin_frames.py +172 -0
  244. code_puppy_core_plugins/puppy_spinner/commands.py +116 -0
  245. code_puppy_core_plugins/puppy_spinner/picker.py +379 -0
  246. code_puppy_core_plugins/puppy_spinner/register_callbacks.py +193 -0
  247. code_puppy_core_plugins/puppy_spinner/spinners.py +444 -0
  248. code_puppy_core_plugins/quick_resume/__init__.py +0 -0
  249. code_puppy_core_plugins/quick_resume/register_callbacks.py +77 -0
  250. code_puppy_core_plugins/review_pr/__init__.py +1 -0
  251. code_puppy_core_plugins/review_pr/register_callbacks.py +162 -0
  252. code_puppy_core_plugins/shell_safety/__init__.py +6 -0
  253. code_puppy_core_plugins/shell_safety/agent_shell_safety.py +69 -0
  254. code_puppy_core_plugins/shell_safety/command_cache.py +156 -0
  255. code_puppy_core_plugins/shell_safety/register_callbacks.py +203 -0
  256. code_puppy_core_plugins/stack_dump/__init__.py +1 -0
  257. code_puppy_core_plugins/stack_dump/register_callbacks.py +79 -0
  258. code_puppy_core_plugins/statusline/__init__.py +14 -0
  259. code_puppy_core_plugins/statusline/config.py +68 -0
  260. code_puppy_core_plugins/statusline/payload.py +138 -0
  261. code_puppy_core_plugins/statusline/prompt_patch.py +76 -0
  262. code_puppy_core_plugins/statusline/register_callbacks.py +45 -0
  263. code_puppy_core_plugins/statusline/runner.py +122 -0
  264. code_puppy_core_plugins/statusline/statusline_command.py +197 -0
  265. code_puppy_core_plugins/steer_queue/__init__.py +10 -0
  266. code_puppy_core_plugins/steer_queue/queue_menu.py +444 -0
  267. code_puppy_core_plugins/steer_queue/register_callbacks.py +138 -0
  268. code_puppy_core_plugins/subagent_panel/README.md +102 -0
  269. code_puppy_core_plugins/subagent_panel/__init__.py +24 -0
  270. code_puppy_core_plugins/subagent_panel/coalesce_patch.py +242 -0
  271. code_puppy_core_plugins/subagent_panel/panel_render.py +145 -0
  272. code_puppy_core_plugins/subagent_panel/register_callbacks.py +535 -0
  273. code_puppy_core_plugins/subagent_panel/resume_repaint.py +112 -0
  274. code_puppy_core_plugins/subagent_panel/state.py +231 -0
  275. code_puppy_core_plugins/switch_agent_resume/__init__.py +5 -0
  276. code_puppy_core_plugins/switch_agent_resume/register_callbacks.py +314 -0
  277. code_puppy_core_plugins/theme/README.md +86 -0
  278. code_puppy_core_plugins/theme/__init__.py +14 -0
  279. code_puppy_core_plugins/theme/bundled_palettes.py +346 -0
  280. code_puppy_core_plugins/theme/content_styles.py +146 -0
  281. code_puppy_core_plugins/theme/osc_palette.py +178 -0
  282. code_puppy_core_plugins/theme/picker.py +358 -0
  283. code_puppy_core_plugins/theme/prompt_toolkit_theme.py +113 -0
  284. code_puppy_core_plugins/theme/register_callbacks.py +348 -0
  285. code_puppy_core_plugins/theme/rich_themes.py +202 -0
  286. code_puppy_core_plugins/theme/themes.py +720 -0
  287. code_puppy_core_plugins/timestamp_heartbeat/__init__.py +1 -0
  288. code_puppy_core_plugins/timestamp_heartbeat/register_callbacks.py +114 -0
  289. code_puppy_core_plugins/token_ratio_learner/__init__.py +5 -0
  290. code_puppy_core_plugins/token_ratio_learner/ratios.py +208 -0
  291. code_puppy_core_plugins/token_ratio_learner/register_callbacks.py +213 -0
  292. code_puppy_core_plugins/universal_constructor/__init__.py +13 -0
  293. code_puppy_core_plugins/universal_constructor/models.py +138 -0
  294. code_puppy_core_plugins/universal_constructor/provider.py +62 -0
  295. code_puppy_core_plugins/universal_constructor/register_callbacks.py +75 -0
  296. code_puppy_core_plugins/universal_constructor/registry.py +302 -0
  297. code_puppy_core_plugins/universal_constructor/sandbox.py +584 -0
  298. code_puppy_core_plugins/wide_completion_menu/__init__.py +6 -0
  299. code_puppy_core_plugins/wide_completion_menu/register_callbacks.py +165 -0
  300. code_puppy_core_plugins/wiggum/__init__.py +1 -0
  301. code_puppy_core_plugins/wiggum/goal_runs.py +91 -0
  302. code_puppy_core_plugins/wiggum/judge.py +299 -0
  303. code_puppy_core_plugins/wiggum/judge_config.py +249 -0
  304. code_puppy_core_plugins/wiggum/judges_menu.py +814 -0
  305. code_puppy_core_plugins/wiggum/register_callbacks.py +569 -0
  306. code_puppy_core_plugins/wiggum/state.py +89 -0
  307. code_puppy_core_plugins/yolo_cli/__init__.py +1 -0
  308. code_puppy_core_plugins/yolo_cli/register_callbacks.py +41 -0
  309. code_puppy_core_plugins-0.0.2.dist-info/METADATA +64 -0
  310. code_puppy_core_plugins-0.0.2.dist-info/RECORD +313 -0
  311. code_puppy_core_plugins-0.0.2.dist-info/WHEEL +4 -0
  312. code_puppy_core_plugins-0.0.2.dist-info/entry_points.txt +55 -0
  313. code_puppy_core_plugins-0.0.2.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,285 @@
1
+ #!/usr/bin/env python3
2
+ """Manual sanity checks for the Claude Code OAuth plugin."""
3
+
4
+ import os
5
+ import sys
6
+ from pathlib import Path
7
+
8
+ # Ensure project root on path
9
+ PROJECT_ROOT = Path(__file__).resolve().parent.parent.parent.parent
10
+ sys.path.insert(0, str(PROJECT_ROOT))
11
+
12
+ # Switch to project root for predictable relative paths
13
+ os.chdir(PROJECT_ROOT)
14
+
15
+
16
+ def test_plugin_imports() -> bool:
17
+ """Verify the plugin modules import correctly."""
18
+ print("\n=== Testing Plugin Imports ===")
19
+
20
+ try:
21
+ from code_puppy_core_plugins.claude_code_oauth.config import (
22
+ CLAUDE_CODE_OAUTH_CONFIG,
23
+ get_token_storage_path,
24
+ )
25
+
26
+ print("✅ Config import successful")
27
+ print(f"✅ Token storage path: {get_token_storage_path()}")
28
+ print(f"✅ Known auth URL: {CLAUDE_CODE_OAUTH_CONFIG['auth_url']}")
29
+ except Exception as exc: # pragma: no cover - manual harness
30
+ print(f"❌ Config import failed: {exc}")
31
+ return False
32
+
33
+ try:
34
+ from code_puppy_core_plugins.claude_code_oauth.utils import (
35
+ add_models_to_extra_config,
36
+ build_authorization_url,
37
+ exchange_code_for_tokens,
38
+ fetch_claude_code_models,
39
+ load_claude_models,
40
+ load_stored_tokens,
41
+ parse_authorization_code,
42
+ prepare_oauth_context,
43
+ remove_claude_code_models,
44
+ save_claude_models,
45
+ save_tokens,
46
+ )
47
+
48
+ _ = (
49
+ add_models_to_extra_config,
50
+ build_authorization_url,
51
+ exchange_code_for_tokens,
52
+ fetch_claude_code_models,
53
+ load_claude_models,
54
+ load_stored_tokens,
55
+ parse_authorization_code,
56
+ prepare_oauth_context,
57
+ remove_claude_code_models,
58
+ save_claude_models,
59
+ save_tokens,
60
+ )
61
+ print("✅ Utils import successful")
62
+ except Exception as exc: # pragma: no cover - manual harness
63
+ print(f"❌ Utils import failed: {exc}")
64
+ return False
65
+
66
+ try:
67
+ from code_puppy_core_plugins.claude_code_oauth.register_callbacks import (
68
+ _custom_help,
69
+ _handle_custom_command,
70
+ )
71
+
72
+ commands = _custom_help()
73
+ print("✅ Callback registration import successful")
74
+ for name, description in commands:
75
+ print(f" /{name} - {description}")
76
+ # Ensure handler callable exists
77
+ _ = _handle_custom_command
78
+ except Exception as exc: # pragma: no cover - manual harness
79
+ print(f"❌ Callback import failed: {exc}")
80
+ return False
81
+
82
+ return True
83
+
84
+
85
+ def test_oauth_helpers() -> bool:
86
+ """Exercise helper functions without performing network requests."""
87
+ print("\n=== Testing OAuth Helper Functions ===")
88
+
89
+ try:
90
+ from urllib.parse import parse_qs, urlparse
91
+
92
+ from code_puppy_core_plugins.claude_code_oauth.utils import (
93
+ assign_redirect_uri,
94
+ build_authorization_url,
95
+ parse_authorization_code,
96
+ prepare_oauth_context,
97
+ )
98
+
99
+ context = prepare_oauth_context()
100
+ assert context.state, "Expected non-empty OAuth state"
101
+ assert context.code_verifier, "Expected PKCE code verifier"
102
+ assert context.code_challenge, "Expected PKCE code challenge"
103
+
104
+ assign_redirect_uri(context, 8765)
105
+ auth_url = build_authorization_url(context)
106
+ parsed = urlparse(auth_url)
107
+ params = parse_qs(parsed.query)
108
+ print(f"✅ Authorization URL: {auth_url}")
109
+ assert parsed.scheme == "https", "Authorization URL must use https"
110
+ assert params.get("client_id", [None])[0], "client_id missing"
111
+ assert params.get("code_challenge_method", [None])[0] == "S256"
112
+ assert params.get("state", [None])[0] == context.state
113
+ assert params.get("code_challenge", [None])[0] == context.code_challenge
114
+
115
+ sample_code = f"MYCODE#{context.state}"
116
+ parsed_code, parsed_state = parse_authorization_code(sample_code)
117
+ assert parsed_code == "MYCODE", "Code parsing failed"
118
+ assert parsed_state == context.state, "State parsing failed"
119
+ print("✅ parse_authorization_code handled state suffix correctly")
120
+
121
+ parsed_code, parsed_state = parse_authorization_code("SINGLECODE")
122
+ assert parsed_code == "SINGLECODE" and parsed_state is None
123
+ print("✅ parse_authorization_code handled bare code correctly")
124
+
125
+ return True
126
+
127
+ except AssertionError as exc:
128
+ print(f"❌ Assertion failed: {exc}")
129
+ return False
130
+ except Exception as exc: # pragma: no cover - manual harness
131
+ print(f"❌ OAuth helper test crashed: {exc}")
132
+ import traceback
133
+
134
+ traceback.print_exc()
135
+ return False
136
+
137
+
138
+ def test_file_operations() -> bool:
139
+ """Ensure token/model storage helpers behave sanely."""
140
+ print("\n=== Testing File Operations ===")
141
+
142
+ try:
143
+ from code_puppy_core_plugins.claude_code_oauth.config import (
144
+ get_claude_models_path,
145
+ get_token_storage_path,
146
+ )
147
+ from code_puppy_core_plugins.claude_code_oauth.utils import (
148
+ load_claude_models,
149
+ load_stored_tokens,
150
+ )
151
+
152
+ tokens = load_stored_tokens()
153
+ print(f"✅ Token load result: {'present' if tokens else 'none'}")
154
+
155
+ models = load_claude_models()
156
+ print(f"✅ Loaded {len(models)} Claude models")
157
+ for name, config in models.items():
158
+ print(f" - {name}: {config.get('type', 'unknown type')}")
159
+
160
+ token_path = get_token_storage_path()
161
+ models_path = get_claude_models_path()
162
+ token_path.parent.mkdir(parents=True, exist_ok=True)
163
+ models_path.parent.mkdir(parents=True, exist_ok=True)
164
+ print(f"✅ Token path: {token_path}")
165
+ print(f"✅ Models path: {models_path}")
166
+
167
+ return True
168
+
169
+ except Exception as exc: # pragma: no cover - manual harness
170
+ print(f"❌ File operations test failed: {exc}")
171
+ import traceback
172
+
173
+ traceback.print_exc()
174
+ return False
175
+
176
+
177
+ def test_command_handlers() -> bool:
178
+ """Smoke-test command handler routing without simulating authentication."""
179
+ print("\n=== Testing Command Handlers ===")
180
+
181
+ from code_puppy_core_plugins.claude_code_oauth.register_callbacks import (
182
+ _handle_custom_command,
183
+ )
184
+
185
+ unknown = _handle_custom_command("/bogus", "bogus")
186
+ print(f"✅ Unknown command returned: {unknown}")
187
+
188
+ partial = _handle_custom_command("/claude-code", "claude-code")
189
+ print(f"✅ Partial command returned: {partial}")
190
+
191
+ # Do not invoke the real auth command here because it prompts for input.
192
+ return True
193
+
194
+
195
+ def test_configuration() -> bool:
196
+ """Validate configuration keys and basic formats."""
197
+ print("\n=== Testing Configuration ===")
198
+
199
+ try:
200
+ from code_puppy_core_plugins.claude_code_oauth.config import (
201
+ CLAUDE_CODE_OAUTH_CONFIG,
202
+ )
203
+
204
+ required_keys = [
205
+ "auth_url",
206
+ "token_url",
207
+ "api_base_url",
208
+ "client_id",
209
+ "scope",
210
+ "redirect_host",
211
+ "redirect_path",
212
+ "callback_port_range",
213
+ "callback_timeout",
214
+ "token_storage",
215
+ "prefix",
216
+ "default_context_length",
217
+ "api_key_env_var",
218
+ ]
219
+
220
+ missing = [key for key in required_keys if key not in CLAUDE_CODE_OAUTH_CONFIG]
221
+ if missing:
222
+ print(f"❌ Missing configuration keys: {missing}")
223
+ return False
224
+
225
+ for key in required_keys:
226
+ value = CLAUDE_CODE_OAUTH_CONFIG[key]
227
+ print(f"✅ {key}: {value}")
228
+
229
+ for url_key in ["auth_url", "token_url", "api_base_url"]:
230
+ url = CLAUDE_CODE_OAUTH_CONFIG[url_key]
231
+ if not str(url).startswith("https://"):
232
+ print(f"❌ URL must use HTTPS: {url_key} -> {url}")
233
+ return False
234
+ print(f"✅ {url_key} uses HTTPS")
235
+
236
+ return True
237
+
238
+ except Exception as exc: # pragma: no cover - manual harness
239
+ print(f"❌ Configuration test crashed: {exc}")
240
+ import traceback
241
+
242
+ traceback.print_exc()
243
+ return False
244
+
245
+
246
+ def main() -> bool:
247
+ """Run all manual checks."""
248
+ print("Claude Code OAuth Plugin Test Suite")
249
+ print("=" * 40)
250
+
251
+ tests = [
252
+ test_plugin_imports,
253
+ test_oauth_helpers,
254
+ test_file_operations,
255
+ test_command_handlers,
256
+ test_configuration,
257
+ ]
258
+
259
+ passed = 0
260
+ for test in tests:
261
+ try:
262
+ if test():
263
+ passed += 1
264
+ else:
265
+ print("\n❌ Test failed")
266
+ except Exception as exc: # pragma: no cover - manual harness
267
+ print(f"\n❌ Test crashed: {exc}")
268
+
269
+ print("\n=== Test Results ===")
270
+ print(f"Passed: {passed}/{len(tests)}")
271
+
272
+ if passed == len(tests):
273
+ print("✅ All sanity checks passed!")
274
+ print("Next steps:")
275
+ print("1. Restart Code Puppy if it was running")
276
+ print("2. Run /claude-code-auth")
277
+ print("3. Paste the Claude Console authorization code when prompted")
278
+ return True
279
+
280
+ print("❌ Some checks failed. Investigate before using the plugin.")
281
+ return False
282
+
283
+
284
+ if __name__ == "__main__":
285
+ sys.exit(0 if main() else 1)
@@ -0,0 +1,240 @@
1
+ """Token refresh heartbeat for long-running Claude Code OAuth sessions.
2
+
3
+ This module provides a background task that periodically checks and refreshes
4
+ Claude Code OAuth tokens during long-running agentic operations. This ensures
5
+ that tokens don't expire during extended streaming responses or tool processing.
6
+
7
+ Usage:
8
+ async with token_refresh_heartbeat_context():
9
+ # Long running agent operation
10
+ await agent.run(...)
11
+ """
12
+
13
+ from __future__ import annotations
14
+
15
+ import asyncio
16
+ import logging
17
+ import time
18
+ from contextlib import asynccontextmanager
19
+ from typing import Optional
20
+
21
+ logger = logging.getLogger(__name__)
22
+
23
+ # Heartbeat every 2 minutes: frequent enough to catch expiring tokens before they
24
+ # cause issues, not so frequent as to spam the token endpoint.
25
+ HEARTBEAT_INTERVAL_SECONDS = 120
26
+
27
+ # Minimum time between refresh attempts to avoid hammering the endpoint
28
+ MIN_REFRESH_INTERVAL_SECONDS = 60
29
+
30
+ # Global tracking of last refresh time to coordinate across heartbeats
31
+ _last_refresh_time: float = 0.0
32
+
33
+
34
+ class TokenRefreshHeartbeat:
35
+ """Background task that periodically refreshes Claude Code OAuth tokens.
36
+
37
+ This runs as an asyncio task during agent operations and checks if the
38
+ token needs refreshing at regular intervals.
39
+ """
40
+
41
+ def __init__(
42
+ self,
43
+ interval: float = HEARTBEAT_INTERVAL_SECONDS,
44
+ min_refresh_interval: float = MIN_REFRESH_INTERVAL_SECONDS,
45
+ ):
46
+ self._interval = interval
47
+ self._min_refresh_interval = min_refresh_interval
48
+ self._task: Optional[asyncio.Task] = None
49
+ self._stop_event = asyncio.Event()
50
+ self._lock = asyncio.Lock()
51
+ self._refresh_count = 0
52
+
53
+ async def start(self) -> None:
54
+ """Start the heartbeat background task."""
55
+ if self._task is not None:
56
+ logger.debug("Heartbeat already running")
57
+ return
58
+
59
+ self._stop_event.clear()
60
+ self._task = asyncio.create_task(self._heartbeat_loop())
61
+ logger.debug("Token refresh heartbeat started")
62
+
63
+ async def stop(self) -> None:
64
+ """Stop the heartbeat background task."""
65
+ if self._task is None:
66
+ return
67
+
68
+ self._stop_event.set()
69
+ self._task.cancel()
70
+
71
+ try:
72
+ await self._task
73
+ except asyncio.CancelledError:
74
+ pass
75
+
76
+ self._task = None
77
+ logger.debug(
78
+ "Token refresh heartbeat stopped (refreshed %d times)",
79
+ self._refresh_count,
80
+ )
81
+
82
+ async def _heartbeat_loop(self) -> None:
83
+ """Main heartbeat loop that periodically checks token status."""
84
+ global _last_refresh_time
85
+
86
+ while not self._stop_event.is_set():
87
+ try:
88
+ # Wait for the interval or until stopped
89
+ try:
90
+ await asyncio.wait_for(
91
+ self._stop_event.wait(), timeout=self._interval
92
+ )
93
+ # If we got here, stop event was set
94
+ break
95
+ except asyncio.TimeoutError:
96
+ # Normal timeout - time to check token
97
+ pass
98
+
99
+ # Check if we should attempt refresh
100
+ async with self._lock:
101
+ now = time.time()
102
+ if now - _last_refresh_time < self._min_refresh_interval:
103
+ logger.debug(
104
+ "Skipping refresh - last refresh was %.1f seconds ago",
105
+ now - _last_refresh_time,
106
+ )
107
+ continue
108
+
109
+ # Attempt the refresh
110
+ refreshed = await self._attempt_refresh()
111
+ if refreshed:
112
+ _last_refresh_time = now
113
+ self._refresh_count += 1
114
+
115
+ except asyncio.CancelledError:
116
+ break
117
+ except Exception as exc:
118
+ logger.debug("Error in heartbeat loop: %s", exc)
119
+ # Continue running - don't let errors kill the heartbeat
120
+ await asyncio.sleep(5) # Brief pause before retrying
121
+
122
+ async def _attempt_refresh(self) -> bool:
123
+ """Attempt to refresh the token if needed.
124
+
125
+ Returns:
126
+ True if a refresh was performed, False otherwise.
127
+ """
128
+ try:
129
+ # Import here to avoid circular imports
130
+ from .utils import (
131
+ is_token_expired,
132
+ load_stored_tokens,
133
+ refresh_access_token,
134
+ )
135
+
136
+ tokens = await asyncio.to_thread(load_stored_tokens)
137
+ if not tokens:
138
+ logger.debug("No stored tokens found")
139
+ return False
140
+
141
+ if not is_token_expired(tokens):
142
+ logger.debug("Token not yet expired, skipping refresh")
143
+ return False
144
+
145
+ # Token is expiring soon, refresh it
146
+ logger.info("Heartbeat: Token expiring soon, refreshing proactively")
147
+ refreshed_token = await asyncio.to_thread(refresh_access_token, force=False)
148
+
149
+ if refreshed_token:
150
+ logger.info("Heartbeat: Successfully refreshed token")
151
+ return True
152
+ else:
153
+ logger.warning("Heartbeat: Token refresh returned None")
154
+ return False
155
+
156
+ except Exception as exc:
157
+ logger.error("Heartbeat: Error during token refresh: %s", exc)
158
+ return False
159
+
160
+ @property
161
+ def refresh_count(self) -> int:
162
+ """Get the number of successful refreshes performed by this heartbeat."""
163
+ return self._refresh_count
164
+
165
+ @property
166
+ def is_running(self) -> bool:
167
+ """Check if the heartbeat is currently running."""
168
+ return self._task is not None and not self._task.done()
169
+
170
+
171
+ # Global heartbeat instance for the current session
172
+ _current_heartbeat: Optional[TokenRefreshHeartbeat] = None
173
+
174
+
175
+ @asynccontextmanager
176
+ async def token_refresh_heartbeat_context(
177
+ interval: float = HEARTBEAT_INTERVAL_SECONDS,
178
+ ):
179
+ """Context manager that runs token refresh heartbeat during its scope.
180
+
181
+ Use this around long-running agent operations to ensure tokens stay fresh.
182
+
183
+ Args:
184
+ interval: Seconds between heartbeat checks. Default is 2 minutes.
185
+
186
+ Example:
187
+ async with token_refresh_heartbeat_context():
188
+ result = await agent.run(prompt)
189
+ """
190
+ global _current_heartbeat
191
+
192
+ heartbeat = TokenRefreshHeartbeat(interval=interval)
193
+
194
+ try:
195
+ await heartbeat.start()
196
+ _current_heartbeat = heartbeat
197
+ yield heartbeat
198
+ finally:
199
+ await heartbeat.stop()
200
+ _current_heartbeat = None
201
+
202
+
203
+ def is_heartbeat_running() -> bool:
204
+ """Check if a token refresh heartbeat is currently active."""
205
+ return _current_heartbeat is not None and _current_heartbeat.is_running
206
+
207
+
208
+ def get_current_heartbeat() -> Optional[TokenRefreshHeartbeat]:
209
+ """Get the currently running heartbeat instance, if any."""
210
+ return _current_heartbeat
211
+
212
+
213
+ async def force_token_refresh() -> bool:
214
+ """Force an immediate token refresh.
215
+
216
+ This can be called from anywhere to trigger a token refresh,
217
+ regardless of whether a heartbeat is running.
218
+
219
+ Returns:
220
+ True if refresh was successful, False otherwise.
221
+ """
222
+ global _last_refresh_time
223
+
224
+ try:
225
+ from .utils import refresh_access_token
226
+
227
+ logger.info("Forcing token refresh")
228
+ refreshed_token = refresh_access_token(force=True)
229
+
230
+ if refreshed_token:
231
+ _last_refresh_time = time.time()
232
+ logger.info("Force refresh successful")
233
+ return True
234
+ else:
235
+ logger.warning("Force refresh returned None")
236
+ return False
237
+
238
+ except Exception as exc:
239
+ logger.error("Force refresh error: %s", exc)
240
+ return False