npcsh 0.3.28__py3-none-any.whl → 0.3.30__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.
Files changed (36) hide show
  1. npcsh/llm_funcs.py +32 -23
  2. npcsh/npc_compiler.py +23 -4
  3. npcsh/npc_team/tools/bash_executer.tool +32 -0
  4. npcsh/npc_team/tools/code_executor.tool +16 -0
  5. npcsh/npc_team/tools/npcsh_executor.tool +9 -0
  6. npcsh/npc_team/tools/sql_executor.tool +2 -2
  7. npcsh/shell.py +19 -17
  8. npcsh/shell_helpers.py +576 -49
  9. npcsh-0.3.30.data/data/npcsh/npc_team/bash_executer.tool +32 -0
  10. npcsh-0.3.30.data/data/npcsh/npc_team/code_executor.tool +16 -0
  11. npcsh-0.3.30.data/data/npcsh/npc_team/npcsh_executor.tool +9 -0
  12. {npcsh-0.3.28.data → npcsh-0.3.30.data}/data/npcsh/npc_team/sql_executor.tool +2 -2
  13. {npcsh-0.3.28.dist-info → npcsh-0.3.30.dist-info}/METADATA +43 -3
  14. {npcsh-0.3.28.dist-info → npcsh-0.3.30.dist-info}/RECORD +36 -30
  15. {npcsh-0.3.28.dist-info → npcsh-0.3.30.dist-info}/WHEEL +1 -1
  16. {npcsh-0.3.28.data → npcsh-0.3.30.data}/data/npcsh/npc_team/calculator.tool +0 -0
  17. {npcsh-0.3.28.data → npcsh-0.3.30.data}/data/npcsh/npc_team/celona.npc +0 -0
  18. {npcsh-0.3.28.data → npcsh-0.3.30.data}/data/npcsh/npc_team/corca.npc +0 -0
  19. {npcsh-0.3.28.data → npcsh-0.3.30.data}/data/npcsh/npc_team/eriane.npc +0 -0
  20. {npcsh-0.3.28.data → npcsh-0.3.30.data}/data/npcsh/npc_team/foreman.npc +0 -0
  21. {npcsh-0.3.28.data → npcsh-0.3.30.data}/data/npcsh/npc_team/generic_search.tool +0 -0
  22. {npcsh-0.3.28.data → npcsh-0.3.30.data}/data/npcsh/npc_team/image_generation.tool +0 -0
  23. {npcsh-0.3.28.data → npcsh-0.3.30.data}/data/npcsh/npc_team/lineru.npc +0 -0
  24. {npcsh-0.3.28.data → npcsh-0.3.30.data}/data/npcsh/npc_team/local_search.tool +0 -0
  25. {npcsh-0.3.28.data → npcsh-0.3.30.data}/data/npcsh/npc_team/maurawa.npc +0 -0
  26. {npcsh-0.3.28.data → npcsh-0.3.30.data}/data/npcsh/npc_team/npcsh.ctx +0 -0
  27. {npcsh-0.3.28.data → npcsh-0.3.30.data}/data/npcsh/npc_team/raone.npc +0 -0
  28. {npcsh-0.3.28.data → npcsh-0.3.30.data}/data/npcsh/npc_team/screen_cap.tool +0 -0
  29. {npcsh-0.3.28.data → npcsh-0.3.30.data}/data/npcsh/npc_team/sibiji.npc +0 -0
  30. {npcsh-0.3.28.data → npcsh-0.3.30.data}/data/npcsh/npc_team/slean.npc +0 -0
  31. {npcsh-0.3.28.data → npcsh-0.3.30.data}/data/npcsh/npc_team/test_pipeline.py +0 -0
  32. {npcsh-0.3.28.data → npcsh-0.3.30.data}/data/npcsh/npc_team/turnic.npc +0 -0
  33. {npcsh-0.3.28.data → npcsh-0.3.30.data}/data/npcsh/npc_team/welxor.npc +0 -0
  34. {npcsh-0.3.28.dist-info → npcsh-0.3.30.dist-info}/entry_points.txt +0 -0
  35. {npcsh-0.3.28.dist-info → npcsh-0.3.30.dist-info}/licenses/LICENSE +0 -0
  36. {npcsh-0.3.28.dist-info → npcsh-0.3.30.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,32 @@
1
+ tool_name: bash_executor
2
+ description: Execute bash queries.
3
+ inputs:
4
+ - bash_command
5
+ - user_request
6
+ steps:
7
+ - engine: python
8
+ code: |
9
+ import subprocess
10
+ import os
11
+ cmd = '{{bash_command}}' # Properly quote the command input
12
+ def run_command(cmd):
13
+ process = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
14
+ stdout, stderr = process.communicate()
15
+ if stderr:
16
+ print(f"Error: {stderr.decode('utf-8')}")
17
+ return stderr
18
+ return stdout
19
+ result = run_command(cmd)
20
+ output = result.decode('utf-8')
21
+
22
+ - engine: natural
23
+ code: |
24
+
25
+ Here is the result of the bash command:
26
+ ```
27
+ {{ output }}
28
+ ```
29
+ This was the original user request: {{ user_request }}
30
+
31
+ Please provide a response accordingly.
32
+
@@ -0,0 +1,16 @@
1
+ tool_name: code_executor
2
+ description: Execute scripts with a specified language. choose from python, bash, R, or javascript. Set the ultimate result as the "output" variable. It must be a string. Do not add unnecessary print statements.
3
+ inputs:
4
+ - code
5
+ - language
6
+ steps:
7
+ - engine: '{{ language }}'
8
+ code: |
9
+ {{code}}
10
+ - engine: natural
11
+ code: |
12
+ Here is the result of the code execution that an agent ran.
13
+ ```
14
+ {{ output }}
15
+ ```
16
+ please provide a response accordingly.
@@ -0,0 +1,9 @@
1
+ tool_name: npcsh_executor
2
+ description: Execute npcsh commands. Use the macro commands.
3
+ inputs:
4
+ - code
5
+ - language
6
+ steps:
7
+ - engine: "{{language}}"
8
+ code: |
9
+ {{code}}
@@ -1,5 +1,5 @@
1
- tool_name: sql_executor
2
- description: Execute SQL queries on the ~/npcsh_history.db and display the result. The database contains only information about conversations and other user-provided data. It does not store any information about individual files.
1
+ tool_name: data_pull
2
+ description: Execute queries on the ~/npcsh_history.db to pull data. The database contains only information about conversations and other user-provided data. It does not store any information about individual files.
3
3
  inputs:
4
4
  - sql_query
5
5
  - interpret: false # Note that this is not a boolean, but a string
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: npcsh
3
- Version: 0.3.28
3
+ Version: 0.3.30
4
4
  Summary: npcsh is a command line tool for integrating LLMs into everyday workflows and for orchestrating teams of NPCs.
5
5
  Home-page: https://github.com/cagostino/npcsh
6
6
  Author: Christopher Agostino
@@ -469,6 +469,7 @@ if __name__ == "__main__":
469
469
  ### Linux install
470
470
  ```bash
471
471
 
472
+ # for audio primarily
472
473
  sudo apt-get install espeak
473
474
  sudo apt-get install portaudio19-dev python3-pyaudio
474
475
  sudo apt-get install alsa-base alsa-utils
@@ -476,6 +477,10 @@ sudo apt-get install libcairo2-dev
476
477
  sudo apt-get install libgirepository1.0-dev
477
478
  sudo apt-get install ffmpeg
478
479
 
480
+ # for triggers
481
+ sudo apt install inotify-tools
482
+
483
+
479
484
  #And if you don't have ollama installed, use this:
480
485
  curl -fsSL https://ollama.com/install.sh | sh
481
486
 
@@ -498,11 +503,17 @@ pip install npcsh[all]
498
503
 
499
504
  ### Mac install
500
505
  ```bash
506
+ #mainly for audio
501
507
  brew install portaudio
502
508
  brew install ffmpeg
509
+ brew install pygobject3
510
+
511
+ # for triggers
512
+ brew install ...
513
+
514
+
503
515
  brew install ollama
504
516
  brew services start ollama
505
- brew install pygobject3
506
517
  ollama pull llama3.2
507
518
  ollama pull llava:7b
508
519
  ollama pull nomic-embed-text
@@ -1076,13 +1087,30 @@ npc ots -f test_data/catfight.PNG
1076
1087
  ### Plan : Schedule tasks to be run at regular intervals (under construction)
1077
1088
  Use the /plan macro to schedule tasks to be run at regular intervals.
1078
1089
  ```npcsh
1079
- npcsh> /plan run a rag search on the files in the current directory every 5 minutes
1090
+ npcsh> /plan run a rag search for 'moonbeam' on the files in the current directory every 5 minutes
1080
1091
  ```
1081
1092
 
1093
+ ```npcsh
1094
+ npcsh> /plan record the cpu usage every 5 minutes
1095
+ ```
1096
+
1097
+ ```npcsh
1098
+ npcsh> /plan record the apps that are using the most ram every 5 minutes
1099
+ ```
1100
+
1101
+
1102
+
1103
+
1082
1104
  ```bash
1083
1105
  npc plan -f 30m -t 'task'
1084
1106
  ```
1085
1107
 
1108
+ Plan will use platform-specific scheduling tools. In particular, it uses crontab on Linux and launchd on macOS and Schedule Tasks on Windows.
1109
+
1110
+ Implementations have been provided for Mac and Windows but only has been tested as of 3/23/2025 on Linux.
1111
+
1112
+
1113
+
1086
1114
  ### Plonk : Computer Control
1087
1115
  Use the /plonk macro to allow the LLM to control your computer.
1088
1116
  ```npcsh
@@ -1368,6 +1396,18 @@ npcsh> /spool model=llama3.3
1368
1396
  npc spool -n npc.npc
1369
1397
  ```
1370
1398
 
1399
+ ### Trigger
1400
+ Use the /trigger macro to execute specific actionss based on certain conditions.
1401
+
1402
+ ```npcsh
1403
+ npcsh> /trigger watch for new PDF downloads in the ~/Downloads directory and move them
1404
+ to the ~/Documents/PDFs directory . Ensure that the directory exists or create it if it does not.
1405
+ ```
1406
+
1407
+ On Linux, trigger makes use of inotify-tools to watch for file system events. On macOS, it uses fswatch, and on Windows, it uses Watch-Command.
1408
+
1409
+
1410
+
1371
1411
 
1372
1412
 
1373
1413
  ### Vixynt: Image Generation
@@ -10,18 +10,18 @@ npcsh/helpers.py,sha256=aiK6kzf1jEYTHFssSxMOhPWDIcRvE0jXyrxWqh0coek,18992
10
10
  npcsh/image.py,sha256=nVnVsd0yqmUoyoyJWqbPLlEmjtFctNnpkiKZLdTSVIg,10533
11
11
  npcsh/image_gen.py,sha256=PZQfFBtyXQuxfs1x2mJGL4RkudnKdzZp5Xem9gSevG0,2047
12
12
  npcsh/knowledge_graph.py,sha256=YIE0SJmUUfYrn1GqG6L7lWG0dIsQBun7A5CeA86PO6o,31442
13
- npcsh/llm_funcs.py,sha256=U10KSPqsJp4oy2edNh7mjAjYbIuxjGO3S-zaSi-rX0o,69030
13
+ npcsh/llm_funcs.py,sha256=lhjhyua11UyKE5mQLJ7ziDtSNVelHKBFqr0QSKrSAYc,68254
14
14
  npcsh/load_data.py,sha256=Vh6YGxFVGWBMcn4cDrIgy8sC7QGCrWk0niJyR3l-k9U,1967
15
15
  npcsh/main.py,sha256=rpf_2ysx3cR3eHsrvZApprJ-3D3-OrWcJ15bM1bc97I,81
16
16
  npcsh/model_runner.py,sha256=riS6Hx3M7mj5erMm7OwBA8yufXYseVEbMYTRSfaDh2Y,6427
17
- npcsh/npc_compiler.py,sha256=2l3-B2czt_uZARJg_5PObFjjkr8WbmBY2rBJBTq3w0k,104268
17
+ npcsh/npc_compiler.py,sha256=ZSn181_7SLdCRLC-VsaDofxCtsI_RaJ5e6jBpnhd3tQ,104931
18
18
  npcsh/npc_sysenv.py,sha256=g5LPYo8g6jlKd22fWVGghanLCr7tqjxytKvFbu0k-C0,11505
19
19
  npcsh/plonk.py,sha256=ewdkX6K1V9kLFkrNsQ5oGXLiuFaLev9mxXBY-B0PKus,9926
20
20
  npcsh/response.py,sha256=DFh6uoIw06SqPqKGv9DGHzoltprUHJSz6ZxgFBZRzX8,22478
21
21
  npcsh/search.py,sha256=K3AcYlefm_YNWQO_Yq5kTIRFKIIN3xX70CC3z038ox0,8605
22
22
  npcsh/serve.py,sha256=Zy47IdaGCt5ziGnQ5KHTQH1K7xXyo7trwUMVDOLNxvU,48246
23
- npcsh/shell.py,sha256=EFsvNJCW5EYdikkbm0KHQRu0tNFh0HcHB_62k5gqcUI,18218
24
- npcsh/shell_helpers.py,sha256=Y0ZSR5AK5QovlJUF5WcqOwaIeCwZxM-LDo2ukPlDA8c,96185
23
+ npcsh/shell.py,sha256=_zQAp8jZuyDDYH4fwZxORrT1wnHhL85OsksC-t9xdtQ,18189
24
+ npcsh/shell_helpers.py,sha256=df1HUeZSJUBfVK-wNkS6TJlwwoGDHXmaXKbFOR1FXFk,115398
25
25
  npcsh/stream.py,sha256=gEwanrb5g4Fmu10fVN-3Gu_i434GWtE6zNZrhjQJ6EA,21995
26
26
  npcsh/video.py,sha256=Fv9Sii6LIEOI6D_1eoEu7DA8Es3mUYxEPcX3dac2Lt0,1935
27
27
  npcsh/npc_team/corca.npc,sha256=9qs7922thBESU4r5GRygqAjvg9zvhQyMYqqyb4wwSew,662
@@ -37,34 +37,40 @@ npcsh/npc_team/templates/marketing/slean.npc,sha256=to3-d7qWMzhrYAeXalzNqVdt_3wR
37
37
  npcsh/npc_team/templates/philosophy/maurawa.npc,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
38
  npcsh/npc_team/templates/sales/turnic.npc,sha256=odTFzQTN01-xaWXvjoC698htaFi6mvrzfKMAob8Yqb0,335
39
39
  npcsh/npc_team/templates/software/welxor.npc,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
+ npcsh/npc_team/tools/bash_executer.tool,sha256=Myn87qJ6u-oWzZLZkd6TjxXE_TT-z3oGh5Wzs2TcD3I,836
40
41
  npcsh/npc_team/tools/calculator.tool,sha256=ZKmQ0VusuJj8Ib5MDqC8MTDaqWIZCxzpazWPVkYZqYc,197
42
+ npcsh/npc_team/tools/code_executor.tool,sha256=L0gerbPkDgykgwvto_aKC8oUOrfv5lF2DhE51JEUFHM,511
41
43
  npcsh/npc_team/tools/generic_search.tool,sha256=sYA4aUuZm84vpx-5tNi6ADq9ywHaj_YfLt6PI0ZblUo,745
42
44
  npcsh/npc_team/tools/image_generation.tool,sha256=CaTkdjxWLFtMAghPvZnToMSwHbMQVusojhd9R9jybmI,577
43
45
  npcsh/npc_team/tools/local_search.tool,sha256=g9Hc_Xx08fc6lu1IHvdwYU_18KxcOoHDwvIAfrGmn3U,6852
46
+ npcsh/npc_team/tools/npcsh_executor.tool,sha256=mavPowr8qXyPUuqRGqb5u1L8motyFoAyb4Xni4AjlFg,178
44
47
  npcsh/npc_team/tools/screen_cap.tool,sha256=v7l54PWWdgszdd-n_DFqI9nyMlBSeYeNIfQsdFYSZ_4,1389
45
- npcsh/npc_team/tools/sql_executor.tool,sha256=laEOBoyX2p3dbQpY2HoWnj5IXvxBoZ4kghGMkBwymQA,825
46
- npcsh-0.3.28.data/data/npcsh/npc_team/calculator.tool,sha256=ZKmQ0VusuJj8Ib5MDqC8MTDaqWIZCxzpazWPVkYZqYc,197
47
- npcsh-0.3.28.data/data/npcsh/npc_team/celona.npc,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
- npcsh-0.3.28.data/data/npcsh/npc_team/corca.npc,sha256=9qs7922thBESU4r5GRygqAjvg9zvhQyMYqqyb4wwSew,662
49
- npcsh-0.3.28.data/data/npcsh/npc_team/eriane.npc,sha256=5z6L-RjEouEp06SLOzkQoOCEi0eb1K-CxVnvyIbNK3g,299
50
- npcsh-0.3.28.data/data/npcsh/npc_team/foreman.npc,sha256=WqB8jLfBToGmr8c1vip1KOnTHxfXlGXwDUGnZoDMQr0,327
51
- npcsh-0.3.28.data/data/npcsh/npc_team/generic_search.tool,sha256=sYA4aUuZm84vpx-5tNi6ADq9ywHaj_YfLt6PI0ZblUo,745
52
- npcsh-0.3.28.data/data/npcsh/npc_team/image_generation.tool,sha256=CaTkdjxWLFtMAghPvZnToMSwHbMQVusojhd9R9jybmI,577
53
- npcsh-0.3.28.data/data/npcsh/npc_team/lineru.npc,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
- npcsh-0.3.28.data/data/npcsh/npc_team/local_search.tool,sha256=g9Hc_Xx08fc6lu1IHvdwYU_18KxcOoHDwvIAfrGmn3U,6852
55
- npcsh-0.3.28.data/data/npcsh/npc_team/maurawa.npc,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
- npcsh-0.3.28.data/data/npcsh/npc_team/npcsh.ctx,sha256=VOd7omCBo_764gKCYuHxJcyVc61oC5YjB7rnCbDhnYU,275
57
- npcsh-0.3.28.data/data/npcsh/npc_team/raone.npc,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
- npcsh-0.3.28.data/data/npcsh/npc_team/screen_cap.tool,sha256=v7l54PWWdgszdd-n_DFqI9nyMlBSeYeNIfQsdFYSZ_4,1389
59
- npcsh-0.3.28.data/data/npcsh/npc_team/sibiji.npc,sha256=MJZHU9xXmvUbZvwpX1wWinvkrwYiKm1J63t37l0EYGE,202
60
- npcsh-0.3.28.data/data/npcsh/npc_team/slean.npc,sha256=to3-d7qWMzhrYAeXalzNqVdt_3wROFGEfhprVXDttos,326
61
- npcsh-0.3.28.data/data/npcsh/npc_team/sql_executor.tool,sha256=laEOBoyX2p3dbQpY2HoWnj5IXvxBoZ4kghGMkBwymQA,825
62
- npcsh-0.3.28.data/data/npcsh/npc_team/test_pipeline.py,sha256=GKIcqw0fXDHsUDfMvu7GTj5cfPnqs7aX5xxiKPs2xCc,5657
63
- npcsh-0.3.28.data/data/npcsh/npc_team/turnic.npc,sha256=odTFzQTN01-xaWXvjoC698htaFi6mvrzfKMAob8Yqb0,335
64
- npcsh-0.3.28.data/data/npcsh/npc_team/welxor.npc,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
- npcsh-0.3.28.dist-info/licenses/LICENSE,sha256=j0YPvce7Ng9e32zYOu0EmXjXeJ0Nwawd0RA3uSGGH4E,1070
66
- npcsh-0.3.28.dist-info/METADATA,sha256=pTNSY27gaMZvz1Q3NsHVUy0nQWtmho5-cgtusHOyshg,82196
67
- npcsh-0.3.28.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
68
- npcsh-0.3.28.dist-info/entry_points.txt,sha256=Y2rAM_m1er_Effxc0DXtGh36sC1FOUfefqGAt6vEte0,64
69
- npcsh-0.3.28.dist-info/top_level.txt,sha256=kHSNgKMCkfjV95-DH0YSp1LLBi0HXdF3w57j7MQON3E,6
70
- npcsh-0.3.28.dist-info/RECORD,,
48
+ npcsh/npc_team/tools/sql_executor.tool,sha256=kEgxpb_9QUJpj8MEbzJY-isATG6Pi3KfVuffpwaoESM,808
49
+ npcsh-0.3.30.data/data/npcsh/npc_team/bash_executer.tool,sha256=Myn87qJ6u-oWzZLZkd6TjxXE_TT-z3oGh5Wzs2TcD3I,836
50
+ npcsh-0.3.30.data/data/npcsh/npc_team/calculator.tool,sha256=ZKmQ0VusuJj8Ib5MDqC8MTDaqWIZCxzpazWPVkYZqYc,197
51
+ npcsh-0.3.30.data/data/npcsh/npc_team/celona.npc,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
+ npcsh-0.3.30.data/data/npcsh/npc_team/code_executor.tool,sha256=L0gerbPkDgykgwvto_aKC8oUOrfv5lF2DhE51JEUFHM,511
53
+ npcsh-0.3.30.data/data/npcsh/npc_team/corca.npc,sha256=9qs7922thBESU4r5GRygqAjvg9zvhQyMYqqyb4wwSew,662
54
+ npcsh-0.3.30.data/data/npcsh/npc_team/eriane.npc,sha256=5z6L-RjEouEp06SLOzkQoOCEi0eb1K-CxVnvyIbNK3g,299
55
+ npcsh-0.3.30.data/data/npcsh/npc_team/foreman.npc,sha256=WqB8jLfBToGmr8c1vip1KOnTHxfXlGXwDUGnZoDMQr0,327
56
+ npcsh-0.3.30.data/data/npcsh/npc_team/generic_search.tool,sha256=sYA4aUuZm84vpx-5tNi6ADq9ywHaj_YfLt6PI0ZblUo,745
57
+ npcsh-0.3.30.data/data/npcsh/npc_team/image_generation.tool,sha256=CaTkdjxWLFtMAghPvZnToMSwHbMQVusojhd9R9jybmI,577
58
+ npcsh-0.3.30.data/data/npcsh/npc_team/lineru.npc,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
+ npcsh-0.3.30.data/data/npcsh/npc_team/local_search.tool,sha256=g9Hc_Xx08fc6lu1IHvdwYU_18KxcOoHDwvIAfrGmn3U,6852
60
+ npcsh-0.3.30.data/data/npcsh/npc_team/maurawa.npc,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
61
+ npcsh-0.3.30.data/data/npcsh/npc_team/npcsh.ctx,sha256=VOd7omCBo_764gKCYuHxJcyVc61oC5YjB7rnCbDhnYU,275
62
+ npcsh-0.3.30.data/data/npcsh/npc_team/npcsh_executor.tool,sha256=mavPowr8qXyPUuqRGqb5u1L8motyFoAyb4Xni4AjlFg,178
63
+ npcsh-0.3.30.data/data/npcsh/npc_team/raone.npc,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
+ npcsh-0.3.30.data/data/npcsh/npc_team/screen_cap.tool,sha256=v7l54PWWdgszdd-n_DFqI9nyMlBSeYeNIfQsdFYSZ_4,1389
65
+ npcsh-0.3.30.data/data/npcsh/npc_team/sibiji.npc,sha256=MJZHU9xXmvUbZvwpX1wWinvkrwYiKm1J63t37l0EYGE,202
66
+ npcsh-0.3.30.data/data/npcsh/npc_team/slean.npc,sha256=to3-d7qWMzhrYAeXalzNqVdt_3wROFGEfhprVXDttos,326
67
+ npcsh-0.3.30.data/data/npcsh/npc_team/sql_executor.tool,sha256=kEgxpb_9QUJpj8MEbzJY-isATG6Pi3KfVuffpwaoESM,808
68
+ npcsh-0.3.30.data/data/npcsh/npc_team/test_pipeline.py,sha256=GKIcqw0fXDHsUDfMvu7GTj5cfPnqs7aX5xxiKPs2xCc,5657
69
+ npcsh-0.3.30.data/data/npcsh/npc_team/turnic.npc,sha256=odTFzQTN01-xaWXvjoC698htaFi6mvrzfKMAob8Yqb0,335
70
+ npcsh-0.3.30.data/data/npcsh/npc_team/welxor.npc,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
+ npcsh-0.3.30.dist-info/licenses/LICENSE,sha256=j0YPvce7Ng9e32zYOu0EmXjXeJ0Nwawd0RA3uSGGH4E,1070
72
+ npcsh-0.3.30.dist-info/METADATA,sha256=oDq8RX-geEfX-L6ZbsPO0jwiThcsmikvTJGotqgt5E8,83180
73
+ npcsh-0.3.30.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
74
+ npcsh-0.3.30.dist-info/entry_points.txt,sha256=Y2rAM_m1er_Effxc0DXtGh36sC1FOUfefqGAt6vEte0,64
75
+ npcsh-0.3.30.dist-info/top_level.txt,sha256=kHSNgKMCkfjV95-DH0YSp1LLBi0HXdF3w57j7MQON3E,6
76
+ npcsh-0.3.30.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (77.0.3)
2
+ Generator: setuptools (78.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5