npcsh 1.2.5__py3-none-win_amd64.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 (265) hide show
  1. npcsh/__init__.py +0 -0
  2. npcsh/_state.py +4291 -0
  3. npcsh/alicanto.py +65 -0
  4. npcsh/benchmark/__init__.py +28 -0
  5. npcsh/benchmark/cross_framework_runner.py +444 -0
  6. npcsh/benchmark/local_runner.py +873 -0
  7. npcsh/benchmark/npcsh_agent.py +172 -0
  8. npcsh/benchmark/runner.py +607 -0
  9. npcsh/benchmark/rust_runner.py +225 -0
  10. npcsh/benchmark/templates/install-npcsh.sh.j2 +72 -0
  11. npcsh/build.py +283 -0
  12. npcsh/completion.py +202 -0
  13. npcsh/config.py +167 -0
  14. npcsh/corca.py +49 -0
  15. npcsh/diff_viewer.py +452 -0
  16. npcsh/execution.py +184 -0
  17. npcsh/guac.py +45 -0
  18. npcsh/launcher.py +133 -0
  19. npcsh/mcp_helpers.py +356 -0
  20. npcsh/mcp_server.py +13 -0
  21. npcsh/npc.py +423 -0
  22. npcsh/npc_team/alicanto.npc +28 -0
  23. npcsh/npc_team/alicanto.png +0 -0
  24. npcsh/npc_team/corca.npc +27 -0
  25. npcsh/npc_team/corca.png +0 -0
  26. npcsh/npc_team/corca_example.png +0 -0
  27. npcsh/npc_team/frederic.npc +26 -0
  28. npcsh/npc_team/frederic4.png +0 -0
  29. npcsh/npc_team/guac.png +0 -0
  30. npcsh/npc_team/jinxes/bin/explore.jinx +480 -0
  31. npcsh/npc_team/jinxes/bin/nsync.jinx +223 -0
  32. npcsh/npc_team/jinxes/bin/repo_issues.jinx +152 -0
  33. npcsh/npc_team/jinxes/bin/roll.jinx +381 -0
  34. npcsh/npc_team/jinxes/bin/scherzo.jinx +363 -0
  35. npcsh/npc_team/jinxes/bin/vixynt.jinx +393 -0
  36. npcsh/npc_team/jinxes/bin/yap.jinx +1189 -0
  37. npcsh/npc_team/jinxes/etc/config.jinx +303 -0
  38. npcsh/npc_team/jinxes/etc/set.jinx +40 -0
  39. npcsh/npc_team/jinxes/etc/setup.jinx +244 -0
  40. npcsh/npc_team/jinxes/etc/shh.jinx +17 -0
  41. npcsh/npc_team/jinxes/etc/switch.jinx +62 -0
  42. npcsh/npc_team/jinxes/etc/switches.jinx +61 -0
  43. npcsh/npc_team/jinxes/etc/verbose.jinx +17 -0
  44. npcsh/npc_team/jinxes/lib/ask_form.jinx +271 -0
  45. npcsh/npc_team/jinxes/lib/browser/browser_action.jinx +220 -0
  46. npcsh/npc_team/jinxes/lib/browser/browser_screenshot.jinx +40 -0
  47. npcsh/npc_team/jinxes/lib/browser/close_browser.jinx +14 -0
  48. npcsh/npc_team/jinxes/lib/browser/open_browser.jinx +43 -0
  49. npcsh/npc_team/jinxes/lib/click.jinx +23 -0
  50. npcsh/npc_team/jinxes/lib/compress.jinx +675 -0
  51. npcsh/npc_team/jinxes/lib/db_search.jinx +373 -0
  52. npcsh/npc_team/jinxes/lib/delegate.jinx +177 -0
  53. npcsh/npc_team/jinxes/lib/edit.jinx +177 -0
  54. npcsh/npc_team/jinxes/lib/edit_file.jinx +119 -0
  55. npcsh/npc_team/jinxes/lib/extract_memories.jinx +169 -0
  56. npcsh/npc_team/jinxes/lib/file_search.jinx +364 -0
  57. npcsh/npc_team/jinxes/lib/git/changelog.jinx +95 -0
  58. npcsh/npc_team/jinxes/lib/git/commit.jinx +135 -0
  59. npcsh/npc_team/jinxes/lib/git/diff_summary.jinx +97 -0
  60. npcsh/npc_team/jinxes/lib/git/pr.jinx +137 -0
  61. npcsh/npc_team/jinxes/lib/git/pr_review.jinx +106 -0
  62. npcsh/npc_team/jinxes/lib/git/release_notes.jinx +2253 -0
  63. npcsh/npc_team/jinxes/lib/key_press.jinx +26 -0
  64. npcsh/npc_team/jinxes/lib/launch_app.jinx +37 -0
  65. npcsh/npc_team/jinxes/lib/load_file.jinx +35 -0
  66. npcsh/npc_team/jinxes/lib/new.jinx +120 -0
  67. npcsh/npc_team/jinxes/lib/ots.jinx +61 -0
  68. npcsh/npc_team/jinxes/lib/paste.jinx +134 -0
  69. npcsh/npc_team/jinxes/lib/plan.jinx +174 -0
  70. npcsh/npc_team/jinxes/lib/python.jinx +7 -0
  71. npcsh/npc_team/jinxes/lib/sample.jinx +55 -0
  72. npcsh/npc_team/jinxes/lib/screenshot.jinx +23 -0
  73. npcsh/npc_team/jinxes/lib/sh.jinx +42 -0
  74. npcsh/npc_team/jinxes/lib/skill.jinx +59 -0
  75. npcsh/npc_team/jinxes/lib/sleep.jinx +132 -0
  76. npcsh/npc_team/jinxes/lib/sql.jinx +20 -0
  77. npcsh/npc_team/jinxes/lib/trigger.jinx +61 -0
  78. npcsh/npc_team/jinxes/lib/type_text.jinx +27 -0
  79. npcsh/npc_team/jinxes/lib/view_image.jinx +93 -0
  80. npcsh/npc_team/jinxes/lib/wait.jinx +21 -0
  81. npcsh/npc_team/jinxes/lib/web_search.jinx +100 -0
  82. npcsh/npc_team/jinxes/nql/models/command_analytics.sql +19 -0
  83. npcsh/npc_team/jinxes/nql/models/error_digest.sql +19 -0
  84. npcsh/npc_team/jinxes/nql/nql.yaml +16 -0
  85. npcsh/npc_team/jinxes/skills/code-review/SKILL.md +45 -0
  86. npcsh/npc_team/jinxes/skills/debugging/SKILL.md +44 -0
  87. npcsh/npc_team/jinxes/skills/git-workflow.jinx +44 -0
  88. npcsh/npc_team/jinxes/sys/benchmark.jinx +85 -0
  89. npcsh/npc_team/jinxes/sys/compile.jinx +50 -0
  90. npcsh/npc_team/jinxes/sys/cron.jinx +68 -0
  91. npcsh/npc_team/jinxes/sys/crond.jinx +1257 -0
  92. npcsh/npc_team/jinxes/sys/help.jinx +123 -0
  93. npcsh/npc_team/jinxes/sys/incognidev.jinx +77 -0
  94. npcsh/npc_team/jinxes/sys/init.jinx +354 -0
  95. npcsh/npc_team/jinxes/sys/lookback.jinx +33 -0
  96. npcsh/npc_team/jinxes/sys/reload.jinx +59 -0
  97. npcsh/npc_team/jinxes/sys/serve.jinx +942 -0
  98. npcsh/npc_team/jinxes/sys/stop.jinx +10 -0
  99. npcsh/npc_team/jinxes/sys/systemd.jinx +203 -0
  100. npcsh/npc_team/jinxes/sys/usage.jinx +33 -0
  101. npcsh/npc_team/jinxes/usr/build.jinx +381 -0
  102. npcsh/npc_team/jinxes/usr/chat.jinx +63 -0
  103. npcsh/npc_team/jinxes/usr/cmd.jinx +44 -0
  104. npcsh/npc_team/jinxes/usr/computer_use.jinx +639 -0
  105. npcsh/npc_team/jinxes/usr/convene.jinx +673 -0
  106. npcsh/npc_team/jinxes/usr/data/arxiv.jinx +790 -0
  107. npcsh/npc_team/jinxes/usr/data/kg.jinx +1010 -0
  108. npcsh/npc_team/jinxes/usr/data/nql.jinx +619 -0
  109. npcsh/npc_team/jinxes/usr/data/papers.jinx +722 -0
  110. npcsh/npc_team/jinxes/usr/deep_research.jinx +1697 -0
  111. npcsh/npc_team/jinxes/usr/git.jinx +1148 -0
  112. npcsh/npc_team/jinxes/usr/guac.jinx +561 -0
  113. npcsh/npc_team/jinxes/usr/mcp_shell.jinx +819 -0
  114. npcsh/npc_team/jinxes/usr/meta/ctx.jinx +25 -0
  115. npcsh/npc_team/jinxes/usr/meta/jinxs.jinx +410 -0
  116. npcsh/npc_team/jinxes/usr/meta/memories.jinx +417 -0
  117. npcsh/npc_team/jinxes/usr/meta/models.jinx +346 -0
  118. npcsh/npc_team/jinxes/usr/meta/reattach.jinx +326 -0
  119. npcsh/npc_team/jinxes/usr/meta/skills.jinx +624 -0
  120. npcsh/npc_team/jinxes/usr/meta/team.jinx +593 -0
  121. npcsh/npc_team/jinxes/usr/meta/teamviz.jinx +205 -0
  122. npcsh/npc_team/jinxes/usr/pti.jinx +361 -0
  123. npcsh/npc_team/jinxes/usr/spool.jinx +354 -0
  124. npcsh/npc_team/jinxes/usr/wander.jinx +731 -0
  125. npcsh/npc_team/kadiefa.npc +23 -0
  126. npcsh/npc_team/kadiefa.png +0 -0
  127. npcsh/npc_team/npcsh.ctx +55 -0
  128. npcsh/npc_team/npcsh_sibiji.png +0 -0
  129. npcsh/npc_team/plonk.npc +33 -0
  130. npcsh/npc_team/plonk.png +0 -0
  131. npcsh/npc_team/plonkjr.png +0 -0
  132. npcsh/npc_team/sibiji.npc +51 -0
  133. npcsh/npc_team/sibiji.png +0 -0
  134. npcsh/npc_team/spool.png +0 -0
  135. npcsh/npc_team/yap.png +0 -0
  136. npcsh/npcsh.py +660 -0
  137. npcsh/parsing.py +80 -0
  138. npcsh/plonk.py +53 -0
  139. npcsh/pti.py +53 -0
  140. npcsh/routes.py +153 -0
  141. npcsh/salmon_simulation.py +0 -0
  142. npcsh/spool.py +47 -0
  143. npcsh/ui.py +582 -0
  144. npcsh/wander.py +61 -0
  145. npcsh/yap.py +67 -0
  146. npcsh-1.2.5.data/data/npcsh/npc_team/SKILL.md +44 -0
  147. npcsh-1.2.5.data/data/npcsh/npc_team/alicanto.npc +28 -0
  148. npcsh-1.2.5.data/data/npcsh/npc_team/alicanto.png +0 -0
  149. npcsh-1.2.5.data/data/npcsh/npc_team/arxiv.jinx +790 -0
  150. npcsh-1.2.5.data/data/npcsh/npc_team/ask_form.jinx +271 -0
  151. npcsh-1.2.5.data/data/npcsh/npc_team/benchmark.jinx +85 -0
  152. npcsh-1.2.5.data/data/npcsh/npc_team/browser_action.jinx +220 -0
  153. npcsh-1.2.5.data/data/npcsh/npc_team/browser_screenshot.jinx +40 -0
  154. npcsh-1.2.5.data/data/npcsh/npc_team/build.jinx +381 -0
  155. npcsh-1.2.5.data/data/npcsh/npc_team/changelog.jinx +95 -0
  156. npcsh-1.2.5.data/data/npcsh/npc_team/chat.jinx +63 -0
  157. npcsh-1.2.5.data/data/npcsh/npc_team/click.jinx +23 -0
  158. npcsh-1.2.5.data/data/npcsh/npc_team/close_browser.jinx +14 -0
  159. npcsh-1.2.5.data/data/npcsh/npc_team/cmd.jinx +44 -0
  160. npcsh-1.2.5.data/data/npcsh/npc_team/command_analytics.sql +19 -0
  161. npcsh-1.2.5.data/data/npcsh/npc_team/commit.jinx +135 -0
  162. npcsh-1.2.5.data/data/npcsh/npc_team/compile.jinx +50 -0
  163. npcsh-1.2.5.data/data/npcsh/npc_team/compress.jinx +675 -0
  164. npcsh-1.2.5.data/data/npcsh/npc_team/computer_use.jinx +639 -0
  165. npcsh-1.2.5.data/data/npcsh/npc_team/config.jinx +303 -0
  166. npcsh-1.2.5.data/data/npcsh/npc_team/convene.jinx +673 -0
  167. npcsh-1.2.5.data/data/npcsh/npc_team/corca.npc +27 -0
  168. npcsh-1.2.5.data/data/npcsh/npc_team/corca.png +0 -0
  169. npcsh-1.2.5.data/data/npcsh/npc_team/corca_example.png +0 -0
  170. npcsh-1.2.5.data/data/npcsh/npc_team/cron.jinx +68 -0
  171. npcsh-1.2.5.data/data/npcsh/npc_team/crond.jinx +1257 -0
  172. npcsh-1.2.5.data/data/npcsh/npc_team/ctx.jinx +25 -0
  173. npcsh-1.2.5.data/data/npcsh/npc_team/db_search.jinx +373 -0
  174. npcsh-1.2.5.data/data/npcsh/npc_team/deep_research.jinx +1697 -0
  175. npcsh-1.2.5.data/data/npcsh/npc_team/delegate.jinx +177 -0
  176. npcsh-1.2.5.data/data/npcsh/npc_team/diff_summary.jinx +97 -0
  177. npcsh-1.2.5.data/data/npcsh/npc_team/edit.jinx +177 -0
  178. npcsh-1.2.5.data/data/npcsh/npc_team/edit_file.jinx +119 -0
  179. npcsh-1.2.5.data/data/npcsh/npc_team/error_digest.sql +19 -0
  180. npcsh-1.2.5.data/data/npcsh/npc_team/explore.jinx +480 -0
  181. npcsh-1.2.5.data/data/npcsh/npc_team/extract_memories.jinx +169 -0
  182. npcsh-1.2.5.data/data/npcsh/npc_team/file_search.jinx +364 -0
  183. npcsh-1.2.5.data/data/npcsh/npc_team/frederic.npc +26 -0
  184. npcsh-1.2.5.data/data/npcsh/npc_team/frederic4.png +0 -0
  185. npcsh-1.2.5.data/data/npcsh/npc_team/git-workflow.jinx +44 -0
  186. npcsh-1.2.5.data/data/npcsh/npc_team/git.jinx +1148 -0
  187. npcsh-1.2.5.data/data/npcsh/npc_team/guac.jinx +561 -0
  188. npcsh-1.2.5.data/data/npcsh/npc_team/guac.png +0 -0
  189. npcsh-1.2.5.data/data/npcsh/npc_team/help.jinx +123 -0
  190. npcsh-1.2.5.data/data/npcsh/npc_team/incognidev.jinx +77 -0
  191. npcsh-1.2.5.data/data/npcsh/npc_team/init.jinx +354 -0
  192. npcsh-1.2.5.data/data/npcsh/npc_team/jinxs.jinx +410 -0
  193. npcsh-1.2.5.data/data/npcsh/npc_team/kadiefa.npc +23 -0
  194. npcsh-1.2.5.data/data/npcsh/npc_team/kadiefa.png +0 -0
  195. npcsh-1.2.5.data/data/npcsh/npc_team/key_press.jinx +26 -0
  196. npcsh-1.2.5.data/data/npcsh/npc_team/kg.jinx +1010 -0
  197. npcsh-1.2.5.data/data/npcsh/npc_team/launch_app.jinx +37 -0
  198. npcsh-1.2.5.data/data/npcsh/npc_team/load_file.jinx +35 -0
  199. npcsh-1.2.5.data/data/npcsh/npc_team/lookback.jinx +33 -0
  200. npcsh-1.2.5.data/data/npcsh/npc_team/mcp_shell.jinx +819 -0
  201. npcsh-1.2.5.data/data/npcsh/npc_team/memories.jinx +417 -0
  202. npcsh-1.2.5.data/data/npcsh/npc_team/models.jinx +346 -0
  203. npcsh-1.2.5.data/data/npcsh/npc_team/new.jinx +120 -0
  204. npcsh-1.2.5.data/data/npcsh/npc_team/npcsh.ctx +55 -0
  205. npcsh-1.2.5.data/data/npcsh/npc_team/npcsh_sibiji.png +0 -0
  206. npcsh-1.2.5.data/data/npcsh/npc_team/nql.jinx +619 -0
  207. npcsh-1.2.5.data/data/npcsh/npc_team/nql.yaml +16 -0
  208. npcsh-1.2.5.data/data/npcsh/npc_team/nsync.jinx +223 -0
  209. npcsh-1.2.5.data/data/npcsh/npc_team/open_browser.jinx +43 -0
  210. npcsh-1.2.5.data/data/npcsh/npc_team/ots.jinx +61 -0
  211. npcsh-1.2.5.data/data/npcsh/npc_team/papers.jinx +722 -0
  212. npcsh-1.2.5.data/data/npcsh/npc_team/paste.jinx +134 -0
  213. npcsh-1.2.5.data/data/npcsh/npc_team/plan.jinx +174 -0
  214. npcsh-1.2.5.data/data/npcsh/npc_team/plonk.npc +33 -0
  215. npcsh-1.2.5.data/data/npcsh/npc_team/plonk.png +0 -0
  216. npcsh-1.2.5.data/data/npcsh/npc_team/plonkjr.png +0 -0
  217. npcsh-1.2.5.data/data/npcsh/npc_team/pr.jinx +137 -0
  218. npcsh-1.2.5.data/data/npcsh/npc_team/pr_review.jinx +106 -0
  219. npcsh-1.2.5.data/data/npcsh/npc_team/pti.jinx +361 -0
  220. npcsh-1.2.5.data/data/npcsh/npc_team/python.jinx +7 -0
  221. npcsh-1.2.5.data/data/npcsh/npc_team/reattach.jinx +326 -0
  222. npcsh-1.2.5.data/data/npcsh/npc_team/release_notes.jinx +2253 -0
  223. npcsh-1.2.5.data/data/npcsh/npc_team/reload.jinx +59 -0
  224. npcsh-1.2.5.data/data/npcsh/npc_team/repo_issues.jinx +152 -0
  225. npcsh-1.2.5.data/data/npcsh/npc_team/roll.jinx +381 -0
  226. npcsh-1.2.5.data/data/npcsh/npc_team/sample.jinx +55 -0
  227. npcsh-1.2.5.data/data/npcsh/npc_team/scherzo.jinx +363 -0
  228. npcsh-1.2.5.data/data/npcsh/npc_team/screenshot.jinx +23 -0
  229. npcsh-1.2.5.data/data/npcsh/npc_team/serve.jinx +942 -0
  230. npcsh-1.2.5.data/data/npcsh/npc_team/set.jinx +40 -0
  231. npcsh-1.2.5.data/data/npcsh/npc_team/setup.jinx +244 -0
  232. npcsh-1.2.5.data/data/npcsh/npc_team/sh.jinx +42 -0
  233. npcsh-1.2.5.data/data/npcsh/npc_team/shh.jinx +17 -0
  234. npcsh-1.2.5.data/data/npcsh/npc_team/sibiji.npc +51 -0
  235. npcsh-1.2.5.data/data/npcsh/npc_team/sibiji.png +0 -0
  236. npcsh-1.2.5.data/data/npcsh/npc_team/skill.jinx +59 -0
  237. npcsh-1.2.5.data/data/npcsh/npc_team/skills.jinx +624 -0
  238. npcsh-1.2.5.data/data/npcsh/npc_team/sleep.jinx +132 -0
  239. npcsh-1.2.5.data/data/npcsh/npc_team/spool.jinx +354 -0
  240. npcsh-1.2.5.data/data/npcsh/npc_team/spool.png +0 -0
  241. npcsh-1.2.5.data/data/npcsh/npc_team/sql.jinx +20 -0
  242. npcsh-1.2.5.data/data/npcsh/npc_team/stop.jinx +10 -0
  243. npcsh-1.2.5.data/data/npcsh/npc_team/switch.jinx +62 -0
  244. npcsh-1.2.5.data/data/npcsh/npc_team/switches.jinx +61 -0
  245. npcsh-1.2.5.data/data/npcsh/npc_team/systemd.jinx +203 -0
  246. npcsh-1.2.5.data/data/npcsh/npc_team/team.jinx +593 -0
  247. npcsh-1.2.5.data/data/npcsh/npc_team/teamviz.jinx +205 -0
  248. npcsh-1.2.5.data/data/npcsh/npc_team/trigger.jinx +61 -0
  249. npcsh-1.2.5.data/data/npcsh/npc_team/type_text.jinx +27 -0
  250. npcsh-1.2.5.data/data/npcsh/npc_team/usage.jinx +33 -0
  251. npcsh-1.2.5.data/data/npcsh/npc_team/verbose.jinx +17 -0
  252. npcsh-1.2.5.data/data/npcsh/npc_team/view_image.jinx +93 -0
  253. npcsh-1.2.5.data/data/npcsh/npc_team/vixynt.jinx +393 -0
  254. npcsh-1.2.5.data/data/npcsh/npc_team/wait.jinx +21 -0
  255. npcsh-1.2.5.data/data/npcsh/npc_team/wander.jinx +731 -0
  256. npcsh-1.2.5.data/data/npcsh/npc_team/web_search.jinx +100 -0
  257. npcsh-1.2.5.data/data/npcsh/npc_team/yap.jinx +1189 -0
  258. npcsh-1.2.5.data/data/npcsh/npc_team/yap.png +0 -0
  259. npcsh-1.2.5.dist-info/METADATA +506 -0
  260. npcsh-1.2.5.dist-info/RECORD +265 -0
  261. npcsh-1.2.5.dist-info/WHEEL +5 -0
  262. npcsh-1.2.5.dist-info/entry_points.txt +17 -0
  263. npcsh-1.2.5.dist-info/licenses/LICENSE +21 -0
  264. npcsh-1.2.5.dist-info/top_level.txt +2 -0
  265. project/__init__.py +1 -0
npcsh/__init__.py ADDED
File without changes