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.
- npcsh/__init__.py +0 -0
- npcsh/_state.py +4291 -0
- npcsh/alicanto.py +65 -0
- npcsh/benchmark/__init__.py +28 -0
- npcsh/benchmark/cross_framework_runner.py +444 -0
- npcsh/benchmark/local_runner.py +873 -0
- npcsh/benchmark/npcsh_agent.py +172 -0
- npcsh/benchmark/runner.py +607 -0
- npcsh/benchmark/rust_runner.py +225 -0
- npcsh/benchmark/templates/install-npcsh.sh.j2 +72 -0
- npcsh/build.py +283 -0
- npcsh/completion.py +202 -0
- npcsh/config.py +167 -0
- npcsh/corca.py +49 -0
- npcsh/diff_viewer.py +452 -0
- npcsh/execution.py +184 -0
- npcsh/guac.py +45 -0
- npcsh/launcher.py +133 -0
- npcsh/mcp_helpers.py +356 -0
- npcsh/mcp_server.py +13 -0
- npcsh/npc.py +423 -0
- npcsh/npc_team/alicanto.npc +28 -0
- npcsh/npc_team/alicanto.png +0 -0
- npcsh/npc_team/corca.npc +27 -0
- npcsh/npc_team/corca.png +0 -0
- npcsh/npc_team/corca_example.png +0 -0
- npcsh/npc_team/frederic.npc +26 -0
- npcsh/npc_team/frederic4.png +0 -0
- npcsh/npc_team/guac.png +0 -0
- npcsh/npc_team/jinxes/bin/explore.jinx +480 -0
- npcsh/npc_team/jinxes/bin/nsync.jinx +223 -0
- npcsh/npc_team/jinxes/bin/repo_issues.jinx +152 -0
- npcsh/npc_team/jinxes/bin/roll.jinx +381 -0
- npcsh/npc_team/jinxes/bin/scherzo.jinx +363 -0
- npcsh/npc_team/jinxes/bin/vixynt.jinx +393 -0
- npcsh/npc_team/jinxes/bin/yap.jinx +1189 -0
- npcsh/npc_team/jinxes/etc/config.jinx +303 -0
- npcsh/npc_team/jinxes/etc/set.jinx +40 -0
- npcsh/npc_team/jinxes/etc/setup.jinx +244 -0
- npcsh/npc_team/jinxes/etc/shh.jinx +17 -0
- npcsh/npc_team/jinxes/etc/switch.jinx +62 -0
- npcsh/npc_team/jinxes/etc/switches.jinx +61 -0
- npcsh/npc_team/jinxes/etc/verbose.jinx +17 -0
- npcsh/npc_team/jinxes/lib/ask_form.jinx +271 -0
- npcsh/npc_team/jinxes/lib/browser/browser_action.jinx +220 -0
- npcsh/npc_team/jinxes/lib/browser/browser_screenshot.jinx +40 -0
- npcsh/npc_team/jinxes/lib/browser/close_browser.jinx +14 -0
- npcsh/npc_team/jinxes/lib/browser/open_browser.jinx +43 -0
- npcsh/npc_team/jinxes/lib/click.jinx +23 -0
- npcsh/npc_team/jinxes/lib/compress.jinx +675 -0
- npcsh/npc_team/jinxes/lib/db_search.jinx +373 -0
- npcsh/npc_team/jinxes/lib/delegate.jinx +177 -0
- npcsh/npc_team/jinxes/lib/edit.jinx +177 -0
- npcsh/npc_team/jinxes/lib/edit_file.jinx +119 -0
- npcsh/npc_team/jinxes/lib/extract_memories.jinx +169 -0
- npcsh/npc_team/jinxes/lib/file_search.jinx +364 -0
- npcsh/npc_team/jinxes/lib/git/changelog.jinx +95 -0
- npcsh/npc_team/jinxes/lib/git/commit.jinx +135 -0
- npcsh/npc_team/jinxes/lib/git/diff_summary.jinx +97 -0
- npcsh/npc_team/jinxes/lib/git/pr.jinx +137 -0
- npcsh/npc_team/jinxes/lib/git/pr_review.jinx +106 -0
- npcsh/npc_team/jinxes/lib/git/release_notes.jinx +2253 -0
- npcsh/npc_team/jinxes/lib/key_press.jinx +26 -0
- npcsh/npc_team/jinxes/lib/launch_app.jinx +37 -0
- npcsh/npc_team/jinxes/lib/load_file.jinx +35 -0
- npcsh/npc_team/jinxes/lib/new.jinx +120 -0
- npcsh/npc_team/jinxes/lib/ots.jinx +61 -0
- npcsh/npc_team/jinxes/lib/paste.jinx +134 -0
- npcsh/npc_team/jinxes/lib/plan.jinx +174 -0
- npcsh/npc_team/jinxes/lib/python.jinx +7 -0
- npcsh/npc_team/jinxes/lib/sample.jinx +55 -0
- npcsh/npc_team/jinxes/lib/screenshot.jinx +23 -0
- npcsh/npc_team/jinxes/lib/sh.jinx +42 -0
- npcsh/npc_team/jinxes/lib/skill.jinx +59 -0
- npcsh/npc_team/jinxes/lib/sleep.jinx +132 -0
- npcsh/npc_team/jinxes/lib/sql.jinx +20 -0
- npcsh/npc_team/jinxes/lib/trigger.jinx +61 -0
- npcsh/npc_team/jinxes/lib/type_text.jinx +27 -0
- npcsh/npc_team/jinxes/lib/view_image.jinx +93 -0
- npcsh/npc_team/jinxes/lib/wait.jinx +21 -0
- npcsh/npc_team/jinxes/lib/web_search.jinx +100 -0
- npcsh/npc_team/jinxes/nql/models/command_analytics.sql +19 -0
- npcsh/npc_team/jinxes/nql/models/error_digest.sql +19 -0
- npcsh/npc_team/jinxes/nql/nql.yaml +16 -0
- npcsh/npc_team/jinxes/skills/code-review/SKILL.md +45 -0
- npcsh/npc_team/jinxes/skills/debugging/SKILL.md +44 -0
- npcsh/npc_team/jinxes/skills/git-workflow.jinx +44 -0
- npcsh/npc_team/jinxes/sys/benchmark.jinx +85 -0
- npcsh/npc_team/jinxes/sys/compile.jinx +50 -0
- npcsh/npc_team/jinxes/sys/cron.jinx +68 -0
- npcsh/npc_team/jinxes/sys/crond.jinx +1257 -0
- npcsh/npc_team/jinxes/sys/help.jinx +123 -0
- npcsh/npc_team/jinxes/sys/incognidev.jinx +77 -0
- npcsh/npc_team/jinxes/sys/init.jinx +354 -0
- npcsh/npc_team/jinxes/sys/lookback.jinx +33 -0
- npcsh/npc_team/jinxes/sys/reload.jinx +59 -0
- npcsh/npc_team/jinxes/sys/serve.jinx +942 -0
- npcsh/npc_team/jinxes/sys/stop.jinx +10 -0
- npcsh/npc_team/jinxes/sys/systemd.jinx +203 -0
- npcsh/npc_team/jinxes/sys/usage.jinx +33 -0
- npcsh/npc_team/jinxes/usr/build.jinx +381 -0
- npcsh/npc_team/jinxes/usr/chat.jinx +63 -0
- npcsh/npc_team/jinxes/usr/cmd.jinx +44 -0
- npcsh/npc_team/jinxes/usr/computer_use.jinx +639 -0
- npcsh/npc_team/jinxes/usr/convene.jinx +673 -0
- npcsh/npc_team/jinxes/usr/data/arxiv.jinx +790 -0
- npcsh/npc_team/jinxes/usr/data/kg.jinx +1010 -0
- npcsh/npc_team/jinxes/usr/data/nql.jinx +619 -0
- npcsh/npc_team/jinxes/usr/data/papers.jinx +722 -0
- npcsh/npc_team/jinxes/usr/deep_research.jinx +1697 -0
- npcsh/npc_team/jinxes/usr/git.jinx +1148 -0
- npcsh/npc_team/jinxes/usr/guac.jinx +561 -0
- npcsh/npc_team/jinxes/usr/mcp_shell.jinx +819 -0
- npcsh/npc_team/jinxes/usr/meta/ctx.jinx +25 -0
- npcsh/npc_team/jinxes/usr/meta/jinxs.jinx +410 -0
- npcsh/npc_team/jinxes/usr/meta/memories.jinx +417 -0
- npcsh/npc_team/jinxes/usr/meta/models.jinx +346 -0
- npcsh/npc_team/jinxes/usr/meta/reattach.jinx +326 -0
- npcsh/npc_team/jinxes/usr/meta/skills.jinx +624 -0
- npcsh/npc_team/jinxes/usr/meta/team.jinx +593 -0
- npcsh/npc_team/jinxes/usr/meta/teamviz.jinx +205 -0
- npcsh/npc_team/jinxes/usr/pti.jinx +361 -0
- npcsh/npc_team/jinxes/usr/spool.jinx +354 -0
- npcsh/npc_team/jinxes/usr/wander.jinx +731 -0
- npcsh/npc_team/kadiefa.npc +23 -0
- npcsh/npc_team/kadiefa.png +0 -0
- npcsh/npc_team/npcsh.ctx +55 -0
- npcsh/npc_team/npcsh_sibiji.png +0 -0
- npcsh/npc_team/plonk.npc +33 -0
- npcsh/npc_team/plonk.png +0 -0
- npcsh/npc_team/plonkjr.png +0 -0
- npcsh/npc_team/sibiji.npc +51 -0
- npcsh/npc_team/sibiji.png +0 -0
- npcsh/npc_team/spool.png +0 -0
- npcsh/npc_team/yap.png +0 -0
- npcsh/npcsh.py +660 -0
- npcsh/parsing.py +80 -0
- npcsh/plonk.py +53 -0
- npcsh/pti.py +53 -0
- npcsh/routes.py +153 -0
- npcsh/salmon_simulation.py +0 -0
- npcsh/spool.py +47 -0
- npcsh/ui.py +582 -0
- npcsh/wander.py +61 -0
- npcsh/yap.py +67 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/SKILL.md +44 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/alicanto.npc +28 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/alicanto.png +0 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/arxiv.jinx +790 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/ask_form.jinx +271 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/benchmark.jinx +85 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/browser_action.jinx +220 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/browser_screenshot.jinx +40 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/build.jinx +381 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/changelog.jinx +95 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/chat.jinx +63 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/click.jinx +23 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/close_browser.jinx +14 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/cmd.jinx +44 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/command_analytics.sql +19 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/commit.jinx +135 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/compile.jinx +50 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/compress.jinx +675 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/computer_use.jinx +639 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/config.jinx +303 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/convene.jinx +673 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/corca.npc +27 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/corca.png +0 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/corca_example.png +0 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/cron.jinx +68 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/crond.jinx +1257 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/ctx.jinx +25 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/db_search.jinx +373 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/deep_research.jinx +1697 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/delegate.jinx +177 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/diff_summary.jinx +97 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/edit.jinx +177 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/edit_file.jinx +119 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/error_digest.sql +19 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/explore.jinx +480 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/extract_memories.jinx +169 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/file_search.jinx +364 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/frederic.npc +26 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/frederic4.png +0 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/git-workflow.jinx +44 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/git.jinx +1148 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/guac.jinx +561 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/guac.png +0 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/help.jinx +123 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/incognidev.jinx +77 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/init.jinx +354 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/jinxs.jinx +410 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/kadiefa.npc +23 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/kadiefa.png +0 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/key_press.jinx +26 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/kg.jinx +1010 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/launch_app.jinx +37 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/load_file.jinx +35 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/lookback.jinx +33 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/mcp_shell.jinx +819 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/memories.jinx +417 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/models.jinx +346 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/new.jinx +120 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/npcsh.ctx +55 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/npcsh_sibiji.png +0 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/nql.jinx +619 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/nql.yaml +16 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/nsync.jinx +223 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/open_browser.jinx +43 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/ots.jinx +61 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/papers.jinx +722 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/paste.jinx +134 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/plan.jinx +174 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/plonk.npc +33 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/plonk.png +0 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/plonkjr.png +0 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/pr.jinx +137 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/pr_review.jinx +106 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/pti.jinx +361 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/python.jinx +7 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/reattach.jinx +326 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/release_notes.jinx +2253 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/reload.jinx +59 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/repo_issues.jinx +152 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/roll.jinx +381 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/sample.jinx +55 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/scherzo.jinx +363 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/screenshot.jinx +23 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/serve.jinx +942 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/set.jinx +40 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/setup.jinx +244 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/sh.jinx +42 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/shh.jinx +17 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/sibiji.npc +51 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/sibiji.png +0 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/skill.jinx +59 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/skills.jinx +624 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/sleep.jinx +132 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/spool.jinx +354 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/spool.png +0 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/sql.jinx +20 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/stop.jinx +10 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/switch.jinx +62 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/switches.jinx +61 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/systemd.jinx +203 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/team.jinx +593 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/teamviz.jinx +205 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/trigger.jinx +61 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/type_text.jinx +27 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/usage.jinx +33 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/verbose.jinx +17 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/view_image.jinx +93 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/vixynt.jinx +393 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/wait.jinx +21 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/wander.jinx +731 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/web_search.jinx +100 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/yap.jinx +1189 -0
- npcsh-1.2.5.data/data/npcsh/npc_team/yap.png +0 -0
- npcsh-1.2.5.dist-info/METADATA +506 -0
- npcsh-1.2.5.dist-info/RECORD +265 -0
- npcsh-1.2.5.dist-info/WHEEL +5 -0
- npcsh-1.2.5.dist-info/entry_points.txt +17 -0
- npcsh-1.2.5.dist-info/licenses/LICENSE +21 -0
- npcsh-1.2.5.dist-info/top_level.txt +2 -0
- project/__init__.py +1 -0
npcsh/__init__.py
ADDED
|
File without changes
|