code-puppy 0.0.71__tar.gz → 0.0.73__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. {code_puppy-0.0.71 → code_puppy-0.0.73}/PKG-INFO +2 -2
  2. {code_puppy-0.0.71 → code_puppy-0.0.73}/README.md +1 -1
  3. {code_puppy-0.0.71 → code_puppy-0.0.73}/pyproject.toml +1 -1
  4. {code_puppy-0.0.71 → code_puppy-0.0.73}/.gitignore +0 -0
  5. {code_puppy-0.0.71 → code_puppy-0.0.73}/LICENSE +0 -0
  6. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/__init__.py +0 -0
  7. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/agent.py +0 -0
  8. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/agent_prompts.py +0 -0
  9. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/command_line/__init__.py +0 -0
  10. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/command_line/file_path_completion.py +0 -0
  11. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/command_line/meta_command_handler.py +0 -0
  12. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/command_line/model_picker_completion.py +0 -0
  13. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/command_line/motd.py +0 -0
  14. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/command_line/prompt_toolkit_completion.py +0 -0
  15. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/command_line/utils.py +0 -0
  16. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/config.py +0 -0
  17. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/main.py +0 -0
  18. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/model_factory.py +0 -0
  19. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/models.json +0 -0
  20. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/session_memory.py +0 -0
  21. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/tools/__init__.py +0 -0
  22. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/tools/command_runner.py +0 -0
  23. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/tools/common.py +0 -0
  24. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/tools/file_modifications.py +0 -0
  25. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/tools/file_operations.py +0 -0
  26. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/tools/ts_code_map.py +0 -0
  27. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/tools/web_search.py +0 -0
  28. {code_puppy-0.0.71 → code_puppy-0.0.73}/code_puppy/version_checker.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: code-puppy
3
- Version: 0.0.71
3
+ Version: 0.0.73
4
4
  Summary: Code generation agent
5
5
  Author: Michael Pfaffenberger
6
6
  License: MIT
@@ -146,7 +146,7 @@ Ensure that all components follow these color schemes to promote consistency in
146
146
 
147
147
  ## Using MCP Servers for External Tools
148
148
 
149
- Code Puppy supports **MCP (Multi-Channel Plugin) servers** to give you access to external code tools and advanced features like code search, documentation lookups, and more—including Context7 integration for deep docs and search!
149
+ Code Puppy supports **MCP (Model Context Protocol) servers** to give you access to external code tools and advanced features like code search, documentation lookups, and more—including Context7 (https://context7.com/) integration for deep docs and search!
150
150
 
151
151
  ### What is an MCP Server?
152
152
  An MCP server is a standalone process (can be local or remote) that offers specialized functionality (plugins, doc search, code analysis, etc.). Code Puppy can connect to one or more MCP servers at startup, unlocking these extra commands inside your coding agent.
@@ -113,7 +113,7 @@ Ensure that all components follow these color schemes to promote consistency in
113
113
 
114
114
  ## Using MCP Servers for External Tools
115
115
 
116
- Code Puppy supports **MCP (Multi-Channel Plugin) servers** to give you access to external code tools and advanced features like code search, documentation lookups, and more—including Context7 integration for deep docs and search!
116
+ Code Puppy supports **MCP (Model Context Protocol) servers** to give you access to external code tools and advanced features like code search, documentation lookups, and more—including Context7 (https://context7.com/) integration for deep docs and search!
117
117
 
118
118
  ### What is an MCP Server?
119
119
  An MCP server is a standalone process (can be local or remote) that offers specialized functionality (plugins, doc search, code analysis, etc.). Code Puppy can connect to one or more MCP servers at startup, unlocking these extra commands inside your coding agent.
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "code-puppy"
7
- version = "0.0.71"
7
+ version = "0.0.73"
8
8
  description = "Code generation agent"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
File without changes
File without changes