nc1709 1.9.6__tar.gz → 1.16.0__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 (92) hide show
  1. nc1709-1.16.0/LICENSE +9 -0
  2. {nc1709-1.9.6 → nc1709-1.16.0}/PKG-INFO +14 -4
  3. nc1709-1.16.0/nc1709/__init__.py +13 -0
  4. nc1709-1.16.0/nc1709/agent/core.py +658 -0
  5. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agent/permissions.py +2 -2
  6. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agent/tools/bash_tool.py +55 -1
  7. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agent/tools/file_tools.py +24 -0
  8. nc1709-1.16.0/nc1709/checkpoints.py +372 -0
  9. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/cli.py +1556 -231
  10. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/cli_ui.py +298 -49
  11. nc1709-1.16.0/nc1709/cognitive/__init__.py +149 -0
  12. nc1709-1.16.0/nc1709/cognitive/anticipation.py +594 -0
  13. nc1709-1.16.0/nc1709/cognitive/context_engine.py +1046 -0
  14. nc1709-1.16.0/nc1709/cognitive/council.py +824 -0
  15. nc1709-1.16.0/nc1709/cognitive/learning.py +761 -0
  16. nc1709-1.16.0/nc1709/cognitive/router.py +583 -0
  17. nc1709-1.16.0/nc1709/cognitive/system.py +519 -0
  18. nc1709-1.16.0/nc1709/custom_commands.py +300 -0
  19. nc1709-1.16.0/nc1709/git_integration.py +308 -0
  20. nc1709-1.16.0/nc1709/github_integration.py +477 -0
  21. nc1709-1.16.0/nc1709/image_input.py +446 -0
  22. nc1709-1.16.0/nc1709/linting.py +519 -0
  23. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/llm_adapter.py +290 -4
  24. nc1709-1.16.0/nc1709/models/__init__.py +86 -0
  25. nc1709-1.16.0/nc1709/models/detector.py +377 -0
  26. nc1709-1.16.0/nc1709/models/formats.py +315 -0
  27. nc1709-1.16.0/nc1709/models/manager.py +438 -0
  28. nc1709-1.16.0/nc1709/models/registry.py +497 -0
  29. nc1709-1.16.0/nc1709/performance/__init__.py +343 -0
  30. nc1709-1.16.0/nc1709/performance/cache.py +705 -0
  31. nc1709-1.16.0/nc1709/performance/pipeline.py +611 -0
  32. nc1709-1.16.0/nc1709/performance/tiering.py +543 -0
  33. nc1709-1.16.0/nc1709/plan_mode.py +362 -0
  34. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/prompts/agent_system.py +23 -0
  35. nc1709-1.16.0/nc1709/slash_commands.py +649 -0
  36. nc1709-1.16.0/nc1709/version_check.py +177 -0
  37. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709.egg-info/SOURCES.txt +25 -0
  38. {nc1709-1.9.6 → nc1709-1.16.0}/pyproject.toml +5 -4
  39. nc1709-1.9.6/LICENSE +0 -21
  40. nc1709-1.9.6/nc1709/__init__.py +0 -13
  41. nc1709-1.9.6/nc1709/agent/core.py +0 -411
  42. {nc1709-1.9.6 → nc1709-1.16.0}/MANIFEST.in +0 -0
  43. {nc1709-1.9.6 → nc1709-1.16.0}/README.md +0 -0
  44. {nc1709-1.9.6 → nc1709-1.16.0}/ROADMAP.md +0 -0
  45. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agent/__init__.py +0 -0
  46. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agent/mcp_bridge.py +0 -0
  47. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agent/tools/__init__.py +0 -0
  48. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agent/tools/base.py +0 -0
  49. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agent/tools/notebook_tools.py +0 -0
  50. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agent/tools/search_tools.py +0 -0
  51. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agent/tools/task_tool.py +0 -0
  52. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agent/tools/web_tools.py +0 -0
  53. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agents/__init__.py +0 -0
  54. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agents/auto_fix.py +0 -0
  55. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agents/test_generator.py +0 -0
  56. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/config.py +0 -0
  57. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/executor.py +0 -0
  58. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/file_controller.py +0 -0
  59. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/logger.py +0 -0
  60. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/mcp/__init__.py +0 -0
  61. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/mcp/client.py +0 -0
  62. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/mcp/manager.py +0 -0
  63. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/mcp/protocol.py +0 -0
  64. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/mcp/server.py +0 -0
  65. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/memory/__init__.py +0 -0
  66. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/memory/embeddings.py +0 -0
  67. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/memory/indexer.py +0 -0
  68. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/memory/sessions.py +0 -0
  69. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/memory/vector_store.py +0 -0
  70. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/plugins/__init__.py +0 -0
  71. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/plugins/agents/__init__.py +0 -0
  72. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/plugins/agents/django_agent.py +0 -0
  73. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/plugins/agents/docker_agent.py +0 -0
  74. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/plugins/agents/fastapi_agent.py +0 -0
  75. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/plugins/agents/git_agent.py +0 -0
  76. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/plugins/agents/nextjs_agent.py +0 -0
  77. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/plugins/base.py +0 -0
  78. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/plugins/manager.py +0 -0
  79. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/plugins/registry.py +0 -0
  80. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/progress.py +0 -0
  81. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/prompts/__init__.py +0 -0
  82. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/prompts/task_prompts.py +0 -0
  83. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/prompts/unified_prompt.py +0 -0
  84. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/reasoning_engine.py +0 -0
  85. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/remote_client.py +0 -0
  86. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/shell_completions.py +0 -0
  87. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/task_classifier.py +0 -0
  88. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/web/__init__.py +0 -0
  89. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/web/server.py +0 -0
  90. {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/web/templates/index.html +0 -0
  91. {nc1709-1.9.6 → nc1709-1.16.0}/setup.cfg +0 -0
  92. {nc1709-1.9.6 → nc1709-1.16.0}/setup.py +0 -0
nc1709-1.16.0/LICENSE ADDED
@@ -0,0 +1,9 @@
1
+ Proprietary License
2
+
3
+ Copyright (c) 2025 Lafzusa Corp. All rights reserved.
4
+
5
+ This software is proprietary and confidential. Unauthorized copying,
6
+ distribution, modification, or use of this software, via any medium,
7
+ is strictly prohibited without express written permission from Lafzusa Corp.
8
+
9
+ For licensing inquiries, contact: support@lafzusa.com
@@ -1,11 +1,20 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nc1709
3
- Version: 1.9.6
4
- Summary: NC1709 - A Local-First AI Developer Assistant CLI
3
+ Version: 1.16.0
4
+ Summary: NC1709 - Your AI coding partner that brings your code to life
5
5
  Home-page: https://github.com/yourusername/nc1709
6
6
  Author: NC1709 Team
7
- Author-email: NC1709 Team <nc1709@example.com>
8
- License-Expression: MIT
7
+ Author-email: Lafzusa Corp <support@lafzusa.com>
8
+ License: Proprietary License
9
+
10
+ Copyright (c) 2025 Lafzusa Corp. All rights reserved.
11
+
12
+ This software is proprietary and confidential. Unauthorized copying,
13
+ distribution, modification, or use of this software, via any medium,
14
+ is strictly prohibited without express written permission from Lafzusa Corp.
15
+
16
+ For licensing inquiries, contact: support@lafzusa.com
17
+
9
18
  Project-URL: Homepage, https://github.com/nc1709/nc1709
10
19
  Project-URL: Documentation, https://github.com/nc1709/nc1709#readme
11
20
  Project-URL: Repository, https://github.com/nc1709/nc1709
@@ -31,6 +40,7 @@ Requires-Dist: litellm>=1.0.0
31
40
  Requires-Dist: rich>=13.0.0
32
41
  Requires-Dist: prompt_toolkit>=3.0.0
33
42
  Requires-Dist: ddgs>=9.0.0
43
+ Requires-Dist: packaging>=21.0
34
44
  Provides-Extra: memory
35
45
  Requires-Dist: chromadb>=0.4.0; extra == "memory"
36
46
  Requires-Dist: sentence-transformers>=2.2.0; extra == "memory"
@@ -0,0 +1,13 @@
1
+ """
2
+ NC1709 CLI - Your AI coding partner that brings your code to life
3
+ Version: 1.15.3
4
+ Author: Lafzusa Corp
5
+ License: Proprietary
6
+ """
7
+
8
+ __version__ = "1.16.0"
9
+ __author__ = "Lafzusa Corp"
10
+
11
+ from .cli import main
12
+
13
+ __all__ = ["main"]