browse-code 0.2.18__tar.gz → 0.2.19__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.
- {browse_code-0.2.18 → browse_code-0.2.19}/PKG-INFO +6 -7
- {browse_code-0.2.18 → browse_code-0.2.19}/README.md +5 -6
- browse_code-0.2.19/browse_code/__init__.py +1 -0
- {browse_code-0.2.18 → browse_code-0.2.19}/browse_code.egg-info/PKG-INFO +6 -7
- {browse_code-0.2.18 → browse_code-0.2.19}/setup.py +1 -1
- browse_code-0.2.18/browse_code/__init__.py +0 -1
- {browse_code-0.2.18 → browse_code-0.2.19}/browse_code/cli.py +0 -0
- {browse_code-0.2.18 → browse_code-0.2.19}/browse_code/extension/content.js +0 -0
- {browse_code-0.2.18 → browse_code-0.2.19}/browse_code/extension/icon128.png +0 -0
- {browse_code-0.2.18 → browse_code-0.2.19}/browse_code/extension/icon16.png +0 -0
- {browse_code-0.2.18 → browse_code-0.2.19}/browse_code/extension/icon48.png +0 -0
- {browse_code-0.2.18 → browse_code-0.2.19}/browse_code/extension/manifest.json +0 -0
- {browse_code-0.2.18 → browse_code-0.2.19}/browse_code/extension/popup.html +0 -0
- {browse_code-0.2.18 → browse_code-0.2.19}/browse_code/extension/popup.js +0 -0
- {browse_code-0.2.18 → browse_code-0.2.19}/browse_code/extension/spoof.js +0 -0
- {browse_code-0.2.18 → browse_code-0.2.19}/browse_code/server.py +0 -0
- {browse_code-0.2.18 → browse_code-0.2.19}/browse_code.egg-info/SOURCES.txt +0 -0
- {browse_code-0.2.18 → browse_code-0.2.19}/browse_code.egg-info/dependency_links.txt +0 -0
- {browse_code-0.2.18 → browse_code-0.2.19}/browse_code.egg-info/entry_points.txt +0 -0
- {browse_code-0.2.18 → browse_code-0.2.19}/browse_code.egg-info/requires.txt +0 -0
- {browse_code-0.2.18 → browse_code-0.2.19}/browse_code.egg-info/top_level.txt +0 -0
- {browse_code-0.2.18 → browse_code-0.2.19}/pyproject.toml +0 -0
- {browse_code-0.2.18 → browse_code-0.2.19}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: browse_code
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.19
|
|
4
4
|
Summary: Turn any AI chatbot into an autonomous coding agent
|
|
5
5
|
Description-Content-Type: text/markdown
|
|
6
6
|
Requires-Dist: fastapi
|
|
@@ -24,6 +24,10 @@ Dynamic: summary
|
|
|
24
24
|
|
|
25
25
|
**Browse Code** is a CLI tool that turns any AI chatbot (ChatGPT, Gemini, Claude, HuggingFace) into an autonomous coding agent. It bridges your browser and local terminal, letting AI read/write files, run commands, and manage processes on your machine.
|
|
26
26
|
|
|
27
|
+
<p align="center">
|
|
28
|
+
<img src="example.svg" alt="Tool Formatting Example" width="800">
|
|
29
|
+
</p>
|
|
30
|
+
|
|
27
31
|
## How It Works
|
|
28
32
|
|
|
29
33
|
Browse Code has two parts:
|
|
@@ -90,12 +94,7 @@ The server starts immediately. Open your AI chat tab and you're ready to go. The
|
|
|
90
94
|
|
|
91
95
|
## Features
|
|
92
96
|
|
|
93
|
-
- **File Operations:** Read, write, and patch files with
|
|
94
|
-
|
|
95
|
-
<p align="center">
|
|
96
|
-
<img src="example.svg" alt="Tool Formatting Example" width="800">
|
|
97
|
-
</p>
|
|
98
|
-
|
|
97
|
+
- **File Operations:** Read, write, and patch files with inline terminal diffs
|
|
99
98
|
- **Code Search:** Search across your entire codebase by keyword
|
|
100
99
|
- **Terminal Commands:** Run shell commands with full stdout/stderr capture
|
|
101
100
|
- **Background Processes:** Start, monitor, and kill long-running processes
|
|
@@ -10,6 +10,10 @@
|
|
|
10
10
|
|
|
11
11
|
**Browse Code** is a CLI tool that turns any AI chatbot (ChatGPT, Gemini, Claude, HuggingFace) into an autonomous coding agent. It bridges your browser and local terminal, letting AI read/write files, run commands, and manage processes on your machine.
|
|
12
12
|
|
|
13
|
+
<p align="center">
|
|
14
|
+
<img src="example.svg" alt="Tool Formatting Example" width="800">
|
|
15
|
+
</p>
|
|
16
|
+
|
|
13
17
|
## How It Works
|
|
14
18
|
|
|
15
19
|
Browse Code has two parts:
|
|
@@ -76,12 +80,7 @@ The server starts immediately. Open your AI chat tab and you're ready to go. The
|
|
|
76
80
|
|
|
77
81
|
## Features
|
|
78
82
|
|
|
79
|
-
- **File Operations:** Read, write, and patch files with
|
|
80
|
-
|
|
81
|
-
<p align="center">
|
|
82
|
-
<img src="example.svg" alt="Tool Formatting Example" width="800">
|
|
83
|
-
</p>
|
|
84
|
-
|
|
83
|
+
- **File Operations:** Read, write, and patch files with inline terminal diffs
|
|
85
84
|
- **Code Search:** Search across your entire codebase by keyword
|
|
86
85
|
- **Terminal Commands:** Run shell commands with full stdout/stderr capture
|
|
87
86
|
- **Background Processes:** Start, monitor, and kill long-running processes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.2.19"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: browse_code
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.19
|
|
4
4
|
Summary: Turn any AI chatbot into an autonomous coding agent
|
|
5
5
|
Description-Content-Type: text/markdown
|
|
6
6
|
Requires-Dist: fastapi
|
|
@@ -24,6 +24,10 @@ Dynamic: summary
|
|
|
24
24
|
|
|
25
25
|
**Browse Code** is a CLI tool that turns any AI chatbot (ChatGPT, Gemini, Claude, HuggingFace) into an autonomous coding agent. It bridges your browser and local terminal, letting AI read/write files, run commands, and manage processes on your machine.
|
|
26
26
|
|
|
27
|
+
<p align="center">
|
|
28
|
+
<img src="example.svg" alt="Tool Formatting Example" width="800">
|
|
29
|
+
</p>
|
|
30
|
+
|
|
27
31
|
## How It Works
|
|
28
32
|
|
|
29
33
|
Browse Code has two parts:
|
|
@@ -90,12 +94,7 @@ The server starts immediately. Open your AI chat tab and you're ready to go. The
|
|
|
90
94
|
|
|
91
95
|
## Features
|
|
92
96
|
|
|
93
|
-
- **File Operations:** Read, write, and patch files with
|
|
94
|
-
|
|
95
|
-
<p align="center">
|
|
96
|
-
<img src="example.svg" alt="Tool Formatting Example" width="800">
|
|
97
|
-
</p>
|
|
98
|
-
|
|
97
|
+
- **File Operations:** Read, write, and patch files with inline terminal diffs
|
|
99
98
|
- **Code Search:** Search across your entire codebase by keyword
|
|
100
99
|
- **Terminal Commands:** Run shell commands with full stdout/stderr capture
|
|
101
100
|
- **Background Processes:** Start, monitor, and kill long-running processes
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name="browse_code",
|
|
5
|
-
version="0.2.
|
|
5
|
+
version="0.2.19",
|
|
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.18"
|
|
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
|