code-puppy-core-plugins 0.0.30__tar.gz → 0.0.32__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.
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/PKG-INFO +1 -1
- code_puppy_core_plugins-0.0.32/code_puppy_core_plugins/auto_continue/__init__.py +1 -0
- code_puppy_core_plugins-0.0.32/code_puppy_core_plugins/auto_continue/classifier.py +91 -0
- code_puppy_core_plugins-0.0.32/code_puppy_core_plugins/auto_continue/register_callbacks.py +41 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/plugin_list/register_callbacks.py +82 -20
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/pyproject.toml +2 -1
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/.gitignore +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/LICENSE +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/README.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/acp/README.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/acp/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/acp/agent.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/acp/bridge.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/acp/capabilities.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/acp/commands.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/acp/content.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/acp/io_delegation.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/acp/mcp_config.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/acp/permissions.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/acp/persistence.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/acp/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/acp/replay.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/acp/session.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/acp/session_config.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/acp/state.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/agent_creator_skill/SKILL.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/agent_creator_skill/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/agent_creator_skill/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/agent_skills/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/agent_skills/config.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/agent_skills/discovery.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/agent_skills/downloader.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/agent_skills/enabled_skills.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/agent_skills/installer.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/agent_skills/metadata.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/agent_skills/prompt_builder.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/agent_skills/provider.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/agent_skills/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/agent_skills/remote_catalog.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/agent_skills/skill_catalog.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/agent_skills/skill_commands.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/agent_skills/skills_install_menu.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/agent_skills/skills_menu.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/aws_bedrock/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/aws_bedrock/config.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/aws_bedrock/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/aws_bedrock/utils.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/azure_foundry/README.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/azure_foundry/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/azure_foundry/config.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/azure_foundry/discovery.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/azure_foundry/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/azure_foundry/token.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/azure_foundry/utils.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/btw/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/btw/inline_view.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/btw/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/btw/side_query.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/chatgpt_oauth/IMAGEGEN_SKILL.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/chatgpt_oauth/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/chatgpt_oauth/config.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/chatgpt_oauth/image_generation.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/chatgpt_oauth/image_tool.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/chatgpt_oauth/model_catalog.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/chatgpt_oauth/oauth_flow.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/chatgpt_oauth/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/chatgpt_oauth/test_plugin.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/chatgpt_oauth/usage.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/chatgpt_oauth/utils.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/claude_code_hooks/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/claude_code_hooks/config.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/claude_code_hooks/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/claude_code_hooks/trust.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/claude_code_oauth/README.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/claude_code_oauth/SETUP.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/claude_code_oauth/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/claude_code_oauth/config.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/claude_code_oauth/fast_mode.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/claude_code_oauth/prompt_handler.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/claude_code_oauth/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/claude_code_oauth/test_plugin.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/claude_code_oauth/token_refresh_heartbeat.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/claude_code_oauth/utils.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/code_puppy_agent/AGENTS_AND_TOOLS.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/code_puppy_agent/MODELS_AND_MCP.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/code_puppy_agent/PLUGINS_AND_CALLBACKS.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/code_puppy_agent/SESSIONS_AND_HISTORY.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/code_puppy_agent/SKILL.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/code_puppy_agent/SKILLS_SYSTEM.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/code_puppy_agent/SYSTEM_PROMPT_CONFIG_AND_I18N.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/code_puppy_agent/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/code_puppy_agent/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/computer_use/NativeCapture.swift +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/computer_use/README.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/computer_use/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/computer_use/accessibility.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/computer_use/activation.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/computer_use/backend.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/computer_use/backend_types.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/computer_use/capture.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/computer_use/commands.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/computer_use/geometry.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/computer_use/inline_image.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/computer_use/keycodes.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/computer_use/policy.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/computer_use/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/computer_use/safety.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/computer_use/settle.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/computer_use/state.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/computer_use/tools.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/context_indicator/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/context_indicator/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/context_indicator/usage.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/copilot_auth/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/copilot_auth/config.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/copilot_auth/reasoning_client.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/copilot_auth/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/copilot_auth/utils.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/customizable_commands/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/customizable_commands/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/dbos_durable_exec/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/dbos_durable_exec/cancel.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/dbos_durable_exec/commands.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/dbos_durable_exec/config.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/dbos_durable_exec/lifecycle.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/dbos_durable_exec/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/dbos_durable_exec/runtime.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/dbos_durable_exec/startup_lock.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/dbos_durable_exec/workflow_ids.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/dbos_durable_exec/wrapper.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/destructive_command_guard/AGENTS.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/destructive_command_guard/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/destructive_command_guard/detector.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/destructive_command_guard/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/emoji_filter/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/emoji_filter/config.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/emoji_filter/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/emoji_filter/stripper.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/empty_html_comment_filter/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/example_custom_command/README.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/example_custom_command/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/file_permission_handler/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/file_permission_handler/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/_docs/README.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/_docs/cheatsheet.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/_docs/pipeline.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/_docs/synopsis.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/about.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/address-feedback.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/ask.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/aug.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/auto-pilot.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/cheatsheet.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/commit.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/config.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/create-pr.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/exec.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/new.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/qa.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/rebase.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/review.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/split.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/squash-commits.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/status.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/commands/flux/tests.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/scripts/flux_about.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/scripts/flux_cheatsheet.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/bundled/scripts/flux_status.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/installer.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/flux_bootstrap/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/force_push_guard/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/force_push_guard/detector.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/force_push_guard/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/fork/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/fork/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/frontend_emitter/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/frontend_emitter/emitter.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/frontend_emitter/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/frontend_emitter/session_context.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/grok_oauth/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/grok_oauth/config.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/grok_oauth/oauth_flow.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/grok_oauth/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/grok_oauth/utils.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/herdr/README.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/herdr/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/herdr/client.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/herdr/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/herdr/reporter.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/herdr/smoke.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/herdr/sources.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/hook_creator/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/hook_creator/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/hook_manager/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/hook_manager/config.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/hook_manager/hooks_menu.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/hook_manager/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/hook_manager/trust_handler.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/logfire_oauth/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/logfire_oauth/oauth.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/logfire_oauth/query_tool.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/logfire_oauth/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/logfire_sessions/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/logfire_sessions/mirror.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/logfire_sessions/query.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/logfire_sessions/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/logfire_sessions/sync.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/meta_oauth/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/meta_oauth/config.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/meta_oauth/oauth_flow.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/meta_oauth/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/meta_oauth/utils.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/namespace_skill_search/README.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/namespace_skill_search/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/namespace_skill_search/namespaces.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/namespace_skill_search/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/namespace_skill_search/search_tool.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/no_tools/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/no_tools/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/oauth_pasteback.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/oauth_puppy_html.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/obsidian_agent/README.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/obsidian_agent/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/obsidian_agent/agent_obsidian.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/obsidian_agent/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/ollama/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/ollama/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/ollama_setup/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/ollama_setup/completer.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/ollama_setup/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/openrouter_oauth/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/openrouter_oauth/config.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/openrouter_oauth/oauth_flow.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/openrouter_oauth/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/openrouter_oauth/test_plugin.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/plugin_list/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/plugin_list/plugin_contributions.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/plugin_list/plugin_meta.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/plugin_list/plugin_text_utils.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/plugin_list/plugins_menu.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/plugin_list/plugins_menu_render.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/plugin_list/project_trust_flow.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/pop_command/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/pop_command/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/prompt_newline/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/prompt_newline/config.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/prompt_newline/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/prune/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/prune/prune_menu.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/prune/prune_model.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/prune/prune_render.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/prune/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/puppy_kennel/README.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/puppy_kennel/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/puppy_kennel/commands.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/puppy_kennel/config.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/puppy_kennel/kennel.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/puppy_kennel/packer.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/puppy_kennel/recorder.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/puppy_kennel/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/puppy_kennel/retriever.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/puppy_kennel/schema.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/puppy_kennel/state.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/puppy_kennel/tools.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/puppy_kennel/wings.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/puppy_spinner/README.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/puppy_spinner/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/puppy_spinner/builtin_frames.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/puppy_spinner/commands.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/puppy_spinner/picker.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/puppy_spinner/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/puppy_spinner/spinners.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/qa_kitten_skill/SKILL.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/qa_kitten_skill/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/qa_kitten_skill/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/quick_resume/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/quick_resume/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/review_pr/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/review_pr/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/session_namer/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/session_namer/namer.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/session_namer/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/shell_safety/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/shell_safety/agent_shell_safety.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/shell_safety/command_cache.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/shell_safety/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/spill/LICENSE.deepseek +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/spill/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/spill/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/spill/store.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/stack_dump/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/stack_dump/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/statusline/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/statusline/config.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/statusline/payload.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/statusline/prompt_patch.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/statusline/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/statusline/runner.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/statusline/statusline_command.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/steer_queue/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/steer_queue/queue_menu.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/steer_queue/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/subagent_panel/README.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/subagent_panel/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/subagent_panel/coalesce_patch.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/subagent_panel/panel_render.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/subagent_panel/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/subagent_panel/resume_repaint.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/subagent_panel/state.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/switch_agent_resume/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/switch_agent_resume/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/termflow_tui.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/theme/README.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/theme/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/theme/bundled_palettes.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/theme/content_styles.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/theme/osc_palette.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/theme/picker.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/theme/prompt_toolkit_theme.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/theme/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/theme/rich_themes.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/theme/themes.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/timestamp_heartbeat/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/timestamp_heartbeat/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/token_ratio_learner/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/token_ratio_learner/ratios.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/token_ratio_learner/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/universal_constructor/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/universal_constructor/models.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/universal_constructor/provider.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/universal_constructor/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/universal_constructor/registry.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/universal_constructor/sandbox.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/web_retriever_skill/SKILL.md +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/web_retriever_skill/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/web_retriever_skill/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/wiggum/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/wiggum/goal_runs.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/wiggum/judge.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/wiggum/judge_config.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/wiggum/judges_menu.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/wiggum/register_callbacks.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/wiggum/state.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/yolo_cli/__init__.py +0 -0
- {code_puppy_core_plugins-0.0.30 → code_puppy_core_plugins-0.0.32}/code_puppy_core_plugins/yolo_cli/register_callbacks.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: code-puppy-core-plugins
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.32
|
|
4
4
|
Summary: Official plugin bundle for Code Puppy
|
|
5
5
|
Project-URL: Repository, https://github.com/mpfaffenberger/code_puppy_core_plugins
|
|
6
6
|
Project-URL: Homepage, https://github.com/mpfaffenberger/code_puppy_core_plugins
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Automatic approval of routine agent continuation requests."""
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
"""Private, one-shot model classifier for automatic continuation."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
import asyncio
|
|
6
|
+
from typing import Literal
|
|
7
|
+
|
|
8
|
+
from pydantic import BaseModel
|
|
9
|
+
|
|
10
|
+
Approval = Literal["yes, go.", "continue", "okay"]
|
|
11
|
+
|
|
12
|
+
_INSTRUCTIONS = """Decide whether the assistant is merely waiting for permission to
|
|
13
|
+
continue routine work the user already requested.
|
|
14
|
+
|
|
15
|
+
Approve only a clear request to continue, proceed, or perform an explicitly
|
|
16
|
+
described next step within the existing task. Do not approve destructive or
|
|
17
|
+
risky actions, credential or payment requests, ambiguous choices, requests for
|
|
18
|
+
new requirements, completed work, or anything needing a real human decision.
|
|
19
|
+
Return no approval when uncertain."""
|
|
20
|
+
|
|
21
|
+
_NON_THINKING_OVERRIDES = {
|
|
22
|
+
"reasoning_effort": "none",
|
|
23
|
+
"extended_thinking": "off",
|
|
24
|
+
"thinking_type": "disabled",
|
|
25
|
+
"thinking_enabled": False,
|
|
26
|
+
"verbosity": "low",
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
class ContinuationDecision(BaseModel):
|
|
31
|
+
"""Strict classifier result; ``None`` means wait for the user."""
|
|
32
|
+
|
|
33
|
+
approval: Approval | None = None
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
def _model_name() -> str | None:
|
|
37
|
+
"""Use the dedicated override when available, otherwise the global model."""
|
|
38
|
+
try:
|
|
39
|
+
from code_puppy.config import get_auto_continue_model_name
|
|
40
|
+
|
|
41
|
+
return get_auto_continue_model_name()
|
|
42
|
+
except ImportError: # Compatibility with core versions before the setting.
|
|
43
|
+
from code_puppy.config import get_global_model_name, get_value
|
|
44
|
+
|
|
45
|
+
return get_value("auto_continue_model") or get_global_model_name()
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
async def classify(response: str) -> Approval | None:
|
|
49
|
+
"""Classify one response without entering Code Puppy's sub-agent runtime."""
|
|
50
|
+
from pydantic_ai import Agent, UsageLimits
|
|
51
|
+
|
|
52
|
+
from code_puppy.model_factory import ModelFactory, make_model_settings
|
|
53
|
+
from code_puppy.model_utils import prepare_prompt_for_model
|
|
54
|
+
|
|
55
|
+
model_name = _model_name()
|
|
56
|
+
if not model_name:
|
|
57
|
+
return None
|
|
58
|
+
models_config = ModelFactory.load_config()
|
|
59
|
+
if model_name not in models_config:
|
|
60
|
+
return None
|
|
61
|
+
|
|
62
|
+
model = ModelFactory.get_model(model_name, models_config)
|
|
63
|
+
prepared = prepare_prompt_for_model(
|
|
64
|
+
model_name,
|
|
65
|
+
_INSTRUCTIONS,
|
|
66
|
+
f"Classify this assistant response:\n\n{response}",
|
|
67
|
+
prepend_system_to_user=True,
|
|
68
|
+
)
|
|
69
|
+
agent = Agent(
|
|
70
|
+
model=model,
|
|
71
|
+
instructions=prepared.instructions,
|
|
72
|
+
output_type=ContinuationDecision,
|
|
73
|
+
retries=0,
|
|
74
|
+
model_settings=make_model_settings(
|
|
75
|
+
model_name,
|
|
76
|
+
max_tokens=64,
|
|
77
|
+
overrides=_NON_THINKING_OVERRIDES,
|
|
78
|
+
),
|
|
79
|
+
)
|
|
80
|
+
try:
|
|
81
|
+
async with asyncio.timeout(30):
|
|
82
|
+
result = await agent.run(
|
|
83
|
+
prepared.user_prompt,
|
|
84
|
+
usage_limits=UsageLimits(request_limit=1),
|
|
85
|
+
)
|
|
86
|
+
except Exception:
|
|
87
|
+
return None
|
|
88
|
+
return result.output.approval
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
__all__ = ["Approval", "ContinuationDecision", "classify"]
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"""Register automatic continuation after routine permission requests."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Any
|
|
6
|
+
|
|
7
|
+
from code_puppy.callbacks import register_callback
|
|
8
|
+
|
|
9
|
+
from .classifier import classify
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def _response_text(result: Any) -> str | None:
|
|
13
|
+
if result is None:
|
|
14
|
+
return None
|
|
15
|
+
output = getattr(result, "output", result)
|
|
16
|
+
return output if isinstance(output, str) else None
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
async def _on_interactive_turn_end(
|
|
20
|
+
agent: Any,
|
|
21
|
+
prompt: str,
|
|
22
|
+
result: Any = None,
|
|
23
|
+
*,
|
|
24
|
+
success: bool = True,
|
|
25
|
+
error: BaseException | None = None,
|
|
26
|
+
) -> dict[str, str] | None:
|
|
27
|
+
"""Ask the classifier whether the completed response should be continued."""
|
|
28
|
+
response = _response_text(result)
|
|
29
|
+
if not success or error is not None or not response:
|
|
30
|
+
return None
|
|
31
|
+
|
|
32
|
+
approval = await classify(response)
|
|
33
|
+
if approval is None:
|
|
34
|
+
return None
|
|
35
|
+
return {"prompt": approval}
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
register_callback("interactive_turn_end", _on_interactive_turn_end)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
__all__ = ["_on_interactive_turn_end"]
|
|
@@ -23,28 +23,59 @@ from code_puppy.callbacks import register_callback
|
|
|
23
23
|
|
|
24
24
|
logger = logging.getLogger(__name__)
|
|
25
25
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
""
|
|
26
|
+
_CONTRIB_LABELS = [
|
|
27
|
+
("tools", "Tools"),
|
|
28
|
+
("commands", "Commands"),
|
|
29
|
+
("agents", "Agents"),
|
|
30
|
+
("skills", "Skills"),
|
|
31
|
+
("model_types", "Model Types"),
|
|
32
|
+
("model_providers", "Providers"),
|
|
33
|
+
("mcp_servers", "MCP Servers"),
|
|
34
|
+
("browser_types", "Browsers"),
|
|
35
|
+
("agent_tools", "Agent Tools"),
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
def _format_plugin_list(names: list[str], tier: str, disabled: set[str]) -> str:
|
|
40
|
+
"""Return a detailed listing for plugins in *tier*."""
|
|
29
41
|
if not names:
|
|
30
42
|
return " (none)"
|
|
31
|
-
|
|
43
|
+
from code_puppy_core_plugins.plugin_list import plugin_contributions, plugin_meta
|
|
44
|
+
|
|
45
|
+
lines: list[str] = []
|
|
32
46
|
for name in sorted(names):
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
47
|
+
is_disabled = name in disabled
|
|
48
|
+
status_suffix = " (disabled)" if is_disabled else ""
|
|
49
|
+
lines.append(f" {name}{status_suffix}")
|
|
50
|
+
|
|
51
|
+
description = plugin_meta.get_description(name, tier)
|
|
52
|
+
if description:
|
|
53
|
+
lines.append(f" {description}")
|
|
54
|
+
|
|
55
|
+
try:
|
|
56
|
+
contributions = plugin_contributions.get_contributions(name)
|
|
57
|
+
except Exception:
|
|
58
|
+
contributions = {}
|
|
59
|
+
contrib_parts: list[str] = []
|
|
60
|
+
for key, label in _CONTRIB_LABELS:
|
|
61
|
+
items = contributions.get(key)
|
|
62
|
+
if items:
|
|
63
|
+
contrib_parts.append(f"{label}: {', '.join(str(i) for i in items)}")
|
|
64
|
+
if contrib_parts:
|
|
65
|
+
lines.append(f" Contributes: {' | '.join(contrib_parts)}")
|
|
66
|
+
|
|
67
|
+
hooks = plugin_meta.get_hooks(name)
|
|
68
|
+
if hooks:
|
|
69
|
+
lines.append(f" Hooks: {', '.join(hooks)}")
|
|
70
|
+
|
|
71
|
+
path = plugin_meta.get_file_path(name, tier)
|
|
72
|
+
if path:
|
|
73
|
+
lines.append(f" Path: {path}")
|
|
74
|
+
|
|
75
|
+
lines.append("")
|
|
37
76
|
return "\n".join(lines)
|
|
38
77
|
|
|
39
78
|
|
|
40
|
-
_PROJECT_STATUS_LABELS = {
|
|
41
|
-
"untrusted": "(not enabled -- review & enable in the /plugins TUI)",
|
|
42
|
-
"changed": "(changed since accepted -- re-review in the /plugins TUI)",
|
|
43
|
-
"disabled": "(disabled)",
|
|
44
|
-
"error": "(failed to load -- see logs)",
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
|
|
48
79
|
def _format_project_plugin_list(
|
|
49
80
|
loaded_names: list[str],
|
|
50
81
|
statuses: dict[str, str],
|
|
@@ -55,17 +86,48 @@ def _format_project_plugin_list(
|
|
|
55
86
|
Project plugins are disabled by default; unlike other tiers we also
|
|
56
87
|
show plugins that were discovered but NOT imported, with the reason.
|
|
57
88
|
"""
|
|
89
|
+
from code_puppy_core_plugins.plugin_list import plugin_contributions, plugin_meta
|
|
90
|
+
|
|
91
|
+
_PROJECT_STATUS_LABELS = {
|
|
92
|
+
"untrusted": "(not enabled -- review & enable in /plugins TUI)",
|
|
93
|
+
"changed": "(changed since accepted -- re-review in /plugins TUI)",
|
|
94
|
+
"disabled": "(disabled)",
|
|
95
|
+
"error": "(failed to load -- see logs)",
|
|
96
|
+
}
|
|
58
97
|
names = sorted(set(loaded_names) | set(statuses))
|
|
59
98
|
if not names:
|
|
60
99
|
return " (none)"
|
|
61
|
-
lines = []
|
|
100
|
+
lines: list[str] = []
|
|
62
101
|
for name in names:
|
|
63
102
|
status = statuses.get(name, "loaded" if name in loaded_names else "untrusted")
|
|
64
103
|
if status == "loaded":
|
|
65
104
|
suffix = " (disabled)" if name in disabled else ""
|
|
66
105
|
else:
|
|
67
106
|
suffix = " " + _PROJECT_STATUS_LABELS.get(status, f"({status})")
|
|
68
|
-
lines.append(f"
|
|
107
|
+
lines.append(f" {name}{suffix}")
|
|
108
|
+
|
|
109
|
+
if status == "loaded":
|
|
110
|
+
description = plugin_meta.get_description(name, "project")
|
|
111
|
+
if description:
|
|
112
|
+
lines.append(f" {description}")
|
|
113
|
+
|
|
114
|
+
try:
|
|
115
|
+
contributions = plugin_contributions.get_contributions(name)
|
|
116
|
+
except Exception:
|
|
117
|
+
contributions = {}
|
|
118
|
+
contrib_parts: list[str] = []
|
|
119
|
+
for key, label in _CONTRIB_LABELS:
|
|
120
|
+
items = contributions.get(key)
|
|
121
|
+
if items:
|
|
122
|
+
contrib_parts.append(f"{label}: {', '.join(str(i) for i in items)}")
|
|
123
|
+
if contrib_parts:
|
|
124
|
+
lines.append(f" Contributes: {' | '.join(contrib_parts)}")
|
|
125
|
+
|
|
126
|
+
hooks = plugin_meta.get_hooks(name)
|
|
127
|
+
if hooks:
|
|
128
|
+
lines.append(f" Hooks: {', '.join(hooks)}")
|
|
129
|
+
|
|
130
|
+
lines.append("")
|
|
69
131
|
return "\n".join(lines)
|
|
70
132
|
|
|
71
133
|
|
|
@@ -95,10 +157,10 @@ def _build_output() -> str:
|
|
|
95
157
|
"Loaded Plugins",
|
|
96
158
|
"",
|
|
97
159
|
f"Builtin ({builtin_path}):",
|
|
98
|
-
_format_plugin_list(loaded["builtin"], disabled),
|
|
160
|
+
_format_plugin_list(loaded["builtin"], "builtin", disabled),
|
|
99
161
|
"",
|
|
100
162
|
f"User ({user_path}):",
|
|
101
|
-
_format_plugin_list(loaded["user"], disabled),
|
|
163
|
+
_format_plugin_list(loaded["user"], "user", disabled),
|
|
102
164
|
"",
|
|
103
165
|
f"Project ({project_path}):",
|
|
104
166
|
_format_project_plugin_list(loaded["project"], project_status, disabled),
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "code-puppy-core-plugins"
|
|
7
|
-
version = "0.0.
|
|
7
|
+
version = "0.0.32"
|
|
8
8
|
description = "Official plugin bundle for Code Puppy"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11,<3.15"
|
|
@@ -33,6 +33,7 @@ agent_skills = "code_puppy_core_plugins.agent_skills.register_callbacks"
|
|
|
33
33
|
agent_creator_skill = "code_puppy_core_plugins.agent_creator_skill.register_callbacks"
|
|
34
34
|
aws_bedrock = "code_puppy_core_plugins.aws_bedrock.register_callbacks"
|
|
35
35
|
azure_foundry = "code_puppy_core_plugins.azure_foundry.register_callbacks"
|
|
36
|
+
auto_continue = "code_puppy_core_plugins.auto_continue.register_callbacks"
|
|
36
37
|
btw = "code_puppy_core_plugins.btw.register_callbacks"
|
|
37
38
|
chatgpt_oauth = "code_puppy_core_plugins.chatgpt_oauth.register_callbacks"
|
|
38
39
|
claude_code_hooks = "code_puppy_core_plugins.claude_code_hooks.register_callbacks"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|