nimcode 0.3.1__tar.gz → 0.3.3__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.
- {nimcode-0.3.1 → nimcode-0.3.3}/PKG-INFO +1 -1
- {nimcode-0.3.1 → nimcode-0.3.3}/README.md +6 -4
- {nimcode-0.3.1 → nimcode-0.3.3}/setup.py +1 -1
- {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/tools.py +2 -2
- {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode.egg-info/PKG-INFO +1 -1
- {nimcode-0.3.1 → nimcode-0.3.3}/setup.cfg +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/__init__.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/agent.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/cli.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/config.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/lenient_parser.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/mcp_client.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/memory.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/nim_client.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/permissions.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/plugin_manager.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/rag.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/repl.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/updater.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/watcher.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode.egg-info/SOURCES.txt +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode.egg-info/dependency_links.txt +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode.egg-info/entry_points.txt +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode.egg-info/requires.txt +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode.egg-info/top_level.txt +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_agent.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_cli.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_config.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_lenient_parser.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_mcp_client.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_memory.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_nim_client.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_permissions.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_plugin_manager.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_repl.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_repl_extra.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_repl_trust.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_tools.py +0 -0
- {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_updater.py +0 -0
|
@@ -18,11 +18,13 @@
|
|
|
18
18
|
NimCode is your autonomous coding pair-programmer. Built with a rich interactive terminal interface, it doesn't just autocomplete code—it plans architectures, executes terminal commands, writes complete files, formats code automatically, and manages your workspace.
|
|
19
19
|
|
|
20
20
|
### 🛠️ What We've Built So Far
|
|
21
|
+
- **VS Code Deep Integration**: Native IPC communication allowing NimCode to read active editors, send patches, and act as your intelligent coding panel within VS Code.
|
|
22
|
+
- **RAG & Semantic Search**: Zero-dependency TF-IDF/BM25 based indexer that instantly scans massive workspaces and retrieves context-aware code snippets.
|
|
23
|
+
- **Autonomous Auto-Fixer**: The `/fix` command creates a self-healing feedback loop—it runs your broken commands, analyzes the tracebacks, and automatically iterates on code patches until the build passes.
|
|
24
|
+
- **Multi-Model & Local Support**: Flexible `api_base_url` configuration to seamlessly switch between NVIDIA NIM, Ollama, or vLLM endpoints.
|
|
25
|
+
- **Smart Permission Engine**: Granular control over file writes and command executions, featuring an auto-bypass mechanism and interactive `(a)ccept / (r)eject` diff previews.
|
|
21
26
|
- **Robust Interactive REPL**: Multiline support (Alt+Enter), syntax highlighting, and beautiful `rich`-powered UI menus.
|
|
22
|
-
- **
|
|
23
|
-
- **Automated Workflows**: Automatic linting and formatting using `black`, `flake8`, and `prettier` behind the scenes with crash-resistant execution.
|
|
24
|
-
- **CI/CD Integration**: A complete automated pipeline pushing to PyPI and creating GitHub Releases automatically on version tags.
|
|
25
|
-
- **Extensive Tool Ecosystem**: The agent is equipped with Bash execution, AST Replacement, Semantic Search, Web Browsing, Interactive Terminal management, and much more.
|
|
27
|
+
- **Automated Workflows**: Automatic linting and formatting using `black`, `flake8`, and `prettier` behind the scenes.
|
|
26
28
|
- **Model Context Protocol (MCP)**: Native integration for MCP tools allowing infinite extensibility.
|
|
27
29
|
|
|
28
30
|
### 🚀 What We're Working On (Roadmap)
|
|
@@ -246,7 +246,7 @@ class ToolRegistry:
|
|
|
246
246
|
stdout=subprocess.PIPE,
|
|
247
247
|
stderr=subprocess.PIPE,
|
|
248
248
|
text=True,
|
|
249
|
-
timeout=
|
|
249
|
+
timeout=1200
|
|
250
250
|
)
|
|
251
251
|
out = result.stdout + "\n" + result.stderr
|
|
252
252
|
out = out.strip()
|
|
@@ -257,7 +257,7 @@ class ToolRegistry:
|
|
|
257
257
|
|
|
258
258
|
return out if out else "Command executed successfully with no output."
|
|
259
259
|
except subprocess.TimeoutExpired:
|
|
260
|
-
return "Error: Command timed out after
|
|
260
|
+
return "Error: Command timed out after 1200 seconds."
|
|
261
261
|
except Exception as e:
|
|
262
262
|
return f"Error running bash: {e}"
|
|
263
263
|
|
|
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
|