nc1709 1.11.2__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.
Potentially problematic release.
This version of nc1709 might be problematic. Click here for more details.
- nc1709-1.11.2/LICENSE +9 -0
- nc1709-1.11.2/MANIFEST.in +20 -0
- nc1709-1.11.2/PKG-INFO +857 -0
- nc1709-1.11.2/README.md +783 -0
- nc1709-1.11.2/ROADMAP.md +376 -0
- nc1709-1.11.2/nc1709/__init__.py +13 -0
- nc1709-1.11.2/nc1709/agent/__init__.py +36 -0
- nc1709-1.11.2/nc1709/agent/core.py +411 -0
- nc1709-1.11.2/nc1709/agent/mcp_bridge.py +245 -0
- nc1709-1.11.2/nc1709/agent/permissions.py +298 -0
- nc1709-1.11.2/nc1709/agent/tools/__init__.py +21 -0
- nc1709-1.11.2/nc1709/agent/tools/base.py +440 -0
- nc1709-1.11.2/nc1709/agent/tools/bash_tool.py +313 -0
- nc1709-1.11.2/nc1709/agent/tools/file_tools.py +430 -0
- nc1709-1.11.2/nc1709/agent/tools/notebook_tools.py +516 -0
- nc1709-1.11.2/nc1709/agent/tools/search_tools.py +322 -0
- nc1709-1.11.2/nc1709/agent/tools/task_tool.py +284 -0
- nc1709-1.11.2/nc1709/agent/tools/web_tools.py +555 -0
- nc1709-1.11.2/nc1709/agents/__init__.py +17 -0
- nc1709-1.11.2/nc1709/agents/auto_fix.py +506 -0
- nc1709-1.11.2/nc1709/agents/test_generator.py +507 -0
- nc1709-1.11.2/nc1709/cli.py +2161 -0
- nc1709-1.11.2/nc1709/cli_ui.py +879 -0
- nc1709-1.11.2/nc1709/config.py +155 -0
- nc1709-1.11.2/nc1709/executor.py +333 -0
- nc1709-1.11.2/nc1709/file_controller.py +354 -0
- nc1709-1.11.2/nc1709/llm_adapter.py +439 -0
- nc1709-1.11.2/nc1709/logger.py +192 -0
- nc1709-1.11.2/nc1709/mcp/__init__.py +18 -0
- nc1709-1.11.2/nc1709/mcp/client.py +370 -0
- nc1709-1.11.2/nc1709/mcp/manager.py +407 -0
- nc1709-1.11.2/nc1709/mcp/protocol.py +210 -0
- nc1709-1.11.2/nc1709/mcp/server.py +473 -0
- nc1709-1.11.2/nc1709/memory/__init__.py +20 -0
- nc1709-1.11.2/nc1709/memory/embeddings.py +325 -0
- nc1709-1.11.2/nc1709/memory/indexer.py +474 -0
- nc1709-1.11.2/nc1709/memory/sessions.py +432 -0
- nc1709-1.11.2/nc1709/memory/vector_store.py +451 -0
- nc1709-1.11.2/nc1709/plugins/__init__.py +17 -0
- nc1709-1.11.2/nc1709/plugins/agents/__init__.py +18 -0
- nc1709-1.11.2/nc1709/plugins/agents/django_agent.py +912 -0
- nc1709-1.11.2/nc1709/plugins/agents/docker_agent.py +623 -0
- nc1709-1.11.2/nc1709/plugins/agents/fastapi_agent.py +887 -0
- nc1709-1.11.2/nc1709/plugins/agents/git_agent.py +731 -0
- nc1709-1.11.2/nc1709/plugins/agents/nextjs_agent.py +867 -0
- nc1709-1.11.2/nc1709/plugins/base.py +359 -0
- nc1709-1.11.2/nc1709/plugins/manager.py +411 -0
- nc1709-1.11.2/nc1709/plugins/registry.py +337 -0
- nc1709-1.11.2/nc1709/progress.py +443 -0
- nc1709-1.11.2/nc1709/prompts/__init__.py +22 -0
- nc1709-1.11.2/nc1709/prompts/agent_system.py +176 -0
- nc1709-1.11.2/nc1709/prompts/task_prompts.py +340 -0
- nc1709-1.11.2/nc1709/prompts/unified_prompt.py +133 -0
- nc1709-1.11.2/nc1709/reasoning_engine.py +541 -0
- nc1709-1.11.2/nc1709/remote_client.py +266 -0
- nc1709-1.11.2/nc1709/shell_completions.py +349 -0
- nc1709-1.11.2/nc1709/slash_commands.py +412 -0
- nc1709-1.11.2/nc1709/task_classifier.py +408 -0
- nc1709-1.11.2/nc1709/web/__init__.py +8 -0
- nc1709-1.11.2/nc1709/web/server.py +950 -0
- nc1709-1.11.2/nc1709/web/templates/index.html +1127 -0
- nc1709-1.11.2/nc1709.egg-info/SOURCES.txt +62 -0
- nc1709-1.11.2/pyproject.toml +107 -0
- nc1709-1.11.2/setup.cfg +4 -0
- nc1709-1.11.2/setup.py +86 -0
nc1709-1.11.2/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
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Include templates and static files
|
|
2
|
+
recursive-include nc1709/web/templates *
|
|
3
|
+
recursive-include nc1709/web/static *
|
|
4
|
+
|
|
5
|
+
# Include documentation
|
|
6
|
+
include README.md
|
|
7
|
+
include LICENSE
|
|
8
|
+
include ROADMAP.md
|
|
9
|
+
|
|
10
|
+
# Include config files
|
|
11
|
+
include pyproject.toml
|
|
12
|
+
include setup.py
|
|
13
|
+
|
|
14
|
+
# Exclude development and test files
|
|
15
|
+
exclude .gitignore
|
|
16
|
+
exclude .env
|
|
17
|
+
prune tests
|
|
18
|
+
prune .git
|
|
19
|
+
prune __pycache__
|
|
20
|
+
prune *.egg-info
|