npcsh 1.1.4__tar.gz → 1.1.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.
- {npcsh-1.1.4 → npcsh-1.1.6}/PKG-INFO +1 -10
- {npcsh-1.1.4 → npcsh-1.1.6}/README.md +0 -9
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/_state.py +470 -367
- npcsh-1.1.6/npcsh/npc_team/corca_example.png +0 -0
- npcsh-1.1.4/npcsh/npc_team/jinxs/python_executor.jinx → npcsh-1.1.6/npcsh/npc_team/jinxs/code/python.jinx +1 -1
- npcsh-1.1.4/npcsh/npc_team/jinxs/bash_executer.jinx → npcsh-1.1.6/npcsh/npc_team/jinxs/code/sh.jinx +1 -2
- npcsh-1.1.6/npcsh/npc_team/jinxs/code/sql.jinx +16 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/modes/alicanto.jinx +88 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/modes/corca.jinx +28 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/modes/guac.jinx +46 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/modes/plonk.jinx +57 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/modes/pti.jinx +28 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/modes/spool.jinx +40 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/modes/wander.jinx +81 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/modes/yap.jinx +25 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/utils/breathe.jinx +20 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/utils/core/build.jinx +65 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/utils/core/compile.jinx +50 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/utils/core/help.jinx +52 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/utils/core/init.jinx +41 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/utils/core/jinxs.jinx +32 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/utils/core/set.jinx +40 -0
- {npcsh-1.1.4/npcsh/npc_team/jinxs → npcsh-1.1.6/npcsh/npc_team/jinxs/utils}/edit_file.jinx +1 -1
- npcsh-1.1.6/npcsh/npc_team/jinxs/utils/flush.jinx +39 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/utils/npc-studio.jinx +77 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/utils/ots.jinx +61 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/utils/plan.jinx +33 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/utils/roll.jinx +66 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/utils/sample.jinx +56 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/utils/search.jinx +130 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/utils/serve.jinx +29 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/utils/sleep.jinx +116 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/utils/trigger.jinx +36 -0
- npcsh-1.1.6/npcsh/npc_team/jinxs/utils/vixynt.jinx +117 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/npcsh.py +13 -11
- npcsh-1.1.6/npcsh/routes.py +140 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh.egg-info/PKG-INFO +1 -10
- npcsh-1.1.6/npcsh.egg-info/SOURCES.txt +76 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/setup.py +1 -1
- npcsh-1.1.4/npcsh/npc_team/jinxs/image_generation.jinx +0 -29
- npcsh-1.1.4/npcsh/npc_team/jinxs/internet_search.jinx +0 -31
- npcsh-1.1.4/npcsh/npc_team/jinxs/kg_search.jinx +0 -43
- npcsh-1.1.4/npcsh/npc_team/jinxs/memory_search.jinx +0 -36
- npcsh-1.1.4/npcsh/npc_team/jinxs/screen_cap.jinx +0 -25
- npcsh-1.1.4/npcsh/routes.py +0 -1462
- npcsh-1.1.4/npcsh.egg-info/SOURCES.txt +0 -53
- {npcsh-1.1.4 → npcsh-1.1.6}/LICENSE +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/__init__.py +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/alicanto.py +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/build.py +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/corca.py +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/guac.py +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/mcp_helpers.py +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/mcp_server.py +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/npc.py +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/npc_team/alicanto.npc +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/npc_team/alicanto.png +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/npc_team/corca.npc +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/npc_team/corca.png +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/npc_team/foreman.npc +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/npc_team/frederic.npc +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/npc_team/frederic4.png +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/npc_team/guac.png +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/npc_team/kadiefa.npc +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/npc_team/kadiefa.png +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/npc_team/npcsh.ctx +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/npc_team/npcsh_sibiji.png +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/npc_team/plonk.npc +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/npc_team/plonk.png +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/npc_team/plonkjr.npc +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/npc_team/plonkjr.png +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/npc_team/sibiji.npc +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/npc_team/sibiji.png +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/npc_team/spool.png +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/npc_team/yap.png +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/plonk.py +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/pti.py +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/spool.py +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/wander.py +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh/yap.py +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh.egg-info/dependency_links.txt +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh.egg-info/entry_points.txt +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh.egg-info/requires.txt +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/npcsh.egg-info/top_level.txt +0 -0
- {npcsh-1.1.4 → npcsh-1.1.6}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: npcsh
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.6
|
|
4
4
|
Summary: npcsh is a command-line toolkit for using AI agents in novel ways.
|
|
5
5
|
Home-page: https://github.com/NPC-Worldwide/npcsh
|
|
6
6
|
Author: Christopher Agostino
|
|
@@ -142,15 +142,6 @@ and you will enter the NPC shell. Additionally, the pip installation includes th
|
|
|
142
142
|
npcsh>please read through the markdown files in the docs folder and suggest changes based on the current implementation in the src folder
|
|
143
143
|
```
|
|
144
144
|
|
|
145
|
-
- **Ask a Generic Question**
|
|
146
|
-
```bash
|
|
147
|
-
npcsh> has there ever been a better pasta shape than bucatini?
|
|
148
|
-
```
|
|
149
|
-
```
|
|
150
|
-
Bucatini is certainly a favorite for many due to its unique hollow center, which holds sauces beautifully. Whether it's "better" is subjective and depends on the dish and personal
|
|
151
|
-
preference. Shapes like orecchiette, rigatoni, or trofie excel in different recipes. Bucatini stands out for its versatility and texture, making it a top contender among pasta shapes!
|
|
152
|
-
```
|
|
153
|
-
|
|
154
145
|
|
|
155
146
|
- **Search the Web**
|
|
156
147
|
```bash
|
|
@@ -42,15 +42,6 @@ and you will enter the NPC shell. Additionally, the pip installation includes th
|
|
|
42
42
|
npcsh>please read through the markdown files in the docs folder and suggest changes based on the current implementation in the src folder
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
-
- **Ask a Generic Question**
|
|
46
|
-
```bash
|
|
47
|
-
npcsh> has there ever been a better pasta shape than bucatini?
|
|
48
|
-
```
|
|
49
|
-
```
|
|
50
|
-
Bucatini is certainly a favorite for many due to its unique hollow center, which holds sauces beautifully. Whether it's "better" is subjective and depends on the dish and personal
|
|
51
|
-
preference. Shapes like orecchiette, rigatoni, or trofie excel in different recipes. Bucatini stands out for its versatility and texture, making it a top contender among pasta shapes!
|
|
52
|
-
```
|
|
53
|
-
|
|
54
45
|
|
|
55
46
|
- **Search the Web**
|
|
56
47
|
```bash
|