npcsh 1.1.12__tar.gz → 1.1.13__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.12 → npcsh-1.1.13}/PKG-INFO +1 -1
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/_state.py +700 -377
- npcsh-1.1.13/npcsh/alicanto.py +65 -0
- npcsh-1.1.13/npcsh/completion.py +206 -0
- npcsh-1.1.13/npcsh/config.py +163 -0
- npcsh-1.1.13/npcsh/corca.py +50 -0
- npcsh-1.1.13/npcsh/execution.py +185 -0
- npcsh-1.1.13/npcsh/guac.py +46 -0
- npcsh-1.1.13/npcsh/npc_team/jinxs/code/sh.jinx +34 -0
- npcsh-1.1.13/npcsh/npc_team/jinxs/modes/alicanto.jinx +194 -0
- npcsh-1.1.13/npcsh/npc_team/jinxs/modes/corca.jinx +249 -0
- npcsh-1.1.13/npcsh/npc_team/jinxs/modes/guac.jinx +317 -0
- npcsh-1.1.13/npcsh/npc_team/jinxs/modes/plonk.jinx +214 -0
- npcsh-1.1.13/npcsh/npc_team/jinxs/modes/pti.jinx +170 -0
- npcsh-1.1.13/npcsh/npc_team/jinxs/modes/spool.jinx +161 -0
- npcsh-1.1.13/npcsh/npc_team/jinxs/modes/wander.jinx +186 -0
- npcsh-1.1.13/npcsh/npc_team/jinxs/modes/yap.jinx +262 -0
- npcsh-1.1.13/npcsh/npc_team/jinxs/utils/chat.jinx +44 -0
- npcsh-1.1.13/npcsh/npc_team/jinxs/utils/cmd.jinx +44 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/jinxs/utils/search.jinx +3 -3
- npcsh-1.1.13/npcsh/npc_team/jinxs/utils/usage.jinx +33 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npcsh.py +76 -20
- npcsh-1.1.13/npcsh/parsing.py +118 -0
- npcsh-1.1.13/npcsh/plonk.py +54 -0
- npcsh-1.1.13/npcsh/pti.py +54 -0
- npcsh-1.1.13/npcsh/spool.py +48 -0
- npcsh-1.1.13/npcsh/ui.py +199 -0
- npcsh-1.1.13/npcsh/wander.py +62 -0
- npcsh-1.1.13/npcsh/yap.py +50 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh.egg-info/PKG-INFO +1 -1
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh.egg-info/SOURCES.txt +7 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/setup.py +1 -1
- npcsh-1.1.12/npcsh/alicanto.py +0 -1164
- npcsh-1.1.12/npcsh/corca.py +0 -1477
- npcsh-1.1.12/npcsh/guac.py +0 -2001
- npcsh-1.1.12/npcsh/npc_team/jinxs/code/sh.jinx +0 -38
- npcsh-1.1.12/npcsh/npc_team/jinxs/modes/alicanto.jinx +0 -88
- npcsh-1.1.12/npcsh/npc_team/jinxs/modes/corca.jinx +0 -28
- npcsh-1.1.12/npcsh/npc_team/jinxs/modes/guac.jinx +0 -46
- npcsh-1.1.12/npcsh/npc_team/jinxs/modes/plonk.jinx +0 -53
- npcsh-1.1.12/npcsh/npc_team/jinxs/modes/pti.jinx +0 -28
- npcsh-1.1.12/npcsh/npc_team/jinxs/modes/spool.jinx +0 -40
- npcsh-1.1.12/npcsh/npc_team/jinxs/modes/wander.jinx +0 -81
- npcsh-1.1.12/npcsh/npc_team/jinxs/modes/yap.jinx +0 -25
- npcsh-1.1.12/npcsh/npc_team/jinxs/utils/chat.jinx +0 -17
- npcsh-1.1.12/npcsh/plonk.py +0 -342
- npcsh-1.1.12/npcsh/pti.py +0 -214
- npcsh-1.1.12/npcsh/spool.py +0 -253
- npcsh-1.1.12/npcsh/wander.py +0 -550
- npcsh-1.1.12/npcsh/yap.py +0 -582
- {npcsh-1.1.12 → npcsh-1.1.13}/LICENSE +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/README.md +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/__init__.py +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/build.py +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/mcp_helpers.py +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/mcp_server.py +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc.py +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/alicanto.npc +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/alicanto.png +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/corca.npc +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/corca.png +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/corca_example.png +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/foreman.npc +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/frederic.npc +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/frederic4.png +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/guac.png +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/jinxs/code/python.jinx +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/jinxs/code/sql.jinx +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/jinxs/npc_studio/npc-studio.jinx +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/jinxs/utils/agent.jinx +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/jinxs/utils/compress.jinx +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/jinxs/utils/core/build.jinx +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/jinxs/utils/core/compile.jinx +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/jinxs/utils/core/help.jinx +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/jinxs/utils/core/init.jinx +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/jinxs/utils/core/jinxs.jinx +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/jinxs/utils/core/set.jinx +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/jinxs/utils/edit_file.jinx +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/jinxs/utils/load_file.jinx +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/jinxs/utils/ots.jinx +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/jinxs/utils/roll.jinx +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/jinxs/utils/sample.jinx +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/jinxs/utils/serve.jinx +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/jinxs/utils/sleep.jinx +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/jinxs/utils/trigger.jinx +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/jinxs/utils/vixynt.jinx +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/kadiefa.npc +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/kadiefa.png +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/npcsh.ctx +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/npcsh_sibiji.png +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/plonk.npc +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/plonk.png +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/plonkjr.npc +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/plonkjr.png +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/sibiji.npc +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/sibiji.png +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/spool.png +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/npc_team/yap.png +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh/routes.py +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh.egg-info/dependency_links.txt +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh.egg-info/entry_points.txt +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh.egg-info/requires.txt +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/npcsh.egg-info/top_level.txt +0 -0
- {npcsh-1.1.12 → npcsh-1.1.13}/setup.cfg +0 -0