pythinker-code 2.0.0__tar.gz → 2.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/PKG-INFO +20 -6
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/README.md +16 -2
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/pyproject.toml +2 -2
- pythinker_code-2.1.0/src/pythinker_code/CHANGELOG.md +36 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/__main__.py +1 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/app.py +2 -2
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/cli/_lazy_group.py +6 -0
- pythinker_code-2.1.0/src/pythinker_code/cli/update.py +26 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/config.py +15 -0
- pythinker_code-2.1.0/src/pythinker_code/events.py +102 -0
- pythinker_code-2.1.0/src/pythinker_code/extensions.py +151 -0
- pythinker_code-2.1.0/src/pythinker_code/prompt_templates.py +181 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/soul/agent.py +8 -1
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/soul/pythinkersoul.py +75 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/__init__.py +1 -1
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/agent/description.md +17 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/__init__.py +27 -33
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/components/__init__.py +106 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/components/base.py +25 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/components/bash_execution.py +134 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/components/bordered_loader.py +60 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/components/diff.py +307 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/components/footer.py +231 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/components/key_hints.py +27 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/components/messages.py +146 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/components/render_utils.py +145 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/components/settings_list.py +369 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/components/special_messages.py +125 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/components/tool_execution.py +228 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/echo.py +30 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/keymap.py +84 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/oauth.py +24 -30
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/placeholders.py +56 -9
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/prompt.py +168 -55
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/selector.py +364 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/selectors/__init__.py +38 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/selectors/extension.py +37 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/selectors/oauth.py +63 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/selectors/settings.py +349 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/selectors/show_images.py +29 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/selectors/theme.py +28 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/selectors/thinking.py +42 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/slash.py +253 -20
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/tool_renderers/__init__.py +192 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/tool_renderers/_render_utils.py +122 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/tool_renderers/agent.py +135 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/tool_renderers/ask_user.py +93 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/tool_renderers/background.py +139 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/tool_renderers/bash.py +103 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/tool_renderers/edit.py +116 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/tool_renderers/find.py +80 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/tool_renderers/generic.py +60 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/tool_renderers/grep.py +97 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/tool_renderers/plan.py +98 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/tool_renderers/read.py +98 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/tool_renderers/think.py +66 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/tool_renderers/todo.py +114 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/tool_renderers/web.py +127 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/tool_renderers/write.py +99 -0
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/update.py +199 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/visualize/_blocks.py +193 -123
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/visualize/_live_view.py +7 -10
- pythinker_code-2.1.0/src/pythinker_code/ui/shell/visualize/_worklog.py +228 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/theme.py +153 -6
- pythinker_code-2.1.0/src/pythinker_code/ui/tui_config.py +82 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/rich/markdown.py +35 -0
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/_baseUniq--dyU3g5v.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/_baseUniq-WdgkyqbT.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/arc-DkMjLpYa.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/arc-CXmKbmz7.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/architectureDiagram-VXUJARFQ-CHWVaGo9.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/architectureDiagram-VXUJARFQ-YDl9Qkda.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/blockDiagram-VD42YOAC-DzdKe497.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/blockDiagram-VD42YOAC-C9ovno3t.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/c4Diagram-YG6GDRKO-D84Blotg.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/c4Diagram-YG6GDRKO-BXr41RkG.js +1 -1
- pythinker_code-2.1.0/src/pythinker_code/web/static/assets/channel-D_ia5WZB.js +1 -0
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/chunk-4BX2VUAB-C9w8wleE.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/chunk-4BX2VUAB-DGMZhK43.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/chunk-55IACEB6-YlYJ8HnF.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/chunk-55IACEB6-B5ry842o.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/chunk-B4BG7PRW-Bwtz_AHU.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/chunk-B4BG7PRW-BfRKLjSN.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/chunk-DI55MBZ5-BbEHkl8h.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/chunk-DI55MBZ5-Do9AJtv7.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/chunk-FMBD7UC4-BKPbvjLC.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/chunk-FMBD7UC4-CgOlE1IE.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/chunk-QN33PNHL-D73dQvKf.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/chunk-QN33PNHL-gw_IcalK.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/chunk-QZHKN3VN-zGiLKes_.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/chunk-QZHKN3VN-VcfL-NQQ.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/chunk-TZMSLE5B-LHJCi2fy.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/chunk-TZMSLE5B-BMbaKRk3.js +1 -1
- pythinker_code-2.1.0/src/pythinker_code/web/static/assets/classDiagram-2ON5EDUG-oflluu9m.js +1 -0
- pythinker_code-2.1.0/src/pythinker_code/web/static/assets/classDiagram-v2-WZHVMYZB-oflluu9m.js +1 -0
- pythinker_code-2.1.0/src/pythinker_code/web/static/assets/clone-CGWjTGh5.js +1 -0
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/code-block-IT6T5CEO-NtKViZGl.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/code-block-IT6T5CEO-DKwthXRd.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/cose-bilkent-S5V4N54A-DialjZpd.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/cose-bilkent-S5V4N54A-QvhSyJ47.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/cytoscape.esm-C_Fzpdck.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/cytoscape.esm-DZwBUI1Q.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/dagre-6UL2VRFP-DfuvkZZ7.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/dagre-6UL2VRFP-BDy2l1-g.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/diagram-PSM6KHXK-DLGctX3v.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/diagram-PSM6KHXK-BZM3ha9j.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/diagram-QEK2KX5R-DnxN6S0F.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/diagram-QEK2KX5R-HjR3RK6A.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/diagram-S2PKOQOG-Caq_Set9.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/diagram-S2PKOQOG-Mi15ug_w.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/erDiagram-Q2GNP2WA-BgTfALoK.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/erDiagram-Q2GNP2WA-jUbIypmc.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/flowDiagram-NV44I4VS-QjW_fnGi.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/flowDiagram-NV44I4VS-CrsXaal5.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/ganttDiagram-JELNMOA3-fqi8JFof.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/ganttDiagram-JELNMOA3-BfyinOz_.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/gitGraphDiagram-NY62KEGX-i7o6VQ8x.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/gitGraphDiagram-NY62KEGX-SGlWWpCh.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/graph-C0vZK2pT.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/graph-BbnvRGn-.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/index-BYCCk6-K.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/index-BtuEmzQY.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/index-Cpy4G3uJ.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/index-DUqu3OY8.js +2 -2
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/index-DdIkp80K.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/index-MZ4ra56p.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/infoDiagram-WHAUD3N6-BMPpeZSM.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/infoDiagram-WHAUD3N6-BQw-PXc-.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/journeyDiagram-XKPGCS4Q-DAM7gngo.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/journeyDiagram-XKPGCS4Q-Dgy4RQfB.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/kanban-definition-3W4ZIXB7-ChpBpV0k.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/kanban-definition-3W4ZIXB7-BLdG3Mfe.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/layout-C3Jp1gKO.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/layout-hYKYjJNX.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/linear-BGHtL1N4.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/linear-DigdNJRJ.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/mermaid-VLURNSYL-C_HW6koB.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/mermaid-VLURNSYL-DKXTFYtU.js +7 -7
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/mermaid.core-CnT4VrPC.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/mermaid.core-DHZF5iPm.js +5 -5
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/min-Dn5VRVmX.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/min-DZVTU06Y.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/mindmap-definition-VGOIOE7T-x8EwhfIt.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/mindmap-definition-VGOIOE7T-BDReDg-s.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/pieDiagram-ADFJNKIX-DgxBKGz2.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/pieDiagram-ADFJNKIX-BTt06Upj.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/quadrantDiagram-AYHSOK5B-DSpe_dqk.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/quadrantDiagram-AYHSOK5B-DFeziBtO.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/requirementDiagram-UZGBJVZJ-8o9hozL-.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/requirementDiagram-UZGBJVZJ-CETXPBHk.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/sankeyDiagram-TZEHDZUN-BLOSUixH.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/sankeyDiagram-TZEHDZUN-DsLlLqb0.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/sequenceDiagram-WL72ISMW-6F2G8JTU.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/sequenceDiagram-WL72ISMW-BXQGeJH7.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/stateDiagram-FKZM4ZOC-DP8xP0iJ.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/stateDiagram-FKZM4ZOC-D5_fBCG4.js +1 -1
- pythinker_code-2.1.0/src/pythinker_code/web/static/assets/stateDiagram-v2-4FDKWEC3-B4fITG2H.js +1 -0
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/timeline-definition-IT6M3QCI-DMgruDfK.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/timeline-definition-IT6M3QCI-CYrMqdcr.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/treemap-KMMF4GRG-Bo9ZkrAK.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/treemap-KMMF4GRG-DdKzgfwQ.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/xychartDiagram-PRI3JC2R-GeF2johi.js → pythinker_code-2.1.0/src/pythinker_code/web/static/assets/xychartDiagram-PRI3JC2R-hhd94HEL.js +1 -1
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/index.html +1 -1
- pythinker_code-2.0.0/src/pythinker_code/CHANGELOG.md +0 -16
- pythinker_code-2.0.0/src/pythinker_code/ui/shell/echo.py +0 -17
- pythinker_code-2.0.0/src/pythinker_code/ui/shell/update.py +0 -350
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/channel-CllSjjdl.js +0 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/classDiagram-2ON5EDUG-vX27iZwa.js +0 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/classDiagram-v2-WZHVMYZB-vX27iZwa.js +0 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/clone-DYBkaPm2.js +0 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/stateDiagram-v2-4FDKWEC3-1l6-EZNX.js +0 -1
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/LICENSE +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/NOTICE +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/acp/AGENTS.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/acp/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/acp/convert.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/acp/host.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/acp/mcp.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/acp/server.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/acp/session.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/acp/tools.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/acp/types.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/acp/version.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/agents/default/agent.yaml +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/agents/default/coder.yaml +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/agents/default/explore.yaml +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/agents/default/plan.yaml +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/agents/default/system.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/agents/okabe/agent.yaml +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/agentspec.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/approval_runtime/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/approval_runtime/models.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/approval_runtime/runtime.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/auth/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/auth/anthropic_direct.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/auth/deepseek.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/auth/lm_studio.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/auth/minimax.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/auth/oauth.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/auth/ollama.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/auth/openai.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/auth/opencode_go.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/auth/openrouter.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/auth/platforms.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/background/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/background/agent_runner.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/background/ids.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/background/manager.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/background/models.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/background/store.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/background/summary.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/background/worker.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/cli/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/cli/__main__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/cli/export.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/cli/info.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/cli/mcp.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/cli/plugin.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/cli/toad.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/cli/vis.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/cli/web.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/constant.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/exception.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/hooks/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/hooks/config.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/hooks/engine.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/hooks/events.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/hooks/runner.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/llm.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/metadata.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/notifications/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/notifications/llm.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/notifications/manager.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/notifications/models.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/notifications/notifier.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/notifications/store.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/notifications/wire.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/plugin/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/plugin/manager.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/plugin/tool.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/prompts/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/prompts/compact.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/prompts/init.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/py.typed +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/session.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/session_fork.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/session_state.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/share.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/skill/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/skill/flow/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/skill/flow/d2.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/skill/flow/mermaid.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/skills/pythinker-code-help/SKILL.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/skills/skill-creator/SKILL.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/soul/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/soul/approval.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/soul/btw.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/soul/compaction.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/soul/context.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/soul/denwarenji.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/soul/dynamic_injection.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/soul/dynamic_injections/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/soul/dynamic_injections/auto_mode.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/soul/dynamic_injections/plan_mode.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/soul/message.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/soul/slash.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/soul/toolset.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/subagents/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/subagents/builder.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/subagents/core.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/subagents/git_context.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/subagents/models.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/subagents/output.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/subagents/registry.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/subagents/runner.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/subagents/store.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/telemetry/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/telemetry/config.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/telemetry/crash.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/telemetry/metrics.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/telemetry/otel.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/telemetry/sentry.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/telemetry/sink.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/AGENTS.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/agent/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/ask_user/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/ask_user/description.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/background/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/background/list.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/background/output.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/background/stop.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/display.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/dmail/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/dmail/dmail.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/file/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/file/glob.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/file/glob.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/file/grep.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/file/grep_local.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/file/plan_mode.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/file/read.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/file/read.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/file/read_media.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/file/read_media.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/file/replace.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/file/replace.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/file/utils.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/file/write.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/file/write.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/plan/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/plan/description.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/plan/enter.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/plan/enter_description.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/plan/heroes.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/shell/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/shell/bash.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/shell/powershell.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/test.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/think/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/think/think.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/todo/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/todo/set_todo_list.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/utils.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/web/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/web/fetch.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/web/fetch.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/web/search.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/tools/web/search.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/acp/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/print/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/print/visualize.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/console.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/debug.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/export_import.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/keyboard.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/mcp_status.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/model_picker.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/replay.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/session_picker.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/setup.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/startup.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/task_browser.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/usage.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/usage_adapters/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/usage_adapters/anthropic_admin.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/usage_adapters/base.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/usage_adapters/deepseek.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/usage_adapters/minimax.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/usage_adapters/openai_admin.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/usage_adapters/openai_chatgpt.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/usage_adapters/opencode_go.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/usage_adapters/openrouter.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/usage_adapters/pythinker.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/usage_adapters/pythinker_ai.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/usage_render.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/visualize/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/visualize/_approval_panel.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/visualize/_btw_panel.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/visualize/_input_router.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/visualize/_interactive.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/ui/shell/visualize/_question_panel.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/usage_ratelimit_cache.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/aiohttp.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/aioqueue.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/broadcast.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/changelog.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/clipboard.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/datetime.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/diff.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/editor.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/environment.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/envvar.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/export.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/file_filter.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/frontmatter.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/io.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/logging.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/media_tags.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/message.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/path.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/proctitle.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/proxy.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/pyinstaller.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/rich/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/rich/columns.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/rich/diff_render.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/rich/markdown_sample.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/rich/markdown_sample_short.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/rich/syntax.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/sensitive.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/server.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/signals.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/slashcmd.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/string.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/subprocess_env.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/term.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/utils/typing.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/vis/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/vis/api/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/vis/api/sessions.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/vis/api/statistics.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/vis/api/system.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/vis/app.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/vis/static/assets/highlighted-body-B3W2YXNL-D2MTYyJz.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/vis/static/assets/index-CezafTt_.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/vis/static/assets/index-DSRInNnm.css +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/vis/static/assets/inter-cyrillic-ext-wght-normal-BOeWTOD4.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/vis/static/assets/inter-cyrillic-wght-normal-DqGufNeO.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/vis/static/assets/inter-greek-ext-wght-normal-DlzME5K_.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/vis/static/assets/inter-greek-wght-normal-CkhJZR-_.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/vis/static/assets/inter-latin-ext-wght-normal-DO1Apj_S.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/vis/static/assets/inter-latin-wght-normal-Dx4kXJAl.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/vis/static/assets/inter-vietnamese-wght-normal-CBcvBZtf.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/vis/static/index.html +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/api/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/api/config.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/api/open_in.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/api/sessions.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/app.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/auth.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/models.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/runner/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/runner/messages.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/runner/process.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/runner/worker.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_AMS-Regular-BQhdFMY1.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_AMS-Regular-DMm9YOAa.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_AMS-Regular-DRggAlZN.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Caligraphic-Bold-ATXxdsX0.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Caligraphic-Bold-BEiXGLvX.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Caligraphic-Bold-Dq_IR9rO.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Caligraphic-Regular-CTRA-rTL.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Caligraphic-Regular-Di6jR-x-.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Caligraphic-Regular-wX97UBjC.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Fraktur-Bold-BdnERNNW.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Fraktur-Bold-BsDP51OF.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Fraktur-Bold-CL6g_b3V.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Fraktur-Regular-CB_wures.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Fraktur-Regular-CTYiF6lA.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Fraktur-Regular-Dxdc4cR9.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Main-Bold-Cx986IdX.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Main-Bold-Jm3AIy58.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Main-Bold-waoOVXN0.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Main-BoldItalic-DxDJ3AOS.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Main-BoldItalic-DzxPMmG6.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Main-BoldItalic-SpSLRI95.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Main-Italic-3WenGoN9.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Main-Italic-BMLOBm91.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Main-Italic-NWA7e6Wa.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Main-Regular-B22Nviop.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Main-Regular-Dr94JaBh.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Main-Regular-ypZvNtVU.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Math-BoldItalic-B3XSjfu4.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Math-BoldItalic-CZnvNsCZ.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Math-BoldItalic-iY-2wyZ7.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Math-Italic-DA0__PXp.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Math-Italic-flOr_0UB.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Math-Italic-t53AETM-.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_SansSerif-Bold-CFMepnvq.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_SansSerif-Bold-D1sUS0GD.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_SansSerif-Bold-DbIhKOiC.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_SansSerif-Italic-C3H0VqGB.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_SansSerif-Italic-DN2j7dab.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_SansSerif-Italic-YYjJ1zSn.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_SansSerif-Regular-BNo7hRIc.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_SansSerif-Regular-CS6fqUqJ.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_SansSerif-Regular-DDBCnlJ7.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Script-Regular-C5JkGWo-.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Script-Regular-D3wIWfF6.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Script-Regular-D5yQViql.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Size1-Regular-C195tn64.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Size1-Regular-Dbsnue_I.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Size1-Regular-mCD8mA8B.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Size2-Regular-B7gKUWhC.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Size2-Regular-Dy4dx90m.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Size2-Regular-oD1tc_U0.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Size3-Regular-CTq5MqoE.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Size3-Regular-DgpXs0kz.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Size4-Regular-BF-4gkZK.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Size4-Regular-DWFBv043.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Size4-Regular-Dl5lxZxV.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Typewriter-Regular-C0xS9mPB.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Typewriter-Regular-CO6r4hn1.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/KaTeX_Typewriter-Regular-D3Ib7_Hf.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/abap-BdImnpbu.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/actionscript-3-CfeIJUat.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/ada-bCR0ucgS.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/andromeeda-C-Jbm3Hp.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/angular-html-CU67Zn6k.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/angular-ts-BwZT4LLn.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/apache-Pmp26Uib.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/apex-D8_7TLub.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/apl-dKokRX4l.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/applescript-Co6uUVPk.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/ara-BRHolxvo.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/asciidoc-Dv7Oe6Be.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/asm-D_Q5rh1f.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/astro-CbQHKStN.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/aurora-x-D-2ljcwZ.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/awk-DMzUqQB5.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/ayu-dark-CmMr59Fi.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/ballerina-BFfxhgS-.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/bat-BkioyH1T.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/beancount-k_qm7-4y.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/berry-uYugtg8r.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/bibtex-CHM0blh-.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/bicep-Bmn6On1c.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/blade-D4QpJJKB.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/bsl-BO_Y6i37.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/c-BIGW1oBm.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/c3-VCDPK7BO.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/cadence-Bv_4Rxtq.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/cairo-KRGpt6FW.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/catppuccin-frappe-DFWUc33u.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/catppuccin-latte-C9dUb6Cb.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/catppuccin-macchiato-DQyhUUbL.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/catppuccin-mocha-D87Tk5Gz.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/clarity-D53aC0YG.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/clojure-P80f7IUj.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/cmake-D1j8_8rp.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/cobol-nwyudZeR.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/codeowners-Bp6g37R7.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/codeql-DsOJ9woJ.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/coffee-Ch7k5sss.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/common-lisp-Cg-RD9OK.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/coq-DkFqJrB1.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/cpp-CofmeUqb.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/crystal-tKQVLTB8.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/csharp-K5feNrxe.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/css-DPfMkruS.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/csv-fuZLfV_i.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/cue-D82EKSYY.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/cypher-COkxafJQ.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/d-85-TOEBH.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/dark-plus-C3mMm8J8.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/dart-CF10PKvl.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/dax-CEL-wOlO.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/defaultLocale-DX6XiGOO.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/desktop-BmXAJ9_W.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/diff-D97Zzqfu.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/docker-BcOcwvcX.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/dotenv-Da5cRb03.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/dracula-BzJJZx-M.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/dracula-soft-BXkSAIEj.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/dream-maker-BtqSS_iP.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/edge-BkV0erSs.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/elixir-CDX3lj18.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/elm-DbKCFpqz.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/emacs-lisp-C9XAeP06.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/erb-BOJIQeun.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/erlang-DsQrWhSR.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/everforest-dark-BgDCqdQA.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/everforest-light-C8M2exoo.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/fennel-BYunw83y.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/fish-BvzEVeQv.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/fluent-C4IJs8-o.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/fortran-fixed-form-CkoXwp7k.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/fortran-free-form-BxgE0vQu.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/fsharp-CXgrBDvD.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/gdresource-B7Tvp0Sc.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/gdscript-DTMYz4Jt.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/gdshader-DkwncUOv.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/genie-D0YGMca9.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/gherkin-DyxjwDmM.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/git-commit-F4YmCXRG.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/git-rebase-r7XF79zn.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/github-dark-DHJKELXO.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/github-dark-default-Cuk6v7N8.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/github-dark-dimmed-DH5Ifo-i.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/github-dark-high-contrast-E3gJ1_iC.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/github-light-DAi9KRSo.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/github-light-default-D7oLnXFd.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/github-light-high-contrast-BfjtVDDH.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/gleam-BspZqrRM.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/glimmer-js-Rg0-pVw9.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/glimmer-ts-U6CK756n.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/glsl-DplSGwfg.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/gn-n2N0HUVH.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/gnuplot-DdkO51Og.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/go-Dn2_MT6a.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/graphql-ChdNCCLP.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/groovy-gcz8RCvz.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/gruvbox-dark-hard-CFHQjOhq.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/gruvbox-dark-medium-GsRaNv29.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/gruvbox-dark-soft-CVdnzihN.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/gruvbox-light-hard-CH1njM8p.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/gruvbox-light-medium-DRw_LuNl.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/gruvbox-light-soft-hJgmCMqR.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/hack-CaT9iCJl.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/haml-B8DHNrY2.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/handlebars-BL8al0AC.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/haskell-Df6bDoY_.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/haxe-CzTSHFRz.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/hcl-BWvSN4gD.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/hjson-D5-asLiD.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/hlsl-D3lLCCz7.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/houston-DnULxvSX.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/html-GMplVEZG.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/html-derivative-BFtXZ54Q.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/http-jrhK8wxY.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/hurl-irOxFIW8.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/hxml-Bvhsp5Yf.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/hy-DFXneXwc.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/imba-DGztddWO.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/index-BpoLgcEt.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/index-CzV_vCfu.css +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/index-DI2oedCt.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/ini-BEwlwnbL.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/init-Gi6I4Gst.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/inter-cyrillic-ext-wght-normal-BOeWTOD4.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/inter-cyrillic-wght-normal-DqGufNeO.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/inter-greek-ext-wght-normal-DlzME5K_.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/inter-greek-wght-normal-CkhJZR-_.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/inter-latin-ext-wght-normal-DO1Apj_S.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/inter-latin-wght-normal-Dx4kXJAl.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/inter-vietnamese-wght-normal-CBcvBZtf.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/java-CylS5w8V.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/javascript-wDzz0qaB.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/jinja-4LBKfQ-Z.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/jison-wvAkD_A8.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/json-Cp-IABpG.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/json5-C9tS-k6U.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/jsonc-Des-eS-w.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/jsonl-DcaNXYhu.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/jsonnet-DFQXde-d.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/jssm-C2t-YnRu.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/jsx-g9-lgVsj.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/julia-CxzCAyBv.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/kanagawa-dragon-CkXjmgJE.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/kanagawa-lotus-CfQXZHmo.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/kanagawa-wave-DWedfzmr.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/katex-D2lIc1rk.css +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/kdl-DV7GczEv.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/kotlin-BdnUsdx6.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/kusto-DZf3V79B.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/laserwave-DUszq2jm.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/latex-B4uzh10-.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/lean-BZvkOJ9d.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/less-B1dDrJ26.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/light-plus-B7mTdjB0.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/liquid-DYVedYrR.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/llvm-BtvRca6l.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/log-2UxHyX5q.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/logo-BtOb2qkB.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/lua-BbnMAYS6.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/luau-C-HG3fhB.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/make-CHLpvVh8.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/markdown-Cvjx9yec.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/marko-DZsq8hO1.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/material-theme-D5KoaKCx.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/material-theme-darker-BfHTSMKl.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/material-theme-lighter-B0m2ddpp.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/material-theme-ocean-CyktbL80.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/material-theme-palenight-Csfq5Kiy.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/matlab-D7o27uSR.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/mdc-DUICxH0z.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/mdx-Cmh6b_Ma.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/mermaid-VLURNSYL-B2P5VJ9v.css +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/mermaid-mWjccvbQ.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/min-dark-CafNBF8u.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/min-light-CTRr51gU.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/mipsasm-CKIfxQSi.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/mojo-B93PlW-d.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/monokai-D4h5O-jR.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/moonbit-Ba13S78F.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/move-Bu9oaDYs.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/narrat-DRg8JJMk.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/nextflow-BrzmwbiE.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/nginx-DknmC5AR.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/night-owl-C39BiMTA.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/nim-CVrawwO9.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/nix-CwoSXNpI.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/nord-Ddv68eIx.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/nushell-C-sUppwS.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/objective-c-DXmwc3jG.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/objective-cpp-CLxacb5B.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/ocaml-C0hk2d4L.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/one-dark-pro-DVMEJ2y_.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/one-light-PoHY5YXO.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/openscad-C4EeE6gA.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/ordinal-Cboi1Yqb.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/pascal-D93ZcfNL.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/perl-C0TMdlhV.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/php-CDn_0X-4.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/pkl-u5AG7uiY.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/plastic-3e1v2bzS.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/plsql-ChMvpjG-.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/po-BTJTHyun.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/poimandres-CS3Unz2-.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/polar-C0HS_06l.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/postcss-CXtECtnM.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/powerquery-CEu0bR-o.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/powershell-Dpen1YoG.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/prisma-Dd19v3D-.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/prolog-CbFg5uaA.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/proto-C7zT0LnQ.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/pug-CGlum2m_.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/puppet-BMWR74SV.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/purescript-CklMAg4u.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/python-B6aJPvgy.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/qml-3beO22l8.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/qmldir-C8lEn-DE.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/qss-IeuSbFQv.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/r-Dspwwk_N.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/racket-BqYA7rlc.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/raku-DXvB9xmW.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/razor-C1TweQQi.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/red-bN70gL4F.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/reg-C-SQnVFl.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/regexp-CDVJQ6XC.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/rel-C3B-1QV4.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/riscv-BM1_JUlF.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/rose-pine-dawn-DHQR4-dF.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/rose-pine-moon-D4_iv3hh.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/rose-pine-qdsjHGoJ.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/rosmsg-BJDFO7_C.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/rst-B0xPkSld.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/ruby-BvKwtOVI.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/rust-B1yitclQ.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/sas-cz2c8ADy.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/sass-Cj5Yp3dK.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/scala-C151Ov-r.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/scheme-C98Dy4si.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/scss-OYdSNvt2.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/sdbl-DVxCFoDh.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/shaderlab-Dg9Lc6iA.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/shellscript-Yzrsuije.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/shellsession-BADoaaVG.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/slack-dark-BthQWCQV.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/slack-ochin-DqwNpetd.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/smalltalk-BERRCDM3.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/snazzy-light-Bw305WKR.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/solarized-dark-DXbdFlpD.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/solarized-light-L9t79GZl.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/solidity-rGO070M0.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/soy-Brmx7dQM.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/sparql-rVzFXLq3.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/splunk-BtCnVYZw.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/sql-BLtJtn59.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/ssh-config-_ykCGR6B.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/stata-BH5u7GGu.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/stylus-BEDo0Tqx.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/svelte-zxCyuUbr.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/swift-Dg5xB15N.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/synthwave-84-CbfX1IO0.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/system-verilog-CnnmHF94.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/systemd-4A_iFExJ.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/talonscript-CkByrt1z.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/tasl-QIJgUcNo.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/tcl-dwOrl1Do.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/templ-W15q3VgB.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/terraform-BETggiCN.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/tex-CvyZ59Mk.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/tokyo-night-hegEt444.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/toml-vGWfd6FD.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/ts-tags-zn1MmPIZ.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/tsv-B_m7g4N7.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/tsx-COt5Ahok.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/turtle-BsS91CYL.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/twig-CO9l9SDP.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/typescript-BPQ3VLAy.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/typespec-BGHnOYBU.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/typst-DHCkPAjA.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/v-BcVCzyr7.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/vala-CsfeWuGM.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/vb-D17OF-Vu.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/verilog-BQ8w6xss.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/vesper-DU1UobuO.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/vhdl-CeAyd5Ju.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/viml-CJc9bBzg.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/vitesse-black-Bkuqu6BP.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/vitesse-dark-D0r3Knsf.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/vitesse-light-CVO1_9PV.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/vue-DN_0RTcg.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/vue-html-AaS7Mt5G.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/vue-vine-CQOfvN7w.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/vyper-CDx5xZoG.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/wasm-CG6Dc4jp.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/wasm-MzD3tlZU.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/wenyan-BV7otONQ.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/wgsl-Dx-B1_4e.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/wikitext-BhOHFoWU.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/wit-5i3qLPDT.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/wolfram-lXgVvXCa.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/xml-sdJ4AIDG.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/xsl-CtQFsRM5.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/yaml-Buea-lGh.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/zenscript-DVFEvuxE.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/assets/zig-VOosw3JB.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/brand/apple-touch-icon.png +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/brand/arctecture.webp +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/brand/bimi-logo.svg +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/brand/favicon.ico +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/brand/fonts/dm-sans-latin-ext.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/brand/fonts/dm-sans-latin.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/brand/fonts/instrument-sans-latin-ext.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/brand/fonts/instrument-sans-latin.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/brand/fonts/instrument-serif-latin-ext.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/brand/fonts/instrument-serif-latin.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/brand/fonts/libre-baskerville-italic-latin-ext.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/brand/fonts/libre-baskerville-italic-latin.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/brand/fonts/libre-baskerville-latin-ext.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/brand/fonts/libre-baskerville-latin.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/brand/fonts/roboto-latin-ext.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/brand/fonts/roboto-latin.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/brand/icon-192.png +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/brand/icon-512.png +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/brand/icon.svg +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/brand/logo.png +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/brand/pythinker_animated.svg +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/brand/robots.txt +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/static/logo.png +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/store/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/web/store/sessions.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/wire/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/wire/file.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/wire/jsonrpc.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/wire/protocol.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/wire/root_hub.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/wire/serde.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/wire/server.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.0}/src/pythinker_code/wire/types.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pythinker-code
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.1.0
|
|
4
4
|
Summary: Pythinker Code is your next CLI agent.
|
|
5
5
|
Keywords: cli,agent,ai,coding-assistant,llm,claude,openai,terminal
|
|
6
6
|
Author: Mohamed Elkholy
|
|
@@ -53,11 +53,11 @@ Requires-Dist: opentelemetry-api>=1.30,<2
|
|
|
53
53
|
Requires-Dist: opentelemetry-sdk>=1.30,<2
|
|
54
54
|
Requires-Dist: opentelemetry-exporter-otlp-proto-http>=1.30,<2
|
|
55
55
|
Requires-Python: >=3.12
|
|
56
|
-
Project-URL: Changelog, https://github.com/mohamed-elkholy95/Pythinker-Code/blob/main/CHANGELOG.md
|
|
57
|
-
Project-URL: Documentation, https://github.com/mohamed-elkholy95/Pythinker-Code#readme
|
|
58
56
|
Project-URL: Homepage, https://github.com/mohamed-elkholy95/Pythinker-Code
|
|
59
|
-
Project-URL: Issues, https://github.com/mohamed-elkholy95/Pythinker-Code/issues
|
|
60
57
|
Project-URL: Repository, https://github.com/mohamed-elkholy95/Pythinker-Code
|
|
58
|
+
Project-URL: Issues, https://github.com/mohamed-elkholy95/Pythinker-Code/issues
|
|
59
|
+
Project-URL: Changelog, https://github.com/mohamed-elkholy95/Pythinker-Code/blob/main/CHANGELOG.md
|
|
60
|
+
Project-URL: Documentation, https://github.com/mohamed-elkholy95/Pythinker-Code#readme
|
|
61
61
|
Description-Content-Type: text/markdown
|
|
62
62
|
|
|
63
63
|
<div align="center">
|
|
@@ -71,10 +71,10 @@ Description-Content-Type: text/markdown
|
|
|
71
71
|
|
|
72
72
|
<br />
|
|
73
73
|
|
|
74
|
-
[](https://pypi.org/project/pythinker-code/)
|
|
75
75
|
[](pyproject.toml)
|
|
76
76
|
[](LICENSE)
|
|
77
|
-
[](https://github.com/mohamed-elkholy95/Pythinker-Code/actions/workflows/ci-pythinker-cli.yml)
|
|
78
78
|
|
|
79
79
|
[](https://docs.astral.sh/ruff/)
|
|
80
80
|
[](https://github.com/agentclientprotocol/agent-client-protocol)
|
|
@@ -189,6 +189,20 @@ Swap providers and models per-session: `--model openai/gpt-5.5`, hosted Pythinke
|
|
|
189
189
|
|
|
190
190
|
## ⚡ Quick Start
|
|
191
191
|
|
|
192
|
+
### ✨ Recommended install (clean, with logo)
|
|
193
|
+
|
|
194
|
+
```sh
|
|
195
|
+
curl -fsSL https://raw.githubusercontent.com/mohamed-elkholy95/Pythinker-Code/main/scripts/install.sh | sh
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
Windows PowerShell:
|
|
199
|
+
|
|
200
|
+
```powershell
|
|
201
|
+
irm https://raw.githubusercontent.com/mohamed-elkholy95/Pythinker-Code/main/scripts/install.ps1 | iex
|
|
202
|
+
```
|
|
203
|
+
|
|
204
|
+
The installer fetches `uv` if missing, installs `pythinker-code` quietly, and prints a single-line confirmation instead of the full dependency wall.
|
|
205
|
+
|
|
192
206
|
### 🚀 One-off run with `uvx`
|
|
193
207
|
|
|
194
208
|
```sh
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
|
|
10
10
|
<br />
|
|
11
11
|
|
|
12
|
-
[](https://pypi.org/project/pythinker-code/)
|
|
13
13
|
[](pyproject.toml)
|
|
14
14
|
[](LICENSE)
|
|
15
|
-
[](https://github.com/mohamed-elkholy95/Pythinker-Code/actions/workflows/ci-pythinker-cli.yml)
|
|
16
16
|
|
|
17
17
|
[](https://docs.astral.sh/ruff/)
|
|
18
18
|
[](https://github.com/agentclientprotocol/agent-client-protocol)
|
|
@@ -127,6 +127,20 @@ Swap providers and models per-session: `--model openai/gpt-5.5`, hosted Pythinke
|
|
|
127
127
|
|
|
128
128
|
## ⚡ Quick Start
|
|
129
129
|
|
|
130
|
+
### ✨ Recommended install (clean, with logo)
|
|
131
|
+
|
|
132
|
+
```sh
|
|
133
|
+
curl -fsSL https://raw.githubusercontent.com/mohamed-elkholy95/Pythinker-Code/main/scripts/install.sh | sh
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
Windows PowerShell:
|
|
137
|
+
|
|
138
|
+
```powershell
|
|
139
|
+
irm https://raw.githubusercontent.com/mohamed-elkholy95/Pythinker-Code/main/scripts/install.ps1 | iex
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
The installer fetches `uv` if missing, installs `pythinker-code` quietly, and prints a single-line confirmation instead of the full dependency wall.
|
|
143
|
+
|
|
130
144
|
### 🚀 One-off run with `uvx`
|
|
131
145
|
|
|
132
146
|
```sh
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "pythinker-code"
|
|
3
|
-
version = "2.
|
|
3
|
+
version = "2.1.0"
|
|
4
4
|
description = "Pythinker Code is your next CLI agent."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.12"
|
|
@@ -65,7 +65,7 @@ dependencies = [
|
|
|
65
65
|
dev = [
|
|
66
66
|
"pyinstaller==6.18.0",
|
|
67
67
|
"inline-snapshot[black]>=0.31.1",
|
|
68
|
-
"pyright>=1.1.
|
|
68
|
+
"pyright>=1.1.409",
|
|
69
69
|
"ty>=0.0.9",
|
|
70
70
|
"pytest>=9.0.3",
|
|
71
71
|
"pytest-asyncio>=1.3.0",
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## Unreleased
|
|
4
|
+
|
|
5
|
+
## 2.1.0 (2026-05-08)
|
|
6
|
+
|
|
7
|
+
TUI CLI design and slash command enhancements.
|
|
8
|
+
|
|
9
|
+
- New selectors package — interactive `/theme`, `/thinking`, `/model`, `/login`, `/settings`, `/extension`, and `/show-images` panels replace inline numeric/text prompts.
|
|
10
|
+
- New `/thinking` slash command for adjusting reasoning effort at runtime.
|
|
11
|
+
- `SettingsList` component + `/settings` selector for live `Config` editing (theme, default model, TUI style, default thinking, telemetry).
|
|
12
|
+
- Selector framework: `SelectorHeader` sentinel and per-row `on_change` callback.
|
|
13
|
+
- Card-style TUI polish: bordered shell card, footer/toolbar, tool renderers (read/write/edit/grep/find/bash/agent) and a diff component; subagent tool cards get a running-dots spinner.
|
|
14
|
+
- Pythinker-branded slash menu, input row, and tool execution components.
|
|
15
|
+
- Prompt template discovery simplified to `.pythinker/prompts` at project and user scope (legacy directory lookup removed).
|
|
16
|
+
- TUI style flag now accepts only `card` (default) or `pythinker`; the legacy alias has been dropped.
|
|
17
|
+
|
|
18
|
+
- Update notifier: standalone "Update Available" banner shown above the welcome panel when a newer release is on PyPI; suppressed by `PYTHINKER_CLI_NO_AUTO_UPDATE=1`.
|
|
19
|
+
- New `pythinker update` subcommand (`--check` for a non-installing check) that auto-detects the install method (`uv tool`, `pipx`, or `pip`) and runs the matching upgrade command.
|
|
20
|
+
- Image paste placeholder now renders as `[Image #N]` in the input/buffer (mirroring `[Pasted text #N +K lines]`); history serialization keeps the canonical `[image:<id>,WxH]` form so attachments still resolve cross-session.
|
|
21
|
+
- Lower default paste-placeholderize thresholds to 200 chars / 5 lines (was 1000 / 15) so medium-length pastes collapse into `[Pasted text #N]` instead of overflowing the compact input window. Override via `PYTHINKER_CLI_PASTE_CHAR_THRESHOLD` and `PYTHINKER_CLI_PASTE_LINE_THRESHOLD`.
|
|
22
|
+
|
|
23
|
+
## 1.0.0 (2026-05-06)
|
|
24
|
+
|
|
25
|
+
Initial release of Pythinker CLI.
|
|
26
|
+
|
|
27
|
+
- Interactive terminal AI coding agent with shell command mode (Ctrl-X)
|
|
28
|
+
- ACP server (`pythinker acp`) for IDE integrations such as Zed and JetBrains
|
|
29
|
+
- MCP tool support: `pythinker mcp` sub-commands and ad-hoc `--mcp-config-file`
|
|
30
|
+
- Multi-provider auth: OpenAI, OpenAI Codex, Anthropic, OpenRouter, DeepSeek, MiniMax, Opencode-Go
|
|
31
|
+
- Skills, plugins, and slash commands across project / user / built-in scopes
|
|
32
|
+
- Session persistence with subagents and approval workflows
|
|
33
|
+
- Print mode and wire mode for non-interactive and programmatic use
|
|
34
|
+
- Plan mode for read-only research and design before code changes
|
|
35
|
+
- YOLO mode (`--yolo` / `/yolo`) to dangerously skip permission approvals while keeping the user reachable via `AskUserQuestion`
|
|
36
|
+
- Auto mode (`--auto` / `/auto`) for unattended runs: auto-approves tool calls and auto-dismisses `AskUserQuestion` so the agent finishes end-to-end without a user
|
|
@@ -703,9 +703,9 @@ class PythinkerCLI:
|
|
|
703
703
|
from pythinker_code.ui.shell import Shell, WelcomeInfoItem
|
|
704
704
|
|
|
705
705
|
if command is None:
|
|
706
|
-
from pythinker_code.ui.shell.update import
|
|
706
|
+
from pythinker_code.ui.shell.update import print_update_banner
|
|
707
707
|
|
|
708
|
-
|
|
708
|
+
print_update_banner()
|
|
709
709
|
|
|
710
710
|
welcome_info = [
|
|
711
711
|
WelcomeInfoItem(
|
|
@@ -18,6 +18,11 @@ class LazySubcommandGroup(typer.core.TyperGroup):
|
|
|
18
18
|
"export": ("pythinker_code.cli.export", "cli", "Export session data."),
|
|
19
19
|
"mcp": ("pythinker_code.cli.mcp", "cli", "Manage MCP server configurations."),
|
|
20
20
|
"plugin": ("pythinker_code.cli.plugin", "cli", "Manage plugins."),
|
|
21
|
+
"update": (
|
|
22
|
+
"pythinker_code.cli.update",
|
|
23
|
+
"cli",
|
|
24
|
+
"Check for and install Pythinker CLI updates.",
|
|
25
|
+
),
|
|
21
26
|
"vis": ("pythinker_code.cli.vis", "cli", "Run Pythinker Agent Tracing Visualizer."),
|
|
22
27
|
"web": ("pythinker_code.cli.web", "cli", "Run Pythinker CLI web interface."),
|
|
23
28
|
}
|
|
@@ -26,6 +31,7 @@ class LazySubcommandGroup(typer.core.TyperGroup):
|
|
|
26
31
|
"export",
|
|
27
32
|
"mcp",
|
|
28
33
|
"plugin",
|
|
34
|
+
"update",
|
|
29
35
|
"vis",
|
|
30
36
|
"web",
|
|
31
37
|
)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import asyncio
|
|
4
|
+
from typing import Annotated
|
|
5
|
+
|
|
6
|
+
import typer
|
|
7
|
+
|
|
8
|
+
cli = typer.Typer(help="Check for and install Pythinker CLI updates.")
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
@cli.callback(invoke_without_command=True)
|
|
12
|
+
def update(
|
|
13
|
+
check_only: Annotated[
|
|
14
|
+
bool,
|
|
15
|
+
typer.Option(
|
|
16
|
+
"--check",
|
|
17
|
+
help="Only check whether an update is available; don't install.",
|
|
18
|
+
),
|
|
19
|
+
] = False,
|
|
20
|
+
):
|
|
21
|
+
"""Check for and install Pythinker CLI updates."""
|
|
22
|
+
from pythinker_code.ui.shell.update import UpdateResult, do_update
|
|
23
|
+
|
|
24
|
+
result = asyncio.run(do_update(print=True, check_only=check_only))
|
|
25
|
+
if result in (UpdateResult.FAILED, UpdateResult.UNSUPPORTED):
|
|
26
|
+
raise typer.Exit(1)
|
|
@@ -175,6 +175,20 @@ class MCPClientConfig(BaseModel):
|
|
|
175
175
|
"""Timeout for tool calls in milliseconds."""
|
|
176
176
|
|
|
177
177
|
|
|
178
|
+
class TUIConfig(BaseModel):
|
|
179
|
+
"""TUI rendering style configuration."""
|
|
180
|
+
|
|
181
|
+
style: Literal["pythinker", "card"] = Field(
|
|
182
|
+
default="card",
|
|
183
|
+
description=(
|
|
184
|
+
"TUI rendering style. 'card' (default) uses highlighted user "
|
|
185
|
+
"messages and bordered tool cards. 'pythinker' keeps the legacy "
|
|
186
|
+
"worklog-based rendering. Override at runtime with the env var "
|
|
187
|
+
"PYTHINKER_TUI_STYLE=pythinker."
|
|
188
|
+
),
|
|
189
|
+
)
|
|
190
|
+
|
|
191
|
+
|
|
178
192
|
class MCPConfig(BaseModel):
|
|
179
193
|
"""MCP configuration."""
|
|
180
194
|
|
|
@@ -238,6 +252,7 @@ class Config(BaseModel):
|
|
|
238
252
|
)
|
|
239
253
|
services: Services = Field(default_factory=Services, description="Services configuration")
|
|
240
254
|
mcp: MCPConfig = Field(default_factory=MCPConfig, description="MCP configuration")
|
|
255
|
+
tui: TUIConfig = Field(default_factory=TUIConfig, description="TUI rendering configuration")
|
|
241
256
|
hooks: list[HookDef] = Field(default_factory=list, description="Hook definitions") # pyright: ignore[reportUnknownVariableType]
|
|
242
257
|
merge_all_available_skills: bool = Field(
|
|
243
258
|
default=True,
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
"""In-process event bus.
|
|
2
|
+
|
|
3
|
+
. A
|
|
4
|
+
minimal pub/sub primitive that extension/plugin code can use to broadcast
|
|
5
|
+
state changes (assistant message, tool call started/ended, model changed,
|
|
6
|
+
etc.) without holding direct references to listeners.
|
|
7
|
+
|
|
8
|
+
Handlers may be sync or async. Async handlers are scheduled on the running
|
|
9
|
+
event loop; if no loop is running they're executed via ``asyncio.run``
|
|
10
|
+
(useful in tests). Exceptions in any handler are logged and swallowed so a
|
|
11
|
+
broken extension can't take down the host.
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
from __future__ import annotations
|
|
15
|
+
|
|
16
|
+
import asyncio
|
|
17
|
+
import inspect
|
|
18
|
+
from collections.abc import Callable
|
|
19
|
+
from typing import Any
|
|
20
|
+
|
|
21
|
+
from pythinker_code.utils.logging import logger
|
|
22
|
+
|
|
23
|
+
__all__ = [
|
|
24
|
+
"EventBus",
|
|
25
|
+
"EventHandler",
|
|
26
|
+
"create_event_bus",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
EventHandler = Callable[[Any], Any]
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
class EventBus:
|
|
34
|
+
"""Channel-keyed pub/sub.
|
|
35
|
+
|
|
36
|
+
Use :func:`create_event_bus` rather than constructing directly — that
|
|
37
|
+
keeps the constructor signature private and matches Pythinker's factory.
|
|
38
|
+
"""
|
|
39
|
+
|
|
40
|
+
def __init__(self) -> None:
|
|
41
|
+
self._handlers: dict[str, list[EventHandler]] = {}
|
|
42
|
+
|
|
43
|
+
def emit(self, channel: str, data: Any = None) -> None:
|
|
44
|
+
"""Fire *data* on *channel*. Handlers run sequentially; failures log."""
|
|
45
|
+
for handler in list(self._handlers.get(channel, ())):
|
|
46
|
+
self._dispatch(channel, handler, data)
|
|
47
|
+
|
|
48
|
+
def on(self, channel: str, handler: EventHandler) -> Callable[[], None]:
|
|
49
|
+
"""Subscribe *handler* to *channel*. Returns an unsubscribe fn."""
|
|
50
|
+
self._handlers.setdefault(channel, []).append(handler)
|
|
51
|
+
|
|
52
|
+
def _off() -> None:
|
|
53
|
+
handlers = self._handlers.get(channel)
|
|
54
|
+
if not handlers:
|
|
55
|
+
return
|
|
56
|
+
try:
|
|
57
|
+
handlers.remove(handler)
|
|
58
|
+
except ValueError:
|
|
59
|
+
return
|
|
60
|
+
if not handlers:
|
|
61
|
+
self._handlers.pop(channel, None)
|
|
62
|
+
|
|
63
|
+
return _off
|
|
64
|
+
|
|
65
|
+
def clear(self) -> None:
|
|
66
|
+
"""Remove every handler on every channel. Intended for tests."""
|
|
67
|
+
self._handlers.clear()
|
|
68
|
+
|
|
69
|
+
# ----------------------------------------------------------------------
|
|
70
|
+
|
|
71
|
+
def _dispatch(self, channel: str, handler: EventHandler, data: Any) -> None:
|
|
72
|
+
try:
|
|
73
|
+
result = handler(data)
|
|
74
|
+
except Exception: # noqa: BLE001 — extension must not crash host
|
|
75
|
+
logger.exception("Event handler error on channel '{channel}'", channel=channel)
|
|
76
|
+
return
|
|
77
|
+
if inspect.iscoroutine(result):
|
|
78
|
+
self._schedule_coro(channel, result)
|
|
79
|
+
|
|
80
|
+
@staticmethod
|
|
81
|
+
def _schedule_coro(channel: str, coro: Any) -> None:
|
|
82
|
+
async def _runner() -> None:
|
|
83
|
+
try:
|
|
84
|
+
await coro
|
|
85
|
+
except Exception: # noqa: BLE001
|
|
86
|
+
logger.exception("Async event handler error on '{channel}'", channel=channel)
|
|
87
|
+
|
|
88
|
+
try:
|
|
89
|
+
loop = asyncio.get_running_loop()
|
|
90
|
+
except RuntimeError:
|
|
91
|
+
# No running loop — execute inline. Mostly hit in tests.
|
|
92
|
+
try:
|
|
93
|
+
asyncio.run(_runner())
|
|
94
|
+
except Exception: # noqa: BLE001
|
|
95
|
+
logger.exception("Failed to run async handler for '{channel}'", channel=channel)
|
|
96
|
+
return
|
|
97
|
+
loop.create_task(_runner())
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
def create_event_bus() -> EventBus:
|
|
101
|
+
"""Factory mirroring the ``createEventBus()``."""
|
|
102
|
+
return EventBus()
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
"""In-process extension API.
|
|
2
|
+
|
|
3
|
+
This module exposes Pythinker's extension hooks for the registries that
|
|
4
|
+
already exist in the codebase:
|
|
5
|
+
|
|
6
|
+
* tool renderers — :func:`register_tool_renderer`
|
|
7
|
+
* keybindings — :func:`register_keybinding`
|
|
8
|
+
* footer status badges — :func:`register_footer_status`
|
|
9
|
+
* event handlers — :func:`register_event_handler`
|
|
10
|
+
* lifecycle hooks — :func:`register_extension`
|
|
11
|
+
|
|
12
|
+
The footer status registry is a thin placeholder for the day the card-style
|
|
13
|
+
:class:`FooterState` is wired into the live prompt; until then it just
|
|
14
|
+
stores entries that callers can read out.
|
|
15
|
+
|
|
16
|
+
the ``register_command`` overlaps with Pythinker's existing
|
|
17
|
+
``SlashCommandRegistry`` — extensions should use that registry directly.
|
|
18
|
+
|
|
19
|
+
Extensions are registered with::
|
|
20
|
+
|
|
21
|
+
from pythinker_code.extensions import register_extension
|
|
22
|
+
|
|
23
|
+
def setup(ctx):
|
|
24
|
+
ctx.register_tool_renderer(my_renderer)
|
|
25
|
+
ctx.register_keybinding("app.tools.expand", "alt+e")
|
|
26
|
+
ctx.bus.on("assistant.message", on_assistant_message)
|
|
27
|
+
|
|
28
|
+
register_extension(name="my-ext", setup=setup)
|
|
29
|
+
|
|
30
|
+
The host calls :func:`run_pending_extensions` once at startup; setup
|
|
31
|
+
errors are logged but do not crash the host.
|
|
32
|
+
"""
|
|
33
|
+
|
|
34
|
+
from __future__ import annotations
|
|
35
|
+
|
|
36
|
+
from collections.abc import Callable
|
|
37
|
+
from dataclasses import dataclass, field
|
|
38
|
+
|
|
39
|
+
from pythinker_code.events import EventBus, EventHandler, create_event_bus
|
|
40
|
+
from pythinker_code.ui.shell.keymap import register_keybinding as _register_keybinding
|
|
41
|
+
from pythinker_code.ui.shell.tool_renderers import (
|
|
42
|
+
ToolRenderDefinition,
|
|
43
|
+
)
|
|
44
|
+
from pythinker_code.ui.shell.tool_renderers import (
|
|
45
|
+
register_tool_renderer as _register_tool_renderer,
|
|
46
|
+
)
|
|
47
|
+
from pythinker_code.utils.logging import logger
|
|
48
|
+
|
|
49
|
+
__all__ = [
|
|
50
|
+
"ExtensionContext",
|
|
51
|
+
"ExtensionSetup",
|
|
52
|
+
"footer_statuses",
|
|
53
|
+
"register_extension",
|
|
54
|
+
"registered_extensions",
|
|
55
|
+
"run_pending_extensions",
|
|
56
|
+
"shared_event_bus",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
_GLOBAL_BUS: EventBus = create_event_bus()
|
|
61
|
+
"""Process-wide bus extensions write to. Independent from any per-session
|
|
62
|
+
event streams to keep the surface stable."""
|
|
63
|
+
|
|
64
|
+
_FOOTER_STATUSES: dict[str, str] = {}
|
|
65
|
+
"""Read-only-from-outside map of extension id → status text."""
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
def shared_event_bus() -> EventBus:
|
|
69
|
+
"""Return the global :class:`EventBus` extensions subscribe to."""
|
|
70
|
+
return _GLOBAL_BUS
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
def footer_statuses() -> dict[str, str]:
|
|
74
|
+
"""Return a copy of the current extension footer-status map."""
|
|
75
|
+
return dict(_FOOTER_STATUSES)
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
@dataclass(slots=True)
|
|
79
|
+
class ExtensionContext:
|
|
80
|
+
"""Handle passed into an extension's setup function.
|
|
81
|
+
|
|
82
|
+
Each method delegates to the appropriate global registry. Method names
|
|
83
|
+
mirror the ``register*`` API surface so porting an extension between
|
|
84
|
+
runtimes is mostly mechanical.
|
|
85
|
+
"""
|
|
86
|
+
|
|
87
|
+
name: str
|
|
88
|
+
bus: EventBus = field(default_factory=lambda: _GLOBAL_BUS)
|
|
89
|
+
|
|
90
|
+
def register_tool_renderer(self, definition: ToolRenderDefinition) -> None:
|
|
91
|
+
_register_tool_renderer(definition)
|
|
92
|
+
|
|
93
|
+
def register_keybinding(self, semantic_id: str, *keys: str) -> None:
|
|
94
|
+
_register_keybinding(semantic_id, *keys)
|
|
95
|
+
|
|
96
|
+
def register_footer_status(self, key: str, text: str) -> None:
|
|
97
|
+
"""Add or replace an extension's footer status badge.
|
|
98
|
+
|
|
99
|
+
``key`` is normally the extension name. Pass an empty *text* to
|
|
100
|
+
clear it. The footer reads :func:`footer_statuses` when rendering.
|
|
101
|
+
"""
|
|
102
|
+
if not text:
|
|
103
|
+
_FOOTER_STATUSES.pop(key, None)
|
|
104
|
+
return
|
|
105
|
+
_FOOTER_STATUSES[key] = text
|
|
106
|
+
|
|
107
|
+
def register_event_handler(self, channel: str, handler: EventHandler) -> Callable[[], None]:
|
|
108
|
+
return self.bus.on(channel, handler)
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
ExtensionSetup = Callable[[ExtensionContext], None]
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
@dataclass(frozen=True, slots=True)
|
|
115
|
+
class _Extension:
|
|
116
|
+
name: str
|
|
117
|
+
setup: ExtensionSetup
|
|
118
|
+
started: bool = False
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
_PENDING: list[_Extension] = []
|
|
122
|
+
_LOADED: list[str] = []
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
def register_extension(*, name: str, setup: ExtensionSetup) -> None:
|
|
126
|
+
"""Queue *setup* to run when :func:`run_pending_extensions` is next called."""
|
|
127
|
+
_PENDING.append(_Extension(name=name, setup=setup))
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
def run_pending_extensions() -> list[str]:
|
|
131
|
+
"""Execute every pending extension's setup. Returns the names that ran.
|
|
132
|
+
|
|
133
|
+
Errors are logged and the rest of the queue continues — the same behavior.
|
|
134
|
+
"""
|
|
135
|
+
started: list[str] = []
|
|
136
|
+
while _PENDING:
|
|
137
|
+
ext = _PENDING.pop(0)
|
|
138
|
+
ctx = ExtensionContext(name=ext.name)
|
|
139
|
+
try:
|
|
140
|
+
ext.setup(ctx)
|
|
141
|
+
except Exception: # noqa: BLE001 — extension error must not crash host
|
|
142
|
+
logger.exception("Extension '{name}' setup failed", name=ext.name)
|
|
143
|
+
continue
|
|
144
|
+
_LOADED.append(ext.name)
|
|
145
|
+
started.append(ext.name)
|
|
146
|
+
return started
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
def registered_extensions() -> list[str]:
|
|
150
|
+
"""Snapshot of extension names that have been successfully started."""
|
|
151
|
+
return list(_LOADED)
|
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from dataclasses import dataclass
|
|
4
|
+
from typing import Literal
|
|
5
|
+
|
|
6
|
+
from pythinker_host.path import HostPath
|
|
7
|
+
|
|
8
|
+
from pythinker_code.utils.frontmatter import parse_frontmatter, strip_frontmatter
|
|
9
|
+
from pythinker_code.utils.logging import logger
|
|
10
|
+
from pythinker_code.utils.path import find_project_root
|
|
11
|
+
|
|
12
|
+
PromptTemplateScope = Literal["project", "user"]
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
@dataclass(frozen=True, slots=True)
|
|
16
|
+
class PromptTemplate:
|
|
17
|
+
"""A markdown prompt template exposed as a slash command."""
|
|
18
|
+
|
|
19
|
+
name: str
|
|
20
|
+
description: str
|
|
21
|
+
content: str
|
|
22
|
+
file_path: HostPath
|
|
23
|
+
scope: PromptTemplateScope
|
|
24
|
+
argument_hint: str | None = None
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
def parse_command_args(args_string: str) -> list[str]:
|
|
28
|
+
"""Parse template arguments using simple shell quoting."""
|
|
29
|
+
args: list[str] = []
|
|
30
|
+
current = ""
|
|
31
|
+
quote: str | None = None
|
|
32
|
+
|
|
33
|
+
for char in args_string:
|
|
34
|
+
if quote is not None:
|
|
35
|
+
if char == quote:
|
|
36
|
+
quote = None
|
|
37
|
+
else:
|
|
38
|
+
current += char
|
|
39
|
+
elif char in {'"', "'"}:
|
|
40
|
+
quote = char
|
|
41
|
+
elif char in {" ", "\t"}:
|
|
42
|
+
if current:
|
|
43
|
+
args.append(current)
|
|
44
|
+
current = ""
|
|
45
|
+
else:
|
|
46
|
+
current += char
|
|
47
|
+
|
|
48
|
+
if current:
|
|
49
|
+
args.append(current)
|
|
50
|
+
return args
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
def substitute_args(content: str, args: list[str]) -> str:
|
|
54
|
+
"""Substitute prompt-template placeholders.
|
|
55
|
+
|
|
56
|
+
Supports ``$1``, ``$2``, ``$@``, ``$ARGUMENTS``, ``${@:N}``, and
|
|
57
|
+
``${@:N:L}``. Replacement is one-pass; inserted argument values are not
|
|
58
|
+
recursively substituted.
|
|
59
|
+
"""
|
|
60
|
+
import re
|
|
61
|
+
|
|
62
|
+
def positional(match: re.Match[str]) -> str:
|
|
63
|
+
index = int(match.group(1)) - 1
|
|
64
|
+
return args[index] if 0 <= index < len(args) else ""
|
|
65
|
+
|
|
66
|
+
result = re.sub(r"\$(\d+)", positional, content)
|
|
67
|
+
|
|
68
|
+
def sliced(match: re.Match[str]) -> str:
|
|
69
|
+
start = max(0, int(match.group(1)) - 1)
|
|
70
|
+
length_group = match.group(2)
|
|
71
|
+
if length_group is None:
|
|
72
|
+
return " ".join(args[start:])
|
|
73
|
+
length = int(length_group)
|
|
74
|
+
return " ".join(args[start : start + length])
|
|
75
|
+
|
|
76
|
+
result = re.sub(r"\$\{@:(\d+)(?::(\d+))?\}", sliced, result)
|
|
77
|
+
all_args = " ".join(args)
|
|
78
|
+
result = result.replace("$ARGUMENTS", all_args)
|
|
79
|
+
result = result.replace("$@", all_args)
|
|
80
|
+
return result
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
def expand_prompt_template(template: PromptTemplate, args_string: str) -> str:
|
|
84
|
+
"""Expand *template* with a raw slash-command argument string."""
|
|
85
|
+
return substitute_args(template.content, parse_command_args(args_string))
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
async def discover_prompt_templates(work_dir: HostPath) -> dict[str, PromptTemplate]:
|
|
89
|
+
"""Discover project/user prompt templates.
|
|
90
|
+
|
|
91
|
+
Project templates win over user templates.
|
|
92
|
+
"""
|
|
93
|
+
roots: list[tuple[PromptTemplateScope, HostPath]] = []
|
|
94
|
+
project_root = await find_project_root(work_dir)
|
|
95
|
+
roots.extend(
|
|
96
|
+
[
|
|
97
|
+
("project", project_root / ".pythinker" / "prompts"),
|
|
98
|
+
("user", HostPath.home() / ".pythinker" / "prompts"),
|
|
99
|
+
]
|
|
100
|
+
)
|
|
101
|
+
|
|
102
|
+
templates: dict[str, PromptTemplate] = {}
|
|
103
|
+
for scope, root in roots:
|
|
104
|
+
for template in await _load_templates_from_dir(root, scope=scope):
|
|
105
|
+
templates.setdefault(template.name, template)
|
|
106
|
+
return dict(sorted(templates.items()))
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
async def _load_templates_from_dir(
|
|
110
|
+
directory: HostPath,
|
|
111
|
+
*,
|
|
112
|
+
scope: PromptTemplateScope,
|
|
113
|
+
) -> list[PromptTemplate]:
|
|
114
|
+
try:
|
|
115
|
+
if not await directory.is_dir():
|
|
116
|
+
return []
|
|
117
|
+
except OSError as exc:
|
|
118
|
+
logger.debug("Cannot stat prompt templates dir {path}: {error}", path=directory, error=exc)
|
|
119
|
+
return []
|
|
120
|
+
|
|
121
|
+
templates: list[PromptTemplate] = []
|
|
122
|
+
try:
|
|
123
|
+
async for entry in directory.iterdir():
|
|
124
|
+
try:
|
|
125
|
+
if await entry.is_dir() or not entry.name.lower().endswith(".md"):
|
|
126
|
+
continue
|
|
127
|
+
content = await entry.read_text(encoding="utf-8")
|
|
128
|
+
except OSError as exc:
|
|
129
|
+
logger.info(
|
|
130
|
+
"Skipping unreadable prompt template {path}: {error}",
|
|
131
|
+
path=entry,
|
|
132
|
+
error=exc,
|
|
133
|
+
)
|
|
134
|
+
continue
|
|
135
|
+
try:
|
|
136
|
+
templates.append(parse_prompt_template_text(content, file_path=entry, scope=scope))
|
|
137
|
+
except Exception as exc:
|
|
138
|
+
logger.info(
|
|
139
|
+
"Skipping invalid prompt template {path}: {error}",
|
|
140
|
+
path=entry,
|
|
141
|
+
error=exc,
|
|
142
|
+
)
|
|
143
|
+
except OSError as exc:
|
|
144
|
+
logger.warning(
|
|
145
|
+
"Failed to iterate prompt templates dir {path}: {error}",
|
|
146
|
+
path=directory,
|
|
147
|
+
error=exc,
|
|
148
|
+
)
|
|
149
|
+
return sorted(templates, key=lambda t: t.name)
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
def parse_prompt_template_text(
|
|
153
|
+
text: str,
|
|
154
|
+
*,
|
|
155
|
+
file_path: HostPath,
|
|
156
|
+
scope: PromptTemplateScope,
|
|
157
|
+
) -> PromptTemplate:
|
|
158
|
+
"""Parse a markdown prompt template file."""
|
|
159
|
+
frontmatter = parse_frontmatter(text) or {}
|
|
160
|
+
body = strip_frontmatter(text).strip()
|
|
161
|
+
name = file_path.name.rsplit(".", 1)[0]
|
|
162
|
+
description = str(frontmatter.get("description") or "").strip()
|
|
163
|
+
if not description:
|
|
164
|
+
description = _first_body_line(body)
|
|
165
|
+
argument_hint = frontmatter.get("argument-hint")
|
|
166
|
+
return PromptTemplate(
|
|
167
|
+
name=name,
|
|
168
|
+
description=description,
|
|
169
|
+
argument_hint=str(argument_hint).strip() if argument_hint else None,
|
|
170
|
+
content=body,
|
|
171
|
+
file_path=file_path,
|
|
172
|
+
scope=scope,
|
|
173
|
+
)
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
def _first_body_line(body: str) -> str:
|
|
177
|
+
for line in body.splitlines():
|
|
178
|
+
stripped = line.strip()
|
|
179
|
+
if stripped:
|
|
180
|
+
return stripped[:60] + ("..." if len(stripped) > 60 else "")
|
|
181
|
+
return "Prompt template"
|