nimcode 0.4.5__tar.gz → 0.4.6__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.4.5 → nimcode-0.4.6}/PKG-INFO +1 -1
- nimcode-0.4.6/src/nimcode/__version__.py +1 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode/repl.py +8 -6
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode.egg-info/PKG-INFO +1 -1
- nimcode-0.4.5/src/nimcode/__version__.py +0 -1
- {nimcode-0.4.5 → nimcode-0.4.6}/README.md +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/setup.cfg +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/setup.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode/__init__.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode/agent.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode/cli.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode/config.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode/lenient_parser.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode/mcp_client.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode/memory.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode/model_registry.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode/nim_client.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode/permissions.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode/plugin_manager.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode/rag.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode/repo_map.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode/tools.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode/updater.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode/watcher.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode.egg-info/SOURCES.txt +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode.egg-info/dependency_links.txt +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode.egg-info/entry_points.txt +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode.egg-info/requires.txt +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/src/nimcode.egg-info/top_level.txt +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/tests/test_agent.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/tests/test_cli.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/tests/test_config.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/tests/test_lenient_parser.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/tests/test_mcp_client.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/tests/test_memory.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/tests/test_model_registry.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/tests/test_nim_client.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/tests/test_permissions.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/tests/test_plan_injection.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/tests/test_plugin_manager.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/tests/test_repl.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/tests/test_repl_extra.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/tests/test_repl_fixes.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/tests/test_repl_trust.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/tests/test_repo_map.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/tests/test_tools.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/tests/test_updater.py +0 -0
- {nimcode-0.4.5 → nimcode-0.4.6}/tests/test_version.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.4.6"
|
|
@@ -444,12 +444,14 @@ class NimcodeREPL:
|
|
|
444
444
|
"real requirements found during exploration. Do NOT invent a generic project.\n"
|
|
445
445
|
"3. Write the plan to a file inside '.nimcode/plans/'. CHOOSE a descriptive name derived from the task "
|
|
446
446
|
"or document AND append a timestamp to prevent naming collisions (e.g. 'imagease_pro_plan_20260730_1430.md').\n"
|
|
447
|
-
"4. The plan
|
|
448
|
-
"
|
|
449
|
-
"
|
|
450
|
-
"
|
|
451
|
-
"
|
|
452
|
-
"
|
|
447
|
+
"4. The plan MUST follow this strict technical structure:\n"
|
|
448
|
+
" - # [Descriptive Plan Title]\n"
|
|
449
|
+
" - ## Context: Brief summary of the current state based on actual files.\n"
|
|
450
|
+
" - ## Analysis / Root Cause: Detailed technical analysis of the problem or feature.\n"
|
|
451
|
+
" - ## Execution Plan (dosya-bazlı, sıralı): Step-by-step file modifications. MUST include specific files to create/modify (with full paths), and actual code snippets or pseudocode for each change. Format as: '### Task #1 - Update auth.py line 45'.\n"
|
|
452
|
+
" - ## Verification: Terminal commands to run to test the changes.\n"
|
|
453
|
+
"5. NEVER output a generic software-lifecycle template (Phase1: MVP / Design / Development / "
|
|
454
|
+
"Testing / Scale / Deployment). NEVER use placeholders like [Insert Date]. Focus strictly on code and files.\n"
|
|
453
455
|
"6. A good plan is one that another developer could follow to implement the feature without asking questions.\n"
|
|
454
456
|
"7. After writing the plan, you MUST overwrite the file '.nimcode/active_plan.txt' to contain exactly the path "
|
|
455
457
|
"of the plan you just created. This ensures the system tracks the current active plan."
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.4.5"
|
|
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
|
|
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
|