├── .github ├── FUNDING.yml └── workflows │ └── python-publish.yml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── Makefile ├── README.md ├── docs ├── TLDR_Cheat_sheet.md ├── alicanto.md ├── guac.md ├── index.md ├── installation.md ├── make.bat ├── npc_cli.md ├── npcsh.md ├── pti.md ├── requirements.txt ├── spool.md ├── wander.md └── yap.md ├── examples ├── CLI_EXAMPLES.md ├── alicanto_examples.md └── analyze_kg.py ├── mkdocs.yml ├── npcsh ├── __init__.py ├── _state.py ├── alicanto.py ├── build.py ├── completion.py ├── config.py ├── corca.py ├── db_migrations │ └── migrate_message_attachments_831_2025.py ├── execution.py ├── guac.py ├── mcp_helpers.py ├── mcp_server.py ├── npc.py ├── npc_team │ ├── alicanto.npc │ ├── alicanto.png │ ├── corca.npc │ ├── corca.png │ ├── corca_example.png │ ├── foreman.npc │ ├── frederic.npc │ ├── frederic4.png │ ├── guac.png │ ├── jinxs │ │ ├── code │ │ │ ├── python.jinx │ │ │ ├── sh.jinx │ │ │ └── sql.jinx │ │ ├── modes │ │ │ ├── alicanto.jinx │ │ │ ├── corca.jinx │ │ │ ├── guac.jinx │ │ │ ├── plonk.jinx │ │ │ ├── pti.jinx │ │ │ ├── spool.jinx │ │ │ ├── wander.jinx │ │ │ └── yap.jinx │ │ ├── npc_studio │ │ │ └── npc-studio.jinx │ │ └── utils │ │ │ ├── agent.jinx │ │ │ ├── chat.jinx │ │ │ ├── cmd.jinx │ │ │ ├── compress.jinx │ │ │ ├── core │ │ │ ├── build.jinx │ │ │ ├── compile.jinx │ │ │ ├── help.jinx │ │ │ ├── init.jinx │ │ │ ├── jinxs.jinx │ │ │ └── set.jinx │ │ │ ├── edit_file.jinx │ │ │ ├── load_file.jinx │ │ │ ├── ots.jinx │ │ │ ├── roll.jinx │ │ │ ├── sample.jinx │ │ │ ├── search.jinx │ │ │ ├── serve.jinx │ │ │ ├── sleep.jinx │ │ │ ├── trigger.jinx │ │ │ ├── usage.jinx │ │ │ └── vixynt.jinx │ ├── kadiefa.npc │ ├── kadiefa.png │ ├── npcsh.ctx │ ├── npcsh_sibiji.png │ ├── plonk.npc │ ├── plonk.png │ ├── plonkjr.npc │ ├── plonkjr.png │ ├── sibiji.npc │ ├── sibiji.png │ ├── spool.png │ └── yap.png ├── npcsh.png ├── npcsh.py ├── parsing.py ├── plonk.py ├── pti.py ├── routes.py ├── spool.py ├── ui.py ├── wander.py └── yap.py ├── setup.py ├── test_data ├── books.csv ├── catfight.PNG ├── futuristic_cityscape.PNG ├── generated_imag2e.png ├── generated_image.png ├── generated_image1.png ├── hatridingdog.gif ├── hatridingdog.mp4 ├── markov_chain.png ├── peaceful_landscape.PNG ├── peaceful_landscape_stable_diff.png ├── port5337.png ├── r8ss9a.PNG ├── rabbit.PNG ├── russia2.PNG ├── search.gif ├── search_example.png └── yuan2004.pdf └── tests └── __init__.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/README.md -------------------------------------------------------------------------------- /docs/TLDR_Cheat_sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/docs/TLDR_Cheat_sheet.md -------------------------------------------------------------------------------- /docs/alicanto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/docs/alicanto.md -------------------------------------------------------------------------------- /docs/guac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/docs/guac.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/npc_cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/docs/npc_cli.md -------------------------------------------------------------------------------- /docs/npcsh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/docs/npcsh.md -------------------------------------------------------------------------------- /docs/pti.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/docs/pti.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/spool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/docs/spool.md -------------------------------------------------------------------------------- /docs/wander.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/docs/wander.md -------------------------------------------------------------------------------- /docs/yap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/docs/yap.md -------------------------------------------------------------------------------- /examples/CLI_EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/examples/CLI_EXAMPLES.md -------------------------------------------------------------------------------- /examples/alicanto_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/examples/alicanto_examples.md -------------------------------------------------------------------------------- /examples/analyze_kg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/examples/analyze_kg.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /npcsh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /npcsh/_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/_state.py -------------------------------------------------------------------------------- /npcsh/alicanto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/alicanto.py -------------------------------------------------------------------------------- /npcsh/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/build.py -------------------------------------------------------------------------------- /npcsh/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/completion.py -------------------------------------------------------------------------------- /npcsh/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/config.py -------------------------------------------------------------------------------- /npcsh/corca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/corca.py -------------------------------------------------------------------------------- /npcsh/db_migrations/migrate_message_attachments_831_2025.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/db_migrations/migrate_message_attachments_831_2025.py -------------------------------------------------------------------------------- /npcsh/execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/execution.py -------------------------------------------------------------------------------- /npcsh/guac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/guac.py -------------------------------------------------------------------------------- /npcsh/mcp_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/mcp_helpers.py -------------------------------------------------------------------------------- /npcsh/mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/mcp_server.py -------------------------------------------------------------------------------- /npcsh/npc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc.py -------------------------------------------------------------------------------- /npcsh/npc_team/alicanto.npc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/alicanto.npc -------------------------------------------------------------------------------- /npcsh/npc_team/alicanto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/alicanto.png -------------------------------------------------------------------------------- /npcsh/npc_team/corca.npc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/corca.npc -------------------------------------------------------------------------------- /npcsh/npc_team/corca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/corca.png -------------------------------------------------------------------------------- /npcsh/npc_team/corca_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/corca_example.png -------------------------------------------------------------------------------- /npcsh/npc_team/foreman.npc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/foreman.npc -------------------------------------------------------------------------------- /npcsh/npc_team/frederic.npc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/frederic.npc -------------------------------------------------------------------------------- /npcsh/npc_team/frederic4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/frederic4.png -------------------------------------------------------------------------------- /npcsh/npc_team/guac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/guac.png -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/code/python.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/code/python.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/code/sh.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/code/sh.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/code/sql.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/code/sql.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/modes/alicanto.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/modes/alicanto.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/modes/corca.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/modes/corca.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/modes/guac.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/modes/guac.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/modes/plonk.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/modes/plonk.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/modes/pti.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/modes/pti.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/modes/spool.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/modes/spool.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/modes/wander.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/modes/wander.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/modes/yap.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/modes/yap.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/npc_studio/npc-studio.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/npc_studio/npc-studio.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/utils/agent.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/utils/agent.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/utils/chat.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/utils/chat.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/utils/cmd.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/utils/cmd.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/utils/compress.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/utils/compress.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/utils/core/build.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/utils/core/build.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/utils/core/compile.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/utils/core/compile.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/utils/core/help.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/utils/core/help.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/utils/core/init.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/utils/core/init.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/utils/core/jinxs.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/utils/core/jinxs.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/utils/core/set.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/utils/core/set.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/utils/edit_file.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/utils/edit_file.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/utils/load_file.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/utils/load_file.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/utils/ots.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/utils/ots.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/utils/roll.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/utils/roll.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/utils/sample.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/utils/sample.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/utils/search.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/utils/search.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/utils/serve.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/utils/serve.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/utils/sleep.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/utils/sleep.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/utils/trigger.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/utils/trigger.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/utils/usage.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/utils/usage.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/jinxs/utils/vixynt.jinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/jinxs/utils/vixynt.jinx -------------------------------------------------------------------------------- /npcsh/npc_team/kadiefa.npc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/kadiefa.npc -------------------------------------------------------------------------------- /npcsh/npc_team/kadiefa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/kadiefa.png -------------------------------------------------------------------------------- /npcsh/npc_team/npcsh.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/npcsh.ctx -------------------------------------------------------------------------------- /npcsh/npc_team/npcsh_sibiji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/npcsh_sibiji.png -------------------------------------------------------------------------------- /npcsh/npc_team/plonk.npc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/plonk.npc -------------------------------------------------------------------------------- /npcsh/npc_team/plonk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/plonk.png -------------------------------------------------------------------------------- /npcsh/npc_team/plonkjr.npc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/plonkjr.npc -------------------------------------------------------------------------------- /npcsh/npc_team/plonkjr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/plonkjr.png -------------------------------------------------------------------------------- /npcsh/npc_team/sibiji.npc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/sibiji.npc -------------------------------------------------------------------------------- /npcsh/npc_team/sibiji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/sibiji.png -------------------------------------------------------------------------------- /npcsh/npc_team/spool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/spool.png -------------------------------------------------------------------------------- /npcsh/npc_team/yap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npc_team/yap.png -------------------------------------------------------------------------------- /npcsh/npcsh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npcsh.png -------------------------------------------------------------------------------- /npcsh/npcsh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/npcsh.py -------------------------------------------------------------------------------- /npcsh/parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/parsing.py -------------------------------------------------------------------------------- /npcsh/plonk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/plonk.py -------------------------------------------------------------------------------- /npcsh/pti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/pti.py -------------------------------------------------------------------------------- /npcsh/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/routes.py -------------------------------------------------------------------------------- /npcsh/spool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/spool.py -------------------------------------------------------------------------------- /npcsh/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/ui.py -------------------------------------------------------------------------------- /npcsh/wander.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/wander.py -------------------------------------------------------------------------------- /npcsh/yap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/npcsh/yap.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/setup.py -------------------------------------------------------------------------------- /test_data/books.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/test_data/books.csv -------------------------------------------------------------------------------- /test_data/catfight.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/test_data/catfight.PNG -------------------------------------------------------------------------------- /test_data/futuristic_cityscape.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/test_data/futuristic_cityscape.PNG -------------------------------------------------------------------------------- /test_data/generated_imag2e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/test_data/generated_imag2e.png -------------------------------------------------------------------------------- /test_data/generated_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/test_data/generated_image.png -------------------------------------------------------------------------------- /test_data/generated_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/test_data/generated_image1.png -------------------------------------------------------------------------------- /test_data/hatridingdog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/test_data/hatridingdog.gif -------------------------------------------------------------------------------- /test_data/hatridingdog.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/test_data/hatridingdog.mp4 -------------------------------------------------------------------------------- /test_data/markov_chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/test_data/markov_chain.png -------------------------------------------------------------------------------- /test_data/peaceful_landscape.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/test_data/peaceful_landscape.PNG -------------------------------------------------------------------------------- /test_data/peaceful_landscape_stable_diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/test_data/peaceful_landscape_stable_diff.png -------------------------------------------------------------------------------- /test_data/port5337.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/test_data/port5337.png -------------------------------------------------------------------------------- /test_data/r8ss9a.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/test_data/r8ss9a.PNG -------------------------------------------------------------------------------- /test_data/rabbit.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/test_data/rabbit.PNG -------------------------------------------------------------------------------- /test_data/russia2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/test_data/russia2.PNG -------------------------------------------------------------------------------- /test_data/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/test_data/search.gif -------------------------------------------------------------------------------- /test_data/search_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/test_data/search_example.png -------------------------------------------------------------------------------- /test_data/yuan2004.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NPC-Worldwide/npcsh/HEAD/test_data/yuan2004.pdf -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------