browse-code 0.2.20__tar.gz → 0.2.21__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 (23) hide show
  1. {browse_code-0.2.20 → browse_code-0.2.21}/PKG-INFO +1 -1
  2. browse_code-0.2.21/browse_code/__init__.py +1 -0
  3. {browse_code-0.2.20 → browse_code-0.2.21}/browse_code/extension/content.js +1 -0
  4. {browse_code-0.2.20 → browse_code-0.2.21}/browse_code.egg-info/PKG-INFO +1 -1
  5. {browse_code-0.2.20 → browse_code-0.2.21}/setup.py +1 -1
  6. browse_code-0.2.20/browse_code/__init__.py +0 -1
  7. {browse_code-0.2.20 → browse_code-0.2.21}/README.md +0 -0
  8. {browse_code-0.2.20 → browse_code-0.2.21}/browse_code/cli.py +0 -0
  9. {browse_code-0.2.20 → browse_code-0.2.21}/browse_code/extension/icon128.png +0 -0
  10. {browse_code-0.2.20 → browse_code-0.2.21}/browse_code/extension/icon16.png +0 -0
  11. {browse_code-0.2.20 → browse_code-0.2.21}/browse_code/extension/icon48.png +0 -0
  12. {browse_code-0.2.20 → browse_code-0.2.21}/browse_code/extension/manifest.json +0 -0
  13. {browse_code-0.2.20 → browse_code-0.2.21}/browse_code/extension/popup.html +0 -0
  14. {browse_code-0.2.20 → browse_code-0.2.21}/browse_code/extension/popup.js +0 -0
  15. {browse_code-0.2.20 → browse_code-0.2.21}/browse_code/extension/spoof.js +0 -0
  16. {browse_code-0.2.20 → browse_code-0.2.21}/browse_code/server.py +0 -0
  17. {browse_code-0.2.20 → browse_code-0.2.21}/browse_code.egg-info/SOURCES.txt +0 -0
  18. {browse_code-0.2.20 → browse_code-0.2.21}/browse_code.egg-info/dependency_links.txt +0 -0
  19. {browse_code-0.2.20 → browse_code-0.2.21}/browse_code.egg-info/entry_points.txt +0 -0
  20. {browse_code-0.2.20 → browse_code-0.2.21}/browse_code.egg-info/requires.txt +0 -0
  21. {browse_code-0.2.20 → browse_code-0.2.21}/browse_code.egg-info/top_level.txt +0 -0
  22. {browse_code-0.2.20 → browse_code-0.2.21}/pyproject.toml +0 -0
  23. {browse_code-0.2.20 → browse_code-0.2.21}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: browse_code
3
- Version: 0.2.20
3
+ Version: 0.2.21
4
4
  Summary: Turn any AI chatbot into an autonomous coding agent
5
5
  Description-Content-Type: text/markdown
6
6
  Requires-Dist: fastapi
@@ -0,0 +1 @@
1
+ __version__ = "0.2.21"
@@ -67,6 +67,7 @@ GOLDEN RULES (violating any of these breaks the session)
67
67
  If you ever see a terminal_run timeout error, do NOT re-run the same command with terminal_run again — restart it via terminal_bg instead.
68
68
  terminal_run is only appropriate for short, fast, deterministic commands you're confident finish in a few seconds (e.g. ls, cat, a single quick lint check, git status).
69
69
  8. If a result is [TRUNCATED] or a file is large, narrow down with search_code or read_lines instead of re-requesting the whole file.
70
+ 9. **Image Generation:** If you generate an image in chat, the bridge will automatically download it to \`agent-creations/\` in the workspace and notify you with the local file path. You can then use this path in code (e.g. as a UI asset or mockup). Do NOT try to download images yourself using terminal commands.
70
71
 
71
72
  ═══════════════════════════════════════
72
73
  WORKFLOW: "Autonomous Researcher"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: browse_code
3
- Version: 0.2.20
3
+ Version: 0.2.21
4
4
  Summary: Turn any AI chatbot into an autonomous coding agent
5
5
  Description-Content-Type: text/markdown
6
6
  Requires-Dist: fastapi
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="browse_code",
5
- version="0.2.20",
5
+ version="0.2.21",
6
6
  description="Turn any AI chatbot into an autonomous coding agent",
7
7
  long_description=open("README.md").read(),
8
8
  long_description_content_type="text/markdown",
@@ -1 +0,0 @@
1
- __version__ = "0.2.20"
File without changes
File without changes