npcsh 1.1.16__py3-none-any.whl → 1.1.17__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.
- npcsh/_state.py +24 -9
- npcsh/benchmark/__init__.py +22 -0
- npcsh/benchmark/npcsh_agent.py +262 -0
- npcsh/benchmark/runner.py +569 -0
- npcsh/npc_team/jinxs/bin/benchmark.jinx +146 -0
- npcsh/npc_team/jinxs/bin/nql.jinx +7 -7
- npcsh/npc_team/jinxs/bin/roll.jinx +20 -23
- npcsh/npc_team/jinxs/bin/sample.jinx +6 -7
- npcsh/npc_team/jinxs/bin/spool.jinx +4 -4
- npcsh/npc_team/jinxs/bin/sync.jinx +6 -6
- npcsh/npc_team/jinxs/bin/vixynt.jinx +8 -8
- npcsh/npc_team/jinxs/bin/wander.jinx +109 -19
- npcsh/npc_team/jinxs/bin/yap.jinx +5 -5
- npcsh/npc_team/jinxs/incognide/add_tab.jinx +11 -0
- npcsh/npc_team/jinxs/incognide/close_pane.jinx +9 -0
- npcsh/npc_team/jinxs/incognide/close_tab.jinx +10 -0
- npcsh/npc_team/jinxs/incognide/confirm.jinx +10 -0
- npcsh/npc_team/jinxs/incognide/focus_pane.jinx +9 -0
- npcsh/npc_team/jinxs/{npc_studio/npc-studio.jinx → incognide/incognide.jinx} +2 -2
- npcsh/npc_team/jinxs/incognide/list_panes.jinx +8 -0
- npcsh/npc_team/jinxs/incognide/navigate.jinx +10 -0
- npcsh/npc_team/jinxs/incognide/notify.jinx +10 -0
- npcsh/npc_team/jinxs/incognide/open_pane.jinx +13 -0
- npcsh/npc_team/jinxs/incognide/read_pane.jinx +9 -0
- npcsh/npc_team/jinxs/incognide/run_terminal.jinx +10 -0
- npcsh/npc_team/jinxs/incognide/send_message.jinx +10 -0
- npcsh/npc_team/jinxs/incognide/split_pane.jinx +12 -0
- npcsh/npc_team/jinxs/incognide/switch_npc.jinx +10 -0
- npcsh/npc_team/jinxs/incognide/switch_tab.jinx +10 -0
- npcsh/npc_team/jinxs/incognide/write_file.jinx +11 -0
- npcsh/npc_team/jinxs/incognide/zen_mode.jinx +9 -0
- npcsh/npc_team/jinxs/lib/browser/browser_action.jinx +4 -4
- npcsh/npc_team/jinxs/lib/browser/browser_screenshot.jinx +1 -1
- npcsh/npc_team/jinxs/lib/browser/open_browser.jinx +2 -2
- npcsh/npc_team/jinxs/lib/computer_use/click.jinx +2 -2
- npcsh/npc_team/jinxs/lib/computer_use/key_press.jinx +1 -1
- npcsh/npc_team/jinxs/lib/computer_use/launch_app.jinx +1 -1
- npcsh/npc_team/jinxs/lib/computer_use/screenshot.jinx +1 -1
- npcsh/npc_team/jinxs/lib/computer_use/trigger.jinx +2 -2
- npcsh/npc_team/jinxs/lib/computer_use/type_text.jinx +1 -1
- npcsh/npc_team/jinxs/lib/computer_use/wait.jinx +1 -1
- npcsh/npc_team/jinxs/lib/core/chat.jinx +4 -4
- npcsh/npc_team/jinxs/lib/core/cmd.jinx +4 -4
- npcsh/npc_team/jinxs/lib/core/compress.jinx +8 -8
- npcsh/npc_team/jinxs/lib/core/edit_file.jinx +3 -0
- npcsh/npc_team/jinxs/lib/core/ots.jinx +7 -7
- npcsh/npc_team/jinxs/lib/core/search/db_search.jinx +44 -0
- npcsh/npc_team/jinxs/lib/core/search/file_search.jinx +94 -0
- npcsh/npc_team/jinxs/lib/core/search/kg_search.jinx +96 -0
- npcsh/npc_team/jinxs/lib/core/search/mem_search.jinx +80 -0
- npcsh/npc_team/jinxs/lib/core/search/web_search.jinx +51 -0
- npcsh/npc_team/jinxs/lib/core/search.jinx +52 -129
- npcsh/npc_team/jinxs/lib/core/sh.jinx +1 -1
- npcsh/npc_team/jinxs/lib/core/sleep.jinx +7 -7
- npcsh/npc_team/jinxs/lib/core/sql.jinx +7 -7
- npcsh/npc_team/jinxs/lib/orchestration/convene.jinx +7 -7
- npcsh/npc_team/jinxs/lib/orchestration/delegate.jinx +8 -9
- npcsh/npc_team/jinxs/lib/research/arxiv.jinx +2 -2
- npcsh/npc_team/jinxs/lib/research/paper_search.jinx +3 -3
- npcsh/npc_team/jinxs/lib/research/semantic_scholar.jinx +2 -2
- npcsh/npc_team/jinxs/lib/utils/build.jinx +5 -5
- npcsh/npc_team/jinxs/lib/utils/compile.jinx +2 -2
- npcsh/npc_team/jinxs/lib/utils/help.jinx +1 -1
- npcsh/npc_team/jinxs/lib/utils/init.jinx +5 -5
- npcsh/npc_team/jinxs/lib/utils/jinxs.jinx +1 -1
- npcsh/npc_team/jinxs/lib/utils/serve.jinx +2 -2
- npcsh/npc_team/jinxs/lib/utils/set.jinx +2 -2
- npcsh/npc_team/jinxs/lib/utils/switch.jinx +3 -3
- npcsh/npc_team/jinxs/lib/utils/switches.jinx +1 -1
- npcsh/npc_team/jinxs/lib/utils/teamviz.jinx +2 -2
- npcsh/npc_team/sibiji.npc +1 -1
- npcsh/npcsh.py +81 -43
- npcsh-1.1.17.data/data/npcsh/npc_team/add_tab.jinx +11 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/arxiv.jinx +2 -2
- npcsh-1.1.17.data/data/npcsh/npc_team/benchmark.jinx +146 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/browser_action.jinx +4 -4
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/browser_screenshot.jinx +1 -1
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/build.jinx +5 -5
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/chat.jinx +4 -4
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/click.jinx +2 -2
- npcsh-1.1.17.data/data/npcsh/npc_team/close_pane.jinx +9 -0
- npcsh-1.1.17.data/data/npcsh/npc_team/close_tab.jinx +10 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/cmd.jinx +4 -4
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/compile.jinx +2 -2
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/compress.jinx +8 -8
- npcsh-1.1.17.data/data/npcsh/npc_team/confirm.jinx +10 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/convene.jinx +7 -7
- npcsh-1.1.17.data/data/npcsh/npc_team/db_search.jinx +44 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/delegate.jinx +8 -9
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/edit_file.jinx +3 -0
- npcsh-1.1.17.data/data/npcsh/npc_team/file_search.jinx +94 -0
- npcsh-1.1.17.data/data/npcsh/npc_team/focus_pane.jinx +9 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/help.jinx +1 -1
- npcsh-1.1.16.data/data/npcsh/npc_team/npc-studio.jinx → npcsh-1.1.17.data/data/npcsh/npc_team/incognide.jinx +2 -2
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/init.jinx +5 -5
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/jinxs.jinx +1 -1
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/key_press.jinx +1 -1
- npcsh-1.1.17.data/data/npcsh/npc_team/kg_search.jinx +96 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/launch_app.jinx +1 -1
- npcsh-1.1.17.data/data/npcsh/npc_team/list_panes.jinx +8 -0
- npcsh-1.1.17.data/data/npcsh/npc_team/mem_search.jinx +80 -0
- npcsh-1.1.17.data/data/npcsh/npc_team/navigate.jinx +10 -0
- npcsh-1.1.17.data/data/npcsh/npc_team/notify.jinx +10 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/nql.jinx +7 -7
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/open_browser.jinx +2 -2
- npcsh-1.1.17.data/data/npcsh/npc_team/open_pane.jinx +13 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/ots.jinx +7 -7
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/paper_search.jinx +3 -3
- npcsh-1.1.17.data/data/npcsh/npc_team/read_pane.jinx +9 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/roll.jinx +20 -23
- npcsh-1.1.17.data/data/npcsh/npc_team/run_terminal.jinx +10 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/sample.jinx +6 -7
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/screenshot.jinx +1 -1
- npcsh-1.1.17.data/data/npcsh/npc_team/search.jinx +54 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/semantic_scholar.jinx +2 -2
- npcsh-1.1.17.data/data/npcsh/npc_team/send_message.jinx +10 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/serve.jinx +2 -2
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/set.jinx +2 -2
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/sh.jinx +1 -1
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/sibiji.npc +1 -1
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/sleep.jinx +7 -7
- npcsh-1.1.17.data/data/npcsh/npc_team/split_pane.jinx +12 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/spool.jinx +4 -4
- npcsh-1.1.17.data/data/npcsh/npc_team/sql.jinx +16 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/switch.jinx +3 -3
- npcsh-1.1.17.data/data/npcsh/npc_team/switch_npc.jinx +10 -0
- npcsh-1.1.17.data/data/npcsh/npc_team/switch_tab.jinx +10 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/switches.jinx +1 -1
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/sync.jinx +6 -6
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/teamviz.jinx +2 -2
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/trigger.jinx +2 -2
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/type_text.jinx +1 -1
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/vixynt.jinx +8 -8
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/wait.jinx +1 -1
- npcsh-1.1.17.data/data/npcsh/npc_team/wander.jinx +242 -0
- npcsh-1.1.17.data/data/npcsh/npc_team/web_search.jinx +51 -0
- npcsh-1.1.17.data/data/npcsh/npc_team/write_file.jinx +11 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/yap.jinx +5 -5
- npcsh-1.1.17.data/data/npcsh/npc_team/zen_mode.jinx +9 -0
- {npcsh-1.1.16.dist-info → npcsh-1.1.17.dist-info}/METADATA +10 -7
- npcsh-1.1.17.dist-info/RECORD +219 -0
- {npcsh-1.1.16.dist-info → npcsh-1.1.17.dist-info}/entry_points.txt +2 -0
- npcsh-1.1.16.data/data/npcsh/npc_team/search.jinx +0 -131
- npcsh-1.1.16.data/data/npcsh/npc_team/sql.jinx +0 -16
- npcsh-1.1.16.data/data/npcsh/npc_team/wander.jinx +0 -152
- npcsh-1.1.16.dist-info/RECORD +0 -170
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/alicanto.npc +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/alicanto.png +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/close_browser.jinx +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/corca.npc +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/corca.png +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/corca_example.png +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/frederic.npc +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/frederic4.png +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/guac.npc +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/guac.png +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/kadiefa.npc +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/kadiefa.png +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/load_file.jinx +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/npcsh.ctx +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/npcsh_sibiji.png +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/paste.jinx +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/plonk.npc +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/plonk.png +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/plonkjr.npc +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/plonkjr.png +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/python.jinx +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/shh.jinx +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/sibiji.png +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/spool.png +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/usage.jinx +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/verbose.jinx +0 -0
- {npcsh-1.1.16.data → npcsh-1.1.17.data}/data/npcsh/npc_team/yap.png +0 -0
- {npcsh-1.1.16.dist-info → npcsh-1.1.17.dist-info}/WHEEL +0 -0
- {npcsh-1.1.16.dist-info → npcsh-1.1.17.dist-info}/licenses/LICENSE +0 -0
- {npcsh-1.1.16.dist-info → npcsh-1.1.17.dist-info}/top_level.txt +0 -0
npcsh-1.1.16.dist-info/RECORD
DELETED
|
@@ -1,170 +0,0 @@
|
|
|
1
|
-
npcsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
npcsh/_state.py,sha256=FB4oDy8x4Z03zYjJtz967JWLapd0rGipAOGZWCwIp88,150595
|
|
3
|
-
npcsh/alicanto.py,sha256=SXxpT525cOje1J60OMwpaEdWfyPVTEecl_dTVpOvUYQ,2415
|
|
4
|
-
npcsh/build.py,sha256=UuId0_rQml40A4U1KuvMekRyfB30s8HiLsXFJjqrBmM,7692
|
|
5
|
-
npcsh/completion.py,sha256=iX7JDBGC_Tiutr3Iux5zB6eHKu2bLsJfv9Klln0iUq8,5666
|
|
6
|
-
npcsh/config.py,sha256=1m5WNft9PbAlDCTMmnA_tI27UracAvME7MCC9udBvMg,5541
|
|
7
|
-
npcsh/corca.py,sha256=zZRcW_EDoVsz6Xhyos1dlOgk7oNF2-bJvHraLGLj8pc,1568
|
|
8
|
-
npcsh/execution.py,sha256=sgM6HwAfGnattdItKtNpzvQJhhDh5ro2mPfp2swFbys,5270
|
|
9
|
-
npcsh/guac.py,sha256=nU33ONVP4He0ak9kKP1sJLsoMBm0Zl8q0Zp7h17Ev1E,1342
|
|
10
|
-
npcsh/mcp_helpers.py,sha256=9TsCfcquGu_vX4WaKlY3J3P13-uxruQKrXng-jJ5YyY,11176
|
|
11
|
-
npcsh/mcp_server.py,sha256=O-cuk1XAqWqIpkEy2ESxQgMjsBfloMzRqecRz4wCk1I,8763
|
|
12
|
-
npcsh/npc.py,sha256=vyfoiUbZ_tziiE4Sx5fpLXZpirtXwzWgyiUWHqH-xsM,11623
|
|
13
|
-
npcsh/npcsh.py,sha256=wtf2mTEle04QF3856CsOg8PJO4b7rB12MPNUm1ZkFTk,16638
|
|
14
|
-
npcsh/parsing.py,sha256=eGATFUkDvHu5pVbh0RswhWEmGjcIsLaDwgxTtPbC9sk,2943
|
|
15
|
-
npcsh/plonk.py,sha256=34ORKsIFkIK9BK5nNM4KQRprA-RVXe1vLk_vHNK4wmI,1725
|
|
16
|
-
npcsh/pti.py,sha256=zTqE6bH4H_QOqJ4zQbC4-vT_dm7TE9iUIqTbIGb_bxY,1783
|
|
17
|
-
npcsh/routes.py,sha256=27rZUwiMK12WuFEDOxLL_F_F8GjmHlFBxKQRuvElrHI,4967
|
|
18
|
-
npcsh/spool.py,sha256=G0Sc_veJVKqoEdeOCTkBfAwFSHIMK5oAwYel1rr463A,1508
|
|
19
|
-
npcsh/ui.py,sha256=wnjFCDFkMslCgE2BwS3Ug1OBlI-Po87iQflJAinA7Fk,7295
|
|
20
|
-
npcsh/wander.py,sha256=CRQ8eCaIckJL21wLCXTjj5f0bnVmUEK_vHipFGKghGs,2288
|
|
21
|
-
npcsh/yap.py,sha256=jvGHHaFfPgQheLwWC_ORn63eGDPOq9vZCh-OBaSeu3A,1593
|
|
22
|
-
npcsh/npc_team/alicanto.npc,sha256=MjCeCKhC4OqKO0Rxa5U_SLEui7Lh8M2hXabcVfqEDhc,1455
|
|
23
|
-
npcsh/npc_team/alicanto.png,sha256=A7xeMbcoKGjlkELxJEVifCEZLVWbOKZarTN5ZFJG-FM,3519858
|
|
24
|
-
npcsh/npc_team/corca.npc,sha256=Iu9bRD_OFVYQVyn0PLB_Kp91qzcHiHyo7VwmkXz2S-0,1667
|
|
25
|
-
npcsh/npc_team/corca.png,sha256=0lF70hKu6tY-37YmIPVF2cuaPzvnQ4-UtQOzuAbKEf4,1666776
|
|
26
|
-
npcsh/npc_team/corca_example.png,sha256=p0lVTuwaps4-F-3k4wgp9d897YPyn6FGZugtXMUQjj8,28777
|
|
27
|
-
npcsh/npc_team/frederic.npc,sha256=1-TcFRWm5RsSnLoeZG_SN4JUU0Ynu6CzV-h6Wfasjto,1945
|
|
28
|
-
npcsh/npc_team/frederic4.png,sha256=ll8uoV0npnPp5HVJWv7h0xDSeuq4pqsk_gYGBHLS0VY,1590744
|
|
29
|
-
npcsh/npc_team/guac.npc,sha256=bOMEMXxvL4B-xdGqtq7hWf_gZpdMlo4OqER7c9iBsiM,797
|
|
30
|
-
npcsh/npc_team/guac.png,sha256=MCE7eJuEJwLJEzc9FS7lL62Mm-38jQRHkxXogPfOTuw,211470
|
|
31
|
-
npcsh/npc_team/kadiefa.npc,sha256=tg9YZ3dTlXS8CIEb544G5UYvGndPhgdlQoLWRV5j-JY,1758
|
|
32
|
-
npcsh/npc_team/kadiefa.png,sha256=3CAwL8crKIwJko6o75Z6OYYEEM9Rk--yGzCJg7zoszg,3062528
|
|
33
|
-
npcsh/npc_team/npcsh.ctx,sha256=-jKYaPm2YbZHAGgWAXhyPIwhiNe1H1ZRFg1Zc7tHSxk,1049
|
|
34
|
-
npcsh/npc_team/npcsh_sibiji.png,sha256=9fUqgYMsSHmaH-kBTBQ7N5UCS5-eLZF94Log0O3mtFg,4544
|
|
35
|
-
npcsh/npc_team/plonk.npc,sha256=z2fd5U0qaymiqHvkunQxCGQ1N2Mx6DMeErcltrJWrqw,1341
|
|
36
|
-
npcsh/npc_team/plonk.png,sha256=IU5ey-Dl4HEKlwnf75RSWNSHpF8rVqGmdbsa0deL4rQ,2727773
|
|
37
|
-
npcsh/npc_team/plonkjr.npc,sha256=umvWEigYLJBzzqSpF70lbf75612q8LxxGeYHT1Oq21Q,1568
|
|
38
|
-
npcsh/npc_team/plonkjr.png,sha256=MqLEGwsyECUeODZIti0HQQrMMVxA6XERpW01R06NbpY,2606710
|
|
39
|
-
npcsh/npc_team/sibiji.npc,sha256=I2fJsYPi7SUPLErczT6vwWl1p00FpuRYyx6r5Ljjyt4,1542
|
|
40
|
-
npcsh/npc_team/sibiji.png,sha256=1dlZb7J3E62FcVo9CVOzLb8nu1bIUV7cr97nsFocHCM,35615
|
|
41
|
-
npcsh/npc_team/spool.png,sha256=LWTLkwDxXBfLuSUCX32_lo5yAmLYGsA67Xpsz-7MmWU,2876725
|
|
42
|
-
npcsh/npc_team/yap.png,sha256=_l7UbWnXJdsy4Mx-x5l9DT0R6ize3HTnkwQQnOFlI18,1548649
|
|
43
|
-
npcsh/npc_team/jinxs/bin/nql.jinx,sha256=xTAFs44JFvu4XCqoqyypaujNU1BsDf2VL_2MO9arEc0,5576
|
|
44
|
-
npcsh/npc_team/jinxs/bin/roll.jinx,sha256=RhYhDDdyKcWjVhVSU7dX_DMn5s4rz-nY6pXmtr6tytM,2908
|
|
45
|
-
npcsh/npc_team/jinxs/bin/sample.jinx,sha256=7cWwfAZFgWxaTkIL1gpFFryQ3mjvVjoWYAov-zOFn_E,2237
|
|
46
|
-
npcsh/npc_team/jinxs/bin/spool.jinx,sha256=MLmqcnsytTQjektI7feD9bwUu3m-plPme1tRM6_zO6M,6446
|
|
47
|
-
npcsh/npc_team/jinxs/bin/sync.jinx,sha256=rAhh2S5IeK9kzmpYJ-qdSVgagFv9wlZjMZ6pnn_ZLj4,8569
|
|
48
|
-
npcsh/npc_team/jinxs/bin/vixynt.jinx,sha256=p6r_yuUr5DYrDOEueuNnlqaf74ydllTuZ686slRHKmA,4300
|
|
49
|
-
npcsh/npc_team/jinxs/bin/wander.jinx,sha256=cFEacTTjMY_FZfWlR7ydSStcpPEN3T9119dGdny9tZA,5620
|
|
50
|
-
npcsh/npc_team/jinxs/bin/yap.jinx,sha256=EU_10qxp-GIaCUfJo0sldl4N4989yd5tysfr4J_8biw,9596
|
|
51
|
-
npcsh/npc_team/jinxs/lib/browser/browser_action.jinx,sha256=EXM-SYtla0UPjGlnUuccOc-Xp4i07Qo7Mu-mWtLZvIk,9261
|
|
52
|
-
npcsh/npc_team/jinxs/lib/browser/browser_screenshot.jinx,sha256=syV-OhZi--tVFQnj0KDZbwxk9IB78EZar1sh-c1ruP0,1168
|
|
53
|
-
npcsh/npc_team/jinxs/lib/browser/close_browser.jinx,sha256=D0-sIQCTt3TEnUpr6SIWuhQOkJ6eyzhJnvYtYqbg1UM,322
|
|
54
|
-
npcsh/npc_team/jinxs/lib/browser/open_browser.jinx,sha256=AfZ7GSkBOKEmqYHOuJ1KsUh7OlTivBmCPbiIZ_VOwy8,1660
|
|
55
|
-
npcsh/npc_team/jinxs/lib/computer_use/click.jinx,sha256=86rCXMATlgWPC0MieNyP9SUjC8eb-pE8R-4YXm06mK8,665
|
|
56
|
-
npcsh/npc_team/jinxs/lib/computer_use/key_press.jinx,sha256=zXdJuOGm3Vkyf2cZH1G28J-ZxfqhIpYBDqqrYRPLPL4,834
|
|
57
|
-
npcsh/npc_team/jinxs/lib/computer_use/launch_app.jinx,sha256=mvLGmHkKZTQAXc4uhSlxJfHzdt3CgDcETSf65kTgO1U,1245
|
|
58
|
-
npcsh/npc_team/jinxs/lib/computer_use/screenshot.jinx,sha256=a4tEC7l72srWbrUU_vyZzWrZl2SNaU0wnQFMTAMQLuA,695
|
|
59
|
-
npcsh/npc_team/jinxs/lib/computer_use/trigger.jinx,sha256=YVFPEH6mT9HiAyfPZOCcBpKB033g6K4QCJO0sfgKSQA,2458
|
|
60
|
-
npcsh/npc_team/jinxs/lib/computer_use/type_text.jinx,sha256=0093dk1X1DSaE8LANzn_JA1i07MLqI9NHa3a5pJPwyg,738
|
|
61
|
-
npcsh/npc_team/jinxs/lib/computer_use/wait.jinx,sha256=Kg4AtesSduDn0bTemAxTz1XTdlY_Et0bc0OmS9wEuJ0,527
|
|
62
|
-
npcsh/npc_team/jinxs/lib/core/chat.jinx,sha256=zSrhjm58SkcpIbHtfpWbBKWF_ha6f7HdZLkiY1Ad9Qg,1405
|
|
63
|
-
npcsh/npc_team/jinxs/lib/core/cmd.jinx,sha256=9pRiNmSeraimszsWg3HVIqvvhe8F40JJHaSkOFhkqm8,1406
|
|
64
|
-
npcsh/npc_team/jinxs/lib/core/compress.jinx,sha256=B2dMsT-jrMWzjQfMhRIuO7afgqj7MJngshz5DBMmu7s,6834
|
|
65
|
-
npcsh/npc_team/jinxs/lib/core/edit_file.jinx,sha256=VJ3NogMh_zcX-VH_R5MwqS9ypSFhWqpD8uaQZsnY-A8,3545
|
|
66
|
-
npcsh/npc_team/jinxs/lib/core/load_file.jinx,sha256=Dq2982ZJkbSrM75O8YgLeGRnHdWl0AfEIYkj9RkNMLg,1271
|
|
67
|
-
npcsh/npc_team/jinxs/lib/core/ots.jinx,sha256=DKoSVgH_ZcmOaZ2-R-Yn80KyCiYgqG25JG6e4wQwP64,2301
|
|
68
|
-
npcsh/npc_team/jinxs/lib/core/paste.jinx,sha256=bycgMzeYFHl3-TN4YYDyasbNe22hEgFGMOmYoMWFgWI,4957
|
|
69
|
-
npcsh/npc_team/jinxs/lib/core/python.jinx,sha256=lFJubdPVlGxSuUKCxsxjYG4_dnX2ATn8U9ChYKRmL5Q,389
|
|
70
|
-
npcsh/npc_team/jinxs/lib/core/search.jinx,sha256=DtTiQj9ezgd4_dW3s2H9ZvgM7QVsWgMM0GuYqq7gTmI,5510
|
|
71
|
-
npcsh/npc_team/jinxs/lib/core/sh.jinx,sha256=LeBkoJOmWY0_U-vmgVnX5yxvoMO2kSw1cr5PT4Jmlp8,846
|
|
72
|
-
npcsh/npc_team/jinxs/lib/core/sleep.jinx,sha256=c-7Dn4aLuX7WyBVcvuk3sqcbIutqKIz1N9sBfPNzhck,5301
|
|
73
|
-
npcsh/npc_team/jinxs/lib/core/sql.jinx,sha256=wHxvoCkEy1bZE2DPT2m_h0PXiTLtZlmax2flg-iXPdY,581
|
|
74
|
-
npcsh/npc_team/jinxs/lib/orchestration/convene.jinx,sha256=Zg9CKDtkXe0R_xHCA2nzPMjH7_P98fjdNifuoCjPXh0,8777
|
|
75
|
-
npcsh/npc_team/jinxs/lib/orchestration/delegate.jinx,sha256=FGi8K1vypHj25VoKAsuYgI_o2HMr8mOXLUD3IA1R0-w,8051
|
|
76
|
-
npcsh/npc_team/jinxs/lib/research/arxiv.jinx,sha256=nhrvgSWHEQiRfX2-VYLfG1ke-oW8pvjmPmREXzPJz7A,2538
|
|
77
|
-
npcsh/npc_team/jinxs/lib/research/paper_search.jinx,sha256=UdDKhGSeHZoFkpdgrp369w-G4MQXHJwrEYabdYxEgLA,4204
|
|
78
|
-
npcsh/npc_team/jinxs/lib/research/semantic_scholar.jinx,sha256=SCLzeTxVNv0rcnELbT3cKSuz7SO4Rft_H6K9w9QO10k,2530
|
|
79
|
-
npcsh/npc_team/jinxs/lib/utils/build.jinx,sha256=O45ZgI0dRn1INr5pO5H6U1rac9mT3T8aXzPYGMV-vvw,2807
|
|
80
|
-
npcsh/npc_team/jinxs/lib/utils/compile.jinx,sha256=Rjdm5jf3ech1E3cnpLz-o2tbJuVvEoQGAp0FQRAU7qo,2526
|
|
81
|
-
npcsh/npc_team/jinxs/lib/utils/help.jinx,sha256=OquhUEgcYZp-gu5Wgl3pOZnswxGQ96RoNG08tHjC9-4,2091
|
|
82
|
-
npcsh/npc_team/jinxs/lib/utils/init.jinx,sha256=QBb1uOTvMlD-x3S7zPASH5TBZRwNhMQvK6t3DdC2mVw,1596
|
|
83
|
-
npcsh/npc_team/jinxs/lib/utils/jinxs.jinx,sha256=6JKxCJX3EQj-va22ZEqR4psqRotGOqSJ-eF0Y0nH-NA,7291
|
|
84
|
-
npcsh/npc_team/jinxs/lib/utils/serve.jinx,sha256=D-a-UafymNfAWeLW1sLM_Ef-971SF9TPcUvYu70AIlk,837
|
|
85
|
-
npcsh/npc_team/jinxs/lib/utils/set.jinx,sha256=hQY_0muEtnWtfXsdK9cPwSvIevCimiJJn1-yhGC_VxM,1381
|
|
86
|
-
npcsh/npc_team/jinxs/lib/utils/shh.jinx,sha256=yD-_va97JHT1MAhUvoL8w86Li9cbwi8XbswVcTRxd4U,464
|
|
87
|
-
npcsh/npc_team/jinxs/lib/utils/switch.jinx,sha256=9RWt5jipaZr8iJXJKVHQvTLymuYwKfSjCnuUk48M-Ss,2114
|
|
88
|
-
npcsh/npc_team/jinxs/lib/utils/switches.jinx,sha256=wXb614UdXuuO3WzIhp1_Two_DksTDUwsYHFjeZNa9wc,2214
|
|
89
|
-
npcsh/npc_team/jinxs/lib/utils/teamviz.jinx,sha256=sg2Szrkmeg9S0AAD7EA0uWneHOcCBvSySfUnZn4Eh6k,7650
|
|
90
|
-
npcsh/npc_team/jinxs/lib/utils/usage.jinx,sha256=40zhs19l7-16KAXHzOa8hjv7hA32ORe0F7das0TTLXY,1052
|
|
91
|
-
npcsh/npc_team/jinxs/lib/utils/verbose.jinx,sha256=mFGLy2Azx1JXGhDOwVwd5EwJB9fxPQpk9BrP8kJ3RzE,473
|
|
92
|
-
npcsh/npc_team/jinxs/npc_studio/npc-studio.jinx,sha256=0aY-z399BRIXIL3TLMTcYDiHjDm-krZy0CnYfiskQUo,2234
|
|
93
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/alicanto.npc,sha256=MjCeCKhC4OqKO0Rxa5U_SLEui7Lh8M2hXabcVfqEDhc,1455
|
|
94
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/alicanto.png,sha256=A7xeMbcoKGjlkELxJEVifCEZLVWbOKZarTN5ZFJG-FM,3519858
|
|
95
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/arxiv.jinx,sha256=nhrvgSWHEQiRfX2-VYLfG1ke-oW8pvjmPmREXzPJz7A,2538
|
|
96
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/browser_action.jinx,sha256=EXM-SYtla0UPjGlnUuccOc-Xp4i07Qo7Mu-mWtLZvIk,9261
|
|
97
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/browser_screenshot.jinx,sha256=syV-OhZi--tVFQnj0KDZbwxk9IB78EZar1sh-c1ruP0,1168
|
|
98
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/build.jinx,sha256=O45ZgI0dRn1INr5pO5H6U1rac9mT3T8aXzPYGMV-vvw,2807
|
|
99
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/chat.jinx,sha256=zSrhjm58SkcpIbHtfpWbBKWF_ha6f7HdZLkiY1Ad9Qg,1405
|
|
100
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/click.jinx,sha256=86rCXMATlgWPC0MieNyP9SUjC8eb-pE8R-4YXm06mK8,665
|
|
101
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/close_browser.jinx,sha256=D0-sIQCTt3TEnUpr6SIWuhQOkJ6eyzhJnvYtYqbg1UM,322
|
|
102
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/cmd.jinx,sha256=9pRiNmSeraimszsWg3HVIqvvhe8F40JJHaSkOFhkqm8,1406
|
|
103
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/compile.jinx,sha256=Rjdm5jf3ech1E3cnpLz-o2tbJuVvEoQGAp0FQRAU7qo,2526
|
|
104
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/compress.jinx,sha256=B2dMsT-jrMWzjQfMhRIuO7afgqj7MJngshz5DBMmu7s,6834
|
|
105
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/convene.jinx,sha256=Zg9CKDtkXe0R_xHCA2nzPMjH7_P98fjdNifuoCjPXh0,8777
|
|
106
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/corca.npc,sha256=Iu9bRD_OFVYQVyn0PLB_Kp91qzcHiHyo7VwmkXz2S-0,1667
|
|
107
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/corca.png,sha256=0lF70hKu6tY-37YmIPVF2cuaPzvnQ4-UtQOzuAbKEf4,1666776
|
|
108
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/corca_example.png,sha256=p0lVTuwaps4-F-3k4wgp9d897YPyn6FGZugtXMUQjj8,28777
|
|
109
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/delegate.jinx,sha256=FGi8K1vypHj25VoKAsuYgI_o2HMr8mOXLUD3IA1R0-w,8051
|
|
110
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/edit_file.jinx,sha256=VJ3NogMh_zcX-VH_R5MwqS9ypSFhWqpD8uaQZsnY-A8,3545
|
|
111
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/frederic.npc,sha256=1-TcFRWm5RsSnLoeZG_SN4JUU0Ynu6CzV-h6Wfasjto,1945
|
|
112
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/frederic4.png,sha256=ll8uoV0npnPp5HVJWv7h0xDSeuq4pqsk_gYGBHLS0VY,1590744
|
|
113
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/guac.npc,sha256=bOMEMXxvL4B-xdGqtq7hWf_gZpdMlo4OqER7c9iBsiM,797
|
|
114
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/guac.png,sha256=MCE7eJuEJwLJEzc9FS7lL62Mm-38jQRHkxXogPfOTuw,211470
|
|
115
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/help.jinx,sha256=OquhUEgcYZp-gu5Wgl3pOZnswxGQ96RoNG08tHjC9-4,2091
|
|
116
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/init.jinx,sha256=QBb1uOTvMlD-x3S7zPASH5TBZRwNhMQvK6t3DdC2mVw,1596
|
|
117
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/jinxs.jinx,sha256=6JKxCJX3EQj-va22ZEqR4psqRotGOqSJ-eF0Y0nH-NA,7291
|
|
118
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/kadiefa.npc,sha256=tg9YZ3dTlXS8CIEb544G5UYvGndPhgdlQoLWRV5j-JY,1758
|
|
119
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/kadiefa.png,sha256=3CAwL8crKIwJko6o75Z6OYYEEM9Rk--yGzCJg7zoszg,3062528
|
|
120
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/key_press.jinx,sha256=zXdJuOGm3Vkyf2cZH1G28J-ZxfqhIpYBDqqrYRPLPL4,834
|
|
121
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/launch_app.jinx,sha256=mvLGmHkKZTQAXc4uhSlxJfHzdt3CgDcETSf65kTgO1U,1245
|
|
122
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/load_file.jinx,sha256=Dq2982ZJkbSrM75O8YgLeGRnHdWl0AfEIYkj9RkNMLg,1271
|
|
123
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/npc-studio.jinx,sha256=0aY-z399BRIXIL3TLMTcYDiHjDm-krZy0CnYfiskQUo,2234
|
|
124
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/npcsh.ctx,sha256=-jKYaPm2YbZHAGgWAXhyPIwhiNe1H1ZRFg1Zc7tHSxk,1049
|
|
125
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/npcsh_sibiji.png,sha256=9fUqgYMsSHmaH-kBTBQ7N5UCS5-eLZF94Log0O3mtFg,4544
|
|
126
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/nql.jinx,sha256=xTAFs44JFvu4XCqoqyypaujNU1BsDf2VL_2MO9arEc0,5576
|
|
127
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/open_browser.jinx,sha256=AfZ7GSkBOKEmqYHOuJ1KsUh7OlTivBmCPbiIZ_VOwy8,1660
|
|
128
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/ots.jinx,sha256=DKoSVgH_ZcmOaZ2-R-Yn80KyCiYgqG25JG6e4wQwP64,2301
|
|
129
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/paper_search.jinx,sha256=UdDKhGSeHZoFkpdgrp369w-G4MQXHJwrEYabdYxEgLA,4204
|
|
130
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/paste.jinx,sha256=bycgMzeYFHl3-TN4YYDyasbNe22hEgFGMOmYoMWFgWI,4957
|
|
131
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/plonk.npc,sha256=z2fd5U0qaymiqHvkunQxCGQ1N2Mx6DMeErcltrJWrqw,1341
|
|
132
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/plonk.png,sha256=IU5ey-Dl4HEKlwnf75RSWNSHpF8rVqGmdbsa0deL4rQ,2727773
|
|
133
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/plonkjr.npc,sha256=umvWEigYLJBzzqSpF70lbf75612q8LxxGeYHT1Oq21Q,1568
|
|
134
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/plonkjr.png,sha256=MqLEGwsyECUeODZIti0HQQrMMVxA6XERpW01R06NbpY,2606710
|
|
135
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/python.jinx,sha256=lFJubdPVlGxSuUKCxsxjYG4_dnX2ATn8U9ChYKRmL5Q,389
|
|
136
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/roll.jinx,sha256=RhYhDDdyKcWjVhVSU7dX_DMn5s4rz-nY6pXmtr6tytM,2908
|
|
137
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/sample.jinx,sha256=7cWwfAZFgWxaTkIL1gpFFryQ3mjvVjoWYAov-zOFn_E,2237
|
|
138
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/screenshot.jinx,sha256=a4tEC7l72srWbrUU_vyZzWrZl2SNaU0wnQFMTAMQLuA,695
|
|
139
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/search.jinx,sha256=DtTiQj9ezgd4_dW3s2H9ZvgM7QVsWgMM0GuYqq7gTmI,5510
|
|
140
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/semantic_scholar.jinx,sha256=SCLzeTxVNv0rcnELbT3cKSuz7SO4Rft_H6K9w9QO10k,2530
|
|
141
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/serve.jinx,sha256=D-a-UafymNfAWeLW1sLM_Ef-971SF9TPcUvYu70AIlk,837
|
|
142
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/set.jinx,sha256=hQY_0muEtnWtfXsdK9cPwSvIevCimiJJn1-yhGC_VxM,1381
|
|
143
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/sh.jinx,sha256=LeBkoJOmWY0_U-vmgVnX5yxvoMO2kSw1cr5PT4Jmlp8,846
|
|
144
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/shh.jinx,sha256=yD-_va97JHT1MAhUvoL8w86Li9cbwi8XbswVcTRxd4U,464
|
|
145
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/sibiji.npc,sha256=I2fJsYPi7SUPLErczT6vwWl1p00FpuRYyx6r5Ljjyt4,1542
|
|
146
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/sibiji.png,sha256=1dlZb7J3E62FcVo9CVOzLb8nu1bIUV7cr97nsFocHCM,35615
|
|
147
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/sleep.jinx,sha256=c-7Dn4aLuX7WyBVcvuk3sqcbIutqKIz1N9sBfPNzhck,5301
|
|
148
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/spool.jinx,sha256=MLmqcnsytTQjektI7feD9bwUu3m-plPme1tRM6_zO6M,6446
|
|
149
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/spool.png,sha256=LWTLkwDxXBfLuSUCX32_lo5yAmLYGsA67Xpsz-7MmWU,2876725
|
|
150
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/sql.jinx,sha256=wHxvoCkEy1bZE2DPT2m_h0PXiTLtZlmax2flg-iXPdY,581
|
|
151
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/switch.jinx,sha256=9RWt5jipaZr8iJXJKVHQvTLymuYwKfSjCnuUk48M-Ss,2114
|
|
152
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/switches.jinx,sha256=wXb614UdXuuO3WzIhp1_Two_DksTDUwsYHFjeZNa9wc,2214
|
|
153
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/sync.jinx,sha256=rAhh2S5IeK9kzmpYJ-qdSVgagFv9wlZjMZ6pnn_ZLj4,8569
|
|
154
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/teamviz.jinx,sha256=sg2Szrkmeg9S0AAD7EA0uWneHOcCBvSySfUnZn4Eh6k,7650
|
|
155
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/trigger.jinx,sha256=YVFPEH6mT9HiAyfPZOCcBpKB033g6K4QCJO0sfgKSQA,2458
|
|
156
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/type_text.jinx,sha256=0093dk1X1DSaE8LANzn_JA1i07MLqI9NHa3a5pJPwyg,738
|
|
157
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/usage.jinx,sha256=40zhs19l7-16KAXHzOa8hjv7hA32ORe0F7das0TTLXY,1052
|
|
158
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/verbose.jinx,sha256=mFGLy2Azx1JXGhDOwVwd5EwJB9fxPQpk9BrP8kJ3RzE,473
|
|
159
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/vixynt.jinx,sha256=p6r_yuUr5DYrDOEueuNnlqaf74ydllTuZ686slRHKmA,4300
|
|
160
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/wait.jinx,sha256=Kg4AtesSduDn0bTemAxTz1XTdlY_Et0bc0OmS9wEuJ0,527
|
|
161
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/wander.jinx,sha256=cFEacTTjMY_FZfWlR7ydSStcpPEN3T9119dGdny9tZA,5620
|
|
162
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/yap.jinx,sha256=EU_10qxp-GIaCUfJo0sldl4N4989yd5tysfr4J_8biw,9596
|
|
163
|
-
npcsh-1.1.16.data/data/npcsh/npc_team/yap.png,sha256=_l7UbWnXJdsy4Mx-x5l9DT0R6ize3HTnkwQQnOFlI18,1548649
|
|
164
|
-
npcsh-1.1.16.dist-info/licenses/LICENSE,sha256=IKBvAECHP-aCiJtE4cHGCE5Yl0tozYz02PomGeWS3y4,1070
|
|
165
|
-
project/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
166
|
-
npcsh-1.1.16.dist-info/METADATA,sha256=2sZKfbod7xhQj2VS6vx64CBw47vIBwgaxHdLXINjhDU,37337
|
|
167
|
-
npcsh-1.1.16.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
168
|
-
npcsh-1.1.16.dist-info/entry_points.txt,sha256=9yQH_10yxRK3ntcTn_BRXUkGZ1HfPQ8HbXPMmvYl9TE,495
|
|
169
|
-
npcsh-1.1.16.dist-info/top_level.txt,sha256=sbA6l0H-5EUmtoSA3SJTzrFzT_BmsFtf1FOUq8P8vL0,14
|
|
170
|
-
npcsh-1.1.16.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|