nc1709 1.15.4__py3-none-any.whl → 1.18.8__py3-none-any.whl
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/__init__.py +1 -1
- nc1709/agent/core.py +172 -19
- nc1709/agent/permissions.py +2 -2
- nc1709/agent/tools/bash_tool.py +295 -8
- nc1709/cli.py +435 -19
- nc1709/cli_ui.py +137 -52
- nc1709/conversation_logger.py +416 -0
- nc1709/llm_adapter.py +62 -4
- nc1709/plugins/agents/database_agent.py +695 -0
- nc1709/plugins/agents/django_agent.py +11 -4
- nc1709/plugins/agents/docker_agent.py +11 -4
- nc1709/plugins/agents/fastapi_agent.py +11 -4
- nc1709/plugins/agents/git_agent.py +11 -4
- nc1709/plugins/agents/nextjs_agent.py +11 -4
- nc1709/plugins/agents/ollama_agent.py +574 -0
- nc1709/plugins/agents/test_agent.py +702 -0
- nc1709/prompts/unified_prompt.py +156 -14
- nc1709/requirements_tracker.py +526 -0
- nc1709/thinking_messages.py +337 -0
- nc1709/version_check.py +6 -2
- nc1709/web/server.py +63 -3
- nc1709/web/templates/index.html +819 -140
- {nc1709-1.15.4.dist-info → nc1709-1.18.8.dist-info}/METADATA +10 -7
- {nc1709-1.15.4.dist-info → nc1709-1.18.8.dist-info}/RECORD +28 -22
- {nc1709-1.15.4.dist-info → nc1709-1.18.8.dist-info}/WHEEL +0 -0
- {nc1709-1.15.4.dist-info → nc1709-1.18.8.dist-info}/entry_points.txt +0 -0
- {nc1709-1.15.4.dist-info → nc1709-1.18.8.dist-info}/licenses/LICENSE +0 -0
- {nc1709-1.15.4.dist-info → nc1709-1.18.8.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nc1709
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.18.8
|
|
4
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
|
|
@@ -85,21 +85,24 @@ Dynamic: requires-python
|
|
|
85
85
|
<a href="#features">Features</a> •
|
|
86
86
|
<a href="#architecture">Architecture</a> •
|
|
87
87
|
<a href="#remote-mode">Remote Mode</a> •
|
|
88
|
-
<a href="#extensions">Extensions</a>
|
|
88
|
+
<a href="#extensions">Extensions</a> •
|
|
89
|
+
<a href="DOCUMENTATION.md">Full Documentation</a>
|
|
89
90
|
</p>
|
|
90
91
|
|
|
91
92
|
---
|
|
92
93
|
|
|
93
94
|
NC1709 is a powerful AI developer assistant with a **Claude Code-like architecture**. Tools execute locally on your machine while LLM inference happens on a remote server. Your files stay on your computer - only prompts and responses travel to the server.
|
|
94
95
|
|
|
95
|
-
## What's New in v1.
|
|
96
|
+
## What's New in v1.16.2
|
|
96
97
|
|
|
97
|
-
- **
|
|
98
|
+
- **Claude Code-style UI** - Visual feedback with yellow bullets (●) and corner output (⎿)
|
|
99
|
+
- **Improved Version Check** - 1-hour cache TTL, version-change detection
|
|
100
|
+
- **Auth Screen Updates** - Version check now shows on API key screen
|
|
101
|
+
- **17 Built-in Tools** - Read, Write, Edit, Bash, Glob, Grep, WebSearch, and more
|
|
98
102
|
- **Auto-Connect** - CLI automatically connects to `nc1709.lafzusa.com` server
|
|
99
|
-
- **Server-Side Vector DB** - Code automatically indexed for smarter responses
|
|
100
103
|
- **Session Memory** - Conversation history persisted locally and sent for context
|
|
101
|
-
|
|
102
|
-
|
|
104
|
+
|
|
105
|
+
> **Full Documentation**: See [DOCUMENTATION.md](DOCUMENTATION.md) for comprehensive guides
|
|
103
106
|
|
|
104
107
|
## Installation
|
|
105
108
|
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
nc1709/__init__.py,sha256=
|
|
1
|
+
nc1709/__init__.py,sha256=YnS7AeEXYhpdBNMUaxrpKjxcURSP4XvOqEeAJDHJDpo,227
|
|
2
2
|
nc1709/checkpoints.py,sha256=EuSufEVnGYlwOw-msPMzJl6Cv9PQ2z7LvxylQueWFP0,12013
|
|
3
|
-
nc1709/cli.py,sha256=
|
|
4
|
-
nc1709/cli_ui.py,sha256=
|
|
3
|
+
nc1709/cli.py,sha256=l7koQIZ4y7HjkTvkldsfi1NvrZ0BmYVhM2PrCJPCXs0,136240
|
|
4
|
+
nc1709/cli_ui.py,sha256=rw5l2LnAQtL9k45ANpLpZpCQPA1esgtfyBsG581gDDg,36186
|
|
5
5
|
nc1709/config.py,sha256=G6nxMZvb9dScdjCl99KSkpV_Ys670k53IJntDtkHY0c,5101
|
|
6
|
+
nc1709/conversation_logger.py,sha256=KrXve6iq7DmrL5GNw31A5Ju4ascQ9L1_IjgdQt_Xw38,12781
|
|
6
7
|
nc1709/custom_commands.py,sha256=Fb_5F7zYdewyAqHezXI-L72R2IEXKaTnksO9i_YGN-E,8623
|
|
7
8
|
nc1709/executor.py,sha256=SNUeKuxzlkELPmjKM_ZccD2cJkfBSEb-qZgl8xFOzs8,11367
|
|
8
9
|
nc1709/file_controller.py,sha256=ihuOPxk8aZJpYoLORb4Fys6v3CfkLa_wo5znmmPQqMc,11706
|
|
@@ -10,23 +11,25 @@ nc1709/git_integration.py,sha256=c3qy92fbwMmse61nN4pPKi4KbjlYpWbQItzollzyJGY,902
|
|
|
10
11
|
nc1709/github_integration.py,sha256=QHrXNTWQCmAVovfv6qXkToF3Tu1airjJ3s4-dik68Zk,15150
|
|
11
12
|
nc1709/image_input.py,sha256=2pMvR72tEXBO7yOpAWSF-PqRKr9wkU3RTUnLFOqVhik,11425
|
|
12
13
|
nc1709/linting.py,sha256=cC_A62LRL2fCtLn03Ubuqxp3jM1JUywU32CCtanqDDc,16559
|
|
13
|
-
nc1709/llm_adapter.py,sha256=
|
|
14
|
+
nc1709/llm_adapter.py,sha256=Vy83tGi1N8O67PZNki8anehNWfa-vLYhIQcogh-4Yck,25533
|
|
14
15
|
nc1709/logger.py,sha256=sRxcRfEdYBzTj0oUy_H_1qMHkH-zELiihe7X85m4JM8,5631
|
|
15
16
|
nc1709/plan_mode.py,sha256=eTnfXfVWUYYbs1QPSxDzG400mMxTKmwk8XNWHCDiHcY,10392
|
|
16
17
|
nc1709/progress.py,sha256=M-Dbx0R8qM200WbESOj_W1qvaiapHlQXHn84ysiY0aU,12792
|
|
17
18
|
nc1709/reasoning_engine.py,sha256=S-2oRLmPZceZFybDskXYYh9oStVnEEZDzXPJ_8Nhz9M,19431
|
|
18
19
|
nc1709/remote_client.py,sha256=cGc_eIBHTCg4pVgY7HJXjl3QvA0DeMCHwRl8MoaId80,7706
|
|
20
|
+
nc1709/requirements_tracker.py,sha256=QGzpSLYIi3cfrkRb59niePtQLfjTtHAE2d2gBwEYjxo,16292
|
|
19
21
|
nc1709/shell_completions.py,sha256=nsqnhAGr59PBr9BmBUbnfpXnGMB5MkOsI8xaalivOqA,10452
|
|
20
22
|
nc1709/slash_commands.py,sha256=SxupGSHq6xSQMHN-S0CBUS3dcGyMAWImuS2Bczu0xAU,17720
|
|
21
23
|
nc1709/task_classifier.py,sha256=MhZcTuQdbE5MexxhXqtj7wwEtljCJDILhue1Gg4z540,14794
|
|
22
|
-
nc1709/
|
|
24
|
+
nc1709/thinking_messages.py,sha256=90DxToplpgc-T8fA8H4Hh-rFt6tghCdL5tOMvH_Pu6k,10310
|
|
25
|
+
nc1709/version_check.py,sha256=pLxqIBtoW9P2gWVjZtLVeLkM3GMX_rFD9wc9NKbVvak,5460
|
|
23
26
|
nc1709/agent/__init__.py,sha256=zW0y4mDY3znlKQmjJQpt34Q5Y1fB41AoK8lskaNC-Gg,942
|
|
24
|
-
nc1709/agent/core.py,sha256=
|
|
27
|
+
nc1709/agent/core.py,sha256=Bqu1pg4Bd8UW14FJdP_lMHa9TqyyW40aiJ-TtTPcSuo,25399
|
|
25
28
|
nc1709/agent/mcp_bridge.py,sha256=hffy5x0saXl13zIQ-aINrK_gKlj7qH3cBfyEdQHxymo,7424
|
|
26
|
-
nc1709/agent/permissions.py,sha256=
|
|
29
|
+
nc1709/agent/permissions.py,sha256=ovgLjhfGfcLmO3hwzOZBz4-nqxrzz0F40KHw7Tg9S7I,9103
|
|
27
30
|
nc1709/agent/tools/__init__.py,sha256=XOBEaTHE7T0QHmyKH4QBlxk1xyxXULecKb7BBUw1gFI,498
|
|
28
31
|
nc1709/agent/tools/base.py,sha256=WNGuqXYwjGyfcdZUfbx-_mqdgnPwdVGniPB94BuziAE,13341
|
|
29
|
-
nc1709/agent/tools/bash_tool.py,sha256=
|
|
32
|
+
nc1709/agent/tools/bash_tool.py,sha256=gxKhF0aghRa_4v6OR-HfChc-s0tOatMlf_WCmbck6k4,24074
|
|
30
33
|
nc1709/agent/tools/file_tools.py,sha256=dJMfUTSFFqSro8FngVQkZcLICHIuB8Xtep6J_mz7ZVM,14249
|
|
31
34
|
nc1709/agent/tools/notebook_tools.py,sha256=l76vCKZrMng5K_hZKzfDgwGIv-1_qasKfAGWRPCb6Kw,18391
|
|
32
35
|
nc1709/agent/tools/search_tools.py,sha256=-ZS6Sa8lsj9VTPGd66jpldKLseng3ibq9cnjyygoy68,10137
|
|
@@ -66,21 +69,24 @@ nc1709/plugins/base.py,sha256=SHFGkpvfU0JprNz9Htc_7FKDrqsKhAxDsVX9IK67Suk,10590
|
|
|
66
69
|
nc1709/plugins/manager.py,sha256=g_XgwbHTEh9xnur3V9SmlDK5vvr1ORLCB4msRtmOiSM,12305
|
|
67
70
|
nc1709/plugins/registry.py,sha256=6wAKKM_llbWejAPOe9TtT4A6jih2SjlHLUhat942m6o,10008
|
|
68
71
|
nc1709/plugins/agents/__init__.py,sha256=a2n0wOC_SjmyLWrXU0ROjh8Eltc7tK2DQnDgKlRZfE0,374
|
|
69
|
-
nc1709/plugins/agents/
|
|
70
|
-
nc1709/plugins/agents/
|
|
71
|
-
nc1709/plugins/agents/
|
|
72
|
-
nc1709/plugins/agents/
|
|
73
|
-
nc1709/plugins/agents/
|
|
72
|
+
nc1709/plugins/agents/database_agent.py,sha256=NIDjhdFAodSXXyMmPY-Qxnoe9XA06stRWluWDDw5TP8,22718
|
|
73
|
+
nc1709/plugins/agents/django_agent.py,sha256=Jc4x_nQtmUnPi5d3_P26uCagOChwulTaxWVZFgVs_SA,26854
|
|
74
|
+
nc1709/plugins/agents/docker_agent.py,sha256=qiJ9zQCxYKhBQARaze79qWQobBb4UYiSVHt_HTdzcwc,18435
|
|
75
|
+
nc1709/plugins/agents/fastapi_agent.py,sha256=qYoY_N8nT58iUv_9kCu8FZC1GOyVDfWCm42n-Gt1aY4,26405
|
|
76
|
+
nc1709/plugins/agents/git_agent.py,sha256=d5xY7DpClyttP0LqJ6CySsbfbtdCjIz8r8CAOwJkeRE,21319
|
|
77
|
+
nc1709/plugins/agents/nextjs_agent.py,sha256=rvPNlpRcRU9ktp6s0afVVSj8G-0mbGyULK-1FghC-sU,25539
|
|
78
|
+
nc1709/plugins/agents/ollama_agent.py,sha256=Uc5OGtEUrE7gPCk-WMQp5DPFcYmG_7ipqnQ0y40fa-E,18726
|
|
79
|
+
nc1709/plugins/agents/test_agent.py,sha256=XdBGKh1XCSx8sj0zAGlF-bJdwsAaBsfA1Uy_S4IxhAA,22604
|
|
74
80
|
nc1709/prompts/__init__.py,sha256=it1pznbiYOoxGp4-iQVOmCsgz9ZshmsO19So-YWBtJ0,445
|
|
75
81
|
nc1709/prompts/agent_system.py,sha256=P6Jr5E8LcU2OxaMF8aB1cjFa0WXjOdPqJWAVQwbKnjU,5499
|
|
76
82
|
nc1709/prompts/task_prompts.py,sha256=NNvYuXDII6zNPurmbsYo3KCu4MupM-UVfJvPo4xg0DA,9698
|
|
77
|
-
nc1709/prompts/unified_prompt.py,sha256=
|
|
83
|
+
nc1709/prompts/unified_prompt.py,sha256=pT0XONEY9GDF3l1kXAl06UTvtDvkjipcAWkzSAE-9Gk,8816
|
|
78
84
|
nc1709/web/__init__.py,sha256=KVKby8ZBFsKtSp1G2TkAKyM_3GPoYbgXZRiZ54wO-0E,157
|
|
79
|
-
nc1709/web/server.py,sha256=
|
|
80
|
-
nc1709/web/templates/index.html,sha256=
|
|
81
|
-
nc1709-1.
|
|
82
|
-
nc1709-1.
|
|
83
|
-
nc1709-1.
|
|
84
|
-
nc1709-1.
|
|
85
|
-
nc1709-1.
|
|
86
|
-
nc1709-1.
|
|
85
|
+
nc1709/web/server.py,sha256=pxBMbTEcaMBcgPkwukeZEDD14JoC-IPFEjmS_CQERVg,36209
|
|
86
|
+
nc1709/web/templates/index.html,sha256=GpZgf7I2c6X7x93P2xPoEkfJ2EX95XBOCmIwk2CD-9k,60581
|
|
87
|
+
nc1709-1.18.8.dist-info/licenses/LICENSE,sha256=m-omnJ2S3IYNAFy_SaRUzVHFl8fkvhJOxrfxBx37Lmg,346
|
|
88
|
+
nc1709-1.18.8.dist-info/METADATA,sha256=Q3DzBdSjGcMkh-gk3d32EeZKMpOR6CDEvWGqvjOFgxM,21479
|
|
89
|
+
nc1709-1.18.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
90
|
+
nc1709-1.18.8.dist-info/entry_points.txt,sha256=nVm16ttcjP_XhgFH3jdKqV3e2BemQ1n4XgoXaf9fwBU,43
|
|
91
|
+
nc1709-1.18.8.dist-info/top_level.txt,sha256=wumKEXgmZsZ7nsL0YwoETxqjfRW1o27IWjMShA91_YA,7
|
|
92
|
+
nc1709-1.18.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|