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.
- nc1709-1.16.0/LICENSE +9 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/PKG-INFO +14 -4
- nc1709-1.16.0/nc1709/__init__.py +13 -0
- nc1709-1.16.0/nc1709/agent/core.py +658 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agent/permissions.py +2 -2
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agent/tools/bash_tool.py +55 -1
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agent/tools/file_tools.py +24 -0
- nc1709-1.16.0/nc1709/checkpoints.py +372 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/cli.py +1556 -231
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/cli_ui.py +298 -49
- nc1709-1.16.0/nc1709/cognitive/__init__.py +149 -0
- nc1709-1.16.0/nc1709/cognitive/anticipation.py +594 -0
- nc1709-1.16.0/nc1709/cognitive/context_engine.py +1046 -0
- nc1709-1.16.0/nc1709/cognitive/council.py +824 -0
- nc1709-1.16.0/nc1709/cognitive/learning.py +761 -0
- nc1709-1.16.0/nc1709/cognitive/router.py +583 -0
- nc1709-1.16.0/nc1709/cognitive/system.py +519 -0
- nc1709-1.16.0/nc1709/custom_commands.py +300 -0
- nc1709-1.16.0/nc1709/git_integration.py +308 -0
- nc1709-1.16.0/nc1709/github_integration.py +477 -0
- nc1709-1.16.0/nc1709/image_input.py +446 -0
- nc1709-1.16.0/nc1709/linting.py +519 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/llm_adapter.py +290 -4
- nc1709-1.16.0/nc1709/models/__init__.py +86 -0
- nc1709-1.16.0/nc1709/models/detector.py +377 -0
- nc1709-1.16.0/nc1709/models/formats.py +315 -0
- nc1709-1.16.0/nc1709/models/manager.py +438 -0
- nc1709-1.16.0/nc1709/models/registry.py +497 -0
- nc1709-1.16.0/nc1709/performance/__init__.py +343 -0
- nc1709-1.16.0/nc1709/performance/cache.py +705 -0
- nc1709-1.16.0/nc1709/performance/pipeline.py +611 -0
- nc1709-1.16.0/nc1709/performance/tiering.py +543 -0
- nc1709-1.16.0/nc1709/plan_mode.py +362 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/prompts/agent_system.py +23 -0
- nc1709-1.16.0/nc1709/slash_commands.py +649 -0
- nc1709-1.16.0/nc1709/version_check.py +177 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709.egg-info/SOURCES.txt +25 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/pyproject.toml +5 -4
- nc1709-1.9.6/LICENSE +0 -21
- nc1709-1.9.6/nc1709/__init__.py +0 -13
- nc1709-1.9.6/nc1709/agent/core.py +0 -411
- {nc1709-1.9.6 → nc1709-1.16.0}/MANIFEST.in +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/README.md +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/ROADMAP.md +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agent/__init__.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agent/mcp_bridge.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agent/tools/__init__.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agent/tools/base.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agent/tools/notebook_tools.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agent/tools/search_tools.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agent/tools/task_tool.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agent/tools/web_tools.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agents/__init__.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agents/auto_fix.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/agents/test_generator.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/config.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/executor.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/file_controller.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/logger.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/mcp/__init__.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/mcp/client.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/mcp/manager.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/mcp/protocol.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/mcp/server.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/memory/__init__.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/memory/embeddings.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/memory/indexer.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/memory/sessions.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/memory/vector_store.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/plugins/__init__.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/plugins/agents/__init__.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/plugins/agents/django_agent.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/plugins/agents/docker_agent.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/plugins/agents/fastapi_agent.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/plugins/agents/git_agent.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/plugins/agents/nextjs_agent.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/plugins/base.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/plugins/manager.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/plugins/registry.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/progress.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/prompts/__init__.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/prompts/task_prompts.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/prompts/unified_prompt.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/reasoning_engine.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/remote_client.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/shell_completions.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/task_classifier.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/web/__init__.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/web/server.py +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/nc1709/web/templates/index.html +0 -0
- {nc1709-1.9.6 → nc1709-1.16.0}/setup.cfg +0 -0
- {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.
|
|
4
|
-
Summary: NC1709 -
|
|
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:
|
|
8
|
-
License
|
|
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"
|