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.
Files changed (39) hide show
  1. {nimcode-0.3.1 → nimcode-0.3.3}/PKG-INFO +1 -1
  2. {nimcode-0.3.1 → nimcode-0.3.3}/README.md +6 -4
  3. {nimcode-0.3.1 → nimcode-0.3.3}/setup.py +1 -1
  4. {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/tools.py +2 -2
  5. {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode.egg-info/PKG-INFO +1 -1
  6. {nimcode-0.3.1 → nimcode-0.3.3}/setup.cfg +0 -0
  7. {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/__init__.py +0 -0
  8. {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/agent.py +0 -0
  9. {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/cli.py +0 -0
  10. {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/config.py +0 -0
  11. {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/lenient_parser.py +0 -0
  12. {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/mcp_client.py +0 -0
  13. {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/memory.py +0 -0
  14. {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/nim_client.py +0 -0
  15. {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/permissions.py +0 -0
  16. {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/plugin_manager.py +0 -0
  17. {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/rag.py +0 -0
  18. {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/repl.py +0 -0
  19. {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/updater.py +0 -0
  20. {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode/watcher.py +0 -0
  21. {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode.egg-info/SOURCES.txt +0 -0
  22. {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode.egg-info/dependency_links.txt +0 -0
  23. {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode.egg-info/entry_points.txt +0 -0
  24. {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode.egg-info/requires.txt +0 -0
  25. {nimcode-0.3.1 → nimcode-0.3.3}/src/nimcode.egg-info/top_level.txt +0 -0
  26. {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_agent.py +0 -0
  27. {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_cli.py +0 -0
  28. {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_config.py +0 -0
  29. {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_lenient_parser.py +0 -0
  30. {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_mcp_client.py +0 -0
  31. {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_memory.py +0 -0
  32. {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_nim_client.py +0 -0
  33. {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_permissions.py +0 -0
  34. {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_plugin_manager.py +0 -0
  35. {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_repl.py +0 -0
  36. {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_repl_extra.py +0 -0
  37. {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_repl_trust.py +0 -0
  38. {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_tools.py +0 -0
  39. {nimcode-0.3.1 → nimcode-0.3.3}/tests/test_updater.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nimcode
3
- Version: 0.3.1
3
+ Version: 0.3.3
4
4
  Summary: A standalone, robust coding agent for NVIDIA NIM models.
5
5
  Author: Autonomous Agent
6
6
  Requires-Dist: httpx>=0.27.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
- - **Smart Permission Engine**: Granular control over what the AI can do, with interactive diff previews for file modifications and the brand new `/trust` mode for unhindered execution.
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)
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="nimcode",
5
- version="0.3.1",
5
+ version="0.3.3",
6
6
  packages=find_packages(where="src"),
7
7
  package_dir={"": "src"},
8
8
  install_requires=[
@@ -246,7 +246,7 @@ class ToolRegistry:
246
246
  stdout=subprocess.PIPE,
247
247
  stderr=subprocess.PIPE,
248
248
  text=True,
249
- timeout=120
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 120 seconds."
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
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nimcode
3
- Version: 0.3.1
3
+ Version: 0.3.3
4
4
  Summary: A standalone, robust coding agent for NVIDIA NIM models.
5
5
  Author: Autonomous Agent
6
6
  Requires-Dist: httpx>=0.27.0
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