pythinker-code 2.0.0__tar.gz → 2.1.1__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.1}/PKG-INFO +46 -16
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/README.md +42 -12
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/pyproject.toml +4 -2
- pythinker_code-2.1.1/src/pythinker_code/CHANGELOG.md +44 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/__main__.py +1 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/app.py +2 -2
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/auth/oauth.py +2 -2
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/cli/_lazy_group.py +6 -0
- pythinker_code-2.1.1/src/pythinker_code/cli/update.py +26 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/config.py +15 -0
- pythinker_code-2.1.1/src/pythinker_code/events.py +102 -0
- pythinker_code-2.1.1/src/pythinker_code/extensions.py +151 -0
- pythinker_code-2.1.1/src/pythinker_code/prompt_templates.py +181 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/soul/agent.py +8 -1
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/soul/pythinkersoul.py +75 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/__init__.py +1 -1
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/agent/description.md +17 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/__init__.py +27 -33
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/components/__init__.py +106 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/components/base.py +25 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/components/bash_execution.py +134 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/components/bordered_loader.py +60 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/components/diff.py +307 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/components/footer.py +231 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/components/key_hints.py +27 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/components/messages.py +146 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/components/render_utils.py +145 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/components/settings_list.py +369 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/components/special_messages.py +125 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/components/tool_execution.py +228 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/echo.py +30 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/keymap.py +84 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/oauth.py +24 -30
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/placeholders.py +56 -9
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/prompt.py +170 -55
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/selector.py +364 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/selectors/__init__.py +38 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/selectors/extension.py +37 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/selectors/oauth.py +63 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/selectors/settings.py +349 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/selectors/show_images.py +29 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/selectors/theme.py +28 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/selectors/thinking.py +42 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/slash.py +253 -20
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/tool_renderers/__init__.py +192 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/tool_renderers/_render_utils.py +122 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/tool_renderers/agent.py +135 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/tool_renderers/ask_user.py +93 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/tool_renderers/background.py +139 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/tool_renderers/bash.py +103 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/tool_renderers/edit.py +116 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/tool_renderers/find.py +80 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/tool_renderers/generic.py +60 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/tool_renderers/grep.py +97 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/tool_renderers/plan.py +98 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/tool_renderers/read.py +98 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/tool_renderers/think.py +66 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/tool_renderers/todo.py +114 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/tool_renderers/web.py +127 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/tool_renderers/write.py +99 -0
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/update.py +199 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/visualize/_blocks.py +193 -123
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/visualize/_live_view.py +7 -10
- pythinker_code-2.1.1/src/pythinker_code/ui/shell/visualize/_worklog.py +228 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/theme.py +153 -6
- pythinker_code-2.1.1/src/pythinker_code/ui/tui_config.py +82 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/logging.py +2 -2
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/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.1/src/pythinker_code/web/static/assets/_baseUniq-B6kEg1q7.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/arc-DkMjLpYa.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/arc-CN7FOP6S.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/architectureDiagram-VXUJARFQ-CHWVaGo9.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/architectureDiagram-VXUJARFQ-ClisPTgX.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/blockDiagram-VD42YOAC-DzdKe497.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/blockDiagram-VD42YOAC-CY97QTLz.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/c4Diagram-YG6GDRKO-D84Blotg.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/c4Diagram-YG6GDRKO-Bb2YShcj.js +1 -1
- pythinker_code-2.1.1/src/pythinker_code/web/static/assets/channel-DRtRjHPc.js +1 -0
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/chunk-4BX2VUAB-C9w8wleE.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/chunk-4BX2VUAB-Cn7O4ACC.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/chunk-55IACEB6-YlYJ8HnF.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/chunk-55IACEB6-C2i1_6Qq.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/chunk-B4BG7PRW-Bwtz_AHU.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/chunk-B4BG7PRW-pkQqozVM.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/chunk-DI55MBZ5-BbEHkl8h.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/chunk-DI55MBZ5-BtsmRttZ.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/chunk-FMBD7UC4-BKPbvjLC.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/chunk-FMBD7UC4-sa3J7Qz-.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/chunk-QN33PNHL-D73dQvKf.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/chunk-QN33PNHL-wBKjjlfv.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/chunk-QZHKN3VN-zGiLKes_.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/chunk-QZHKN3VN-B9ZmhIVW.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/chunk-TZMSLE5B-LHJCi2fy.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/chunk-TZMSLE5B-BH1lCtkC.js +1 -1
- pythinker_code-2.1.1/src/pythinker_code/web/static/assets/classDiagram-2ON5EDUG-Bkzu7VqR.js +1 -0
- pythinker_code-2.1.1/src/pythinker_code/web/static/assets/classDiagram-v2-WZHVMYZB-Bkzu7VqR.js +1 -0
- pythinker_code-2.1.1/src/pythinker_code/web/static/assets/clone-DeletRdB.js +1 -0
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/code-block-IT6T5CEO-NtKViZGl.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/code-block-IT6T5CEO-Jgw68uxj.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/cose-bilkent-S5V4N54A-DialjZpd.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/cose-bilkent-S5V4N54A-CYlNI_07.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/cytoscape.esm-C_Fzpdck.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/cytoscape.esm-wTjQRg5I.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/dagre-6UL2VRFP-DfuvkZZ7.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/dagre-6UL2VRFP-mMHxPvrB.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/diagram-PSM6KHXK-DLGctX3v.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/diagram-PSM6KHXK-TXsPUrSf.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/diagram-QEK2KX5R-DnxN6S0F.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/diagram-QEK2KX5R-CIWcvb-1.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/diagram-S2PKOQOG-Caq_Set9.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/diagram-S2PKOQOG-BwD6I8_j.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/erDiagram-Q2GNP2WA-BgTfALoK.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/erDiagram-Q2GNP2WA-lcyugZLQ.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/flowDiagram-NV44I4VS-QjW_fnGi.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/flowDiagram-NV44I4VS-DMpaNPYS.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/ganttDiagram-JELNMOA3-fqi8JFof.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/ganttDiagram-JELNMOA3-DihQc3Hv.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/gitGraphDiagram-NY62KEGX-i7o6VQ8x.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/gitGraphDiagram-NY62KEGX-CIfSkIhx.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/graph-C0vZK2pT.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/graph-BCfLiEN9.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/index-DdIkp80K.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/index-BAmMLCDG.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/index-BYCCk6-K.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/index-BUs3F_49.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/index-Cpy4G3uJ.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/index-vJoNulYL.js +2 -2
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/infoDiagram-WHAUD3N6-BMPpeZSM.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/infoDiagram-WHAUD3N6-BJdDV1wI.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/journeyDiagram-XKPGCS4Q-DAM7gngo.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/journeyDiagram-XKPGCS4Q-BrqdPL0m.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/kanban-definition-3W4ZIXB7-ChpBpV0k.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/kanban-definition-3W4ZIXB7-DvJVU-xY.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/layout-C3Jp1gKO.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/layout-t1QCyNHq.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/linear-BGHtL1N4.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/linear-B-zLZ7Gg.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/mermaid-VLURNSYL-C_HW6koB.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/mermaid-VLURNSYL-CCZc0zIj.js +7 -7
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/mermaid.core-CnT4VrPC.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/mermaid.core-BDbYWWEg.js +5 -5
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/min-Dn5VRVmX.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/min-BL7HQGG6.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/mindmap-definition-VGOIOE7T-x8EwhfIt.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/mindmap-definition-VGOIOE7T-CvSIsJJb.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/pieDiagram-ADFJNKIX-DgxBKGz2.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/pieDiagram-ADFJNKIX-DVLzPT36.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/quadrantDiagram-AYHSOK5B-DSpe_dqk.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/quadrantDiagram-AYHSOK5B-CHQse--F.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/requirementDiagram-UZGBJVZJ-8o9hozL-.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/requirementDiagram-UZGBJVZJ-BOz8a5Jc.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/sankeyDiagram-TZEHDZUN-BLOSUixH.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/sankeyDiagram-TZEHDZUN-DJbrHqig.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/sequenceDiagram-WL72ISMW-6F2G8JTU.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/sequenceDiagram-WL72ISMW-DqUag2Xy.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/stateDiagram-FKZM4ZOC-DP8xP0iJ.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/stateDiagram-FKZM4ZOC-CjdepFvv.js +1 -1
- pythinker_code-2.1.1/src/pythinker_code/web/static/assets/stateDiagram-v2-4FDKWEC3-frM5-ZiA.js +1 -0
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/timeline-definition-IT6M3QCI-DMgruDfK.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/timeline-definition-IT6M3QCI-NaSQxWT2.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/treemap-KMMF4GRG-Bo9ZkrAK.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/treemap-KMMF4GRG-CaQ55IAS.js +1 -1
- pythinker_code-2.0.0/src/pythinker_code/web/static/assets/xychartDiagram-PRI3JC2R-GeF2johi.js → pythinker_code-2.1.1/src/pythinker_code/web/static/assets/xychartDiagram-PRI3JC2R-CFnN6cjR.js +1 -1
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/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.1}/LICENSE +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/NOTICE +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/acp/AGENTS.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/acp/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/acp/convert.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/acp/host.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/acp/mcp.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/acp/server.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/acp/session.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/acp/tools.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/acp/types.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/acp/version.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/agents/default/agent.yaml +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/agents/default/coder.yaml +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/agents/default/explore.yaml +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/agents/default/plan.yaml +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/agents/default/system.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/agents/okabe/agent.yaml +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/agentspec.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/approval_runtime/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/approval_runtime/models.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/approval_runtime/runtime.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/auth/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/auth/anthropic_direct.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/auth/deepseek.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/auth/lm_studio.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/auth/minimax.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/auth/ollama.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/auth/openai.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/auth/opencode_go.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/auth/openrouter.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/auth/platforms.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/background/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/background/agent_runner.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/background/ids.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/background/manager.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/background/models.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/background/store.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/background/summary.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/background/worker.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/cli/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/cli/__main__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/cli/export.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/cli/info.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/cli/mcp.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/cli/plugin.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/cli/toad.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/cli/vis.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/cli/web.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/constant.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/exception.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/hooks/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/hooks/config.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/hooks/engine.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/hooks/events.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/hooks/runner.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/llm.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/metadata.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/notifications/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/notifications/llm.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/notifications/manager.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/notifications/models.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/notifications/notifier.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/notifications/store.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/notifications/wire.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/plugin/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/plugin/manager.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/plugin/tool.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/prompts/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/prompts/compact.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/prompts/init.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/py.typed +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/session.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/session_fork.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/session_state.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/share.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/skill/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/skill/flow/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/skill/flow/d2.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/skill/flow/mermaid.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/skills/pythinker-code-help/SKILL.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/skills/skill-creator/SKILL.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/soul/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/soul/approval.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/soul/btw.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/soul/compaction.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/soul/context.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/soul/denwarenji.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/soul/dynamic_injection.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/soul/dynamic_injections/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/soul/dynamic_injections/auto_mode.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/soul/dynamic_injections/plan_mode.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/soul/message.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/soul/slash.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/soul/toolset.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/subagents/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/subagents/builder.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/subagents/core.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/subagents/git_context.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/subagents/models.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/subagents/output.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/subagents/registry.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/subagents/runner.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/subagents/store.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/telemetry/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/telemetry/config.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/telemetry/crash.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/telemetry/metrics.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/telemetry/otel.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/telemetry/sentry.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/telemetry/sink.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/AGENTS.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/agent/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/ask_user/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/ask_user/description.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/background/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/background/list.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/background/output.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/background/stop.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/display.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/dmail/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/dmail/dmail.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/file/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/file/glob.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/file/glob.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/file/grep.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/file/grep_local.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/file/plan_mode.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/file/read.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/file/read.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/file/read_media.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/file/read_media.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/file/replace.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/file/replace.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/file/utils.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/file/write.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/file/write.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/plan/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/plan/description.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/plan/enter.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/plan/enter_description.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/plan/heroes.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/shell/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/shell/bash.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/shell/powershell.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/test.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/think/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/think/think.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/todo/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/todo/set_todo_list.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/utils.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/web/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/web/fetch.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/web/fetch.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/web/search.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/tools/web/search.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/acp/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/print/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/print/visualize.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/console.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/debug.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/export_import.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/keyboard.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/mcp_status.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/model_picker.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/replay.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/session_picker.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/setup.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/startup.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/task_browser.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/usage.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/usage_adapters/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/usage_adapters/anthropic_admin.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/usage_adapters/base.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/usage_adapters/deepseek.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/usage_adapters/minimax.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/usage_adapters/openai_admin.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/usage_adapters/openai_chatgpt.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/usage_adapters/opencode_go.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/usage_adapters/openrouter.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/usage_adapters/pythinker.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/usage_adapters/pythinker_ai.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/usage_render.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/visualize/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/visualize/_approval_panel.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/visualize/_btw_panel.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/visualize/_input_router.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/visualize/_interactive.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/ui/shell/visualize/_question_panel.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/usage_ratelimit_cache.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/aiohttp.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/aioqueue.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/broadcast.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/changelog.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/clipboard.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/datetime.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/diff.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/editor.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/environment.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/envvar.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/export.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/file_filter.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/frontmatter.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/io.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/media_tags.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/message.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/path.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/proctitle.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/proxy.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/pyinstaller.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/rich/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/rich/columns.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/rich/diff_render.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/rich/markdown_sample.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/rich/markdown_sample_short.md +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/rich/syntax.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/sensitive.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/server.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/signals.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/slashcmd.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/string.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/subprocess_env.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/term.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/utils/typing.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/vis/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/vis/api/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/vis/api/sessions.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/vis/api/statistics.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/vis/api/system.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/vis/app.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/vis/static/assets/highlighted-body-B3W2YXNL-D2MTYyJz.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/vis/static/assets/index-CezafTt_.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/vis/static/assets/index-DSRInNnm.css +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/vis/static/assets/inter-cyrillic-ext-wght-normal-BOeWTOD4.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/vis/static/assets/inter-cyrillic-wght-normal-DqGufNeO.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/vis/static/assets/inter-greek-ext-wght-normal-DlzME5K_.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/vis/static/assets/inter-greek-wght-normal-CkhJZR-_.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/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.1}/src/pythinker_code/vis/static/assets/inter-latin-wght-normal-Dx4kXJAl.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/vis/static/assets/inter-vietnamese-wght-normal-CBcvBZtf.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/vis/static/index.html +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/api/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/api/config.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/api/open_in.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/api/sessions.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/app.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/auth.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/models.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/runner/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/runner/messages.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/runner/process.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/runner/worker.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_AMS-Regular-BQhdFMY1.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_AMS-Regular-DMm9YOAa.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_AMS-Regular-DRggAlZN.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Caligraphic-Bold-ATXxdsX0.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Caligraphic-Bold-BEiXGLvX.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Caligraphic-Bold-Dq_IR9rO.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Caligraphic-Regular-CTRA-rTL.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Caligraphic-Regular-Di6jR-x-.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Caligraphic-Regular-wX97UBjC.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Fraktur-Bold-BdnERNNW.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Fraktur-Bold-BsDP51OF.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Fraktur-Bold-CL6g_b3V.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Fraktur-Regular-CB_wures.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Fraktur-Regular-CTYiF6lA.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Fraktur-Regular-Dxdc4cR9.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Main-Bold-Cx986IdX.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Main-Bold-Jm3AIy58.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Main-Bold-waoOVXN0.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Main-BoldItalic-DxDJ3AOS.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Main-BoldItalic-DzxPMmG6.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Main-BoldItalic-SpSLRI95.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Main-Italic-3WenGoN9.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Main-Italic-BMLOBm91.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Main-Italic-NWA7e6Wa.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Main-Regular-B22Nviop.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Main-Regular-Dr94JaBh.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Main-Regular-ypZvNtVU.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Math-BoldItalic-B3XSjfu4.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Math-BoldItalic-CZnvNsCZ.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Math-BoldItalic-iY-2wyZ7.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Math-Italic-DA0__PXp.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Math-Italic-flOr_0UB.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Math-Italic-t53AETM-.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_SansSerif-Bold-CFMepnvq.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_SansSerif-Bold-D1sUS0GD.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_SansSerif-Bold-DbIhKOiC.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_SansSerif-Italic-C3H0VqGB.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_SansSerif-Italic-DN2j7dab.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_SansSerif-Italic-YYjJ1zSn.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_SansSerif-Regular-BNo7hRIc.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_SansSerif-Regular-CS6fqUqJ.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_SansSerif-Regular-DDBCnlJ7.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Script-Regular-C5JkGWo-.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Script-Regular-D3wIWfF6.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Script-Regular-D5yQViql.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Size1-Regular-C195tn64.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Size1-Regular-Dbsnue_I.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Size1-Regular-mCD8mA8B.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Size2-Regular-B7gKUWhC.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Size2-Regular-Dy4dx90m.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Size2-Regular-oD1tc_U0.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Size3-Regular-CTq5MqoE.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Size3-Regular-DgpXs0kz.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Size4-Regular-BF-4gkZK.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Size4-Regular-DWFBv043.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Size4-Regular-Dl5lxZxV.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Typewriter-Regular-C0xS9mPB.woff +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Typewriter-Regular-CO6r4hn1.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/KaTeX_Typewriter-Regular-D3Ib7_Hf.ttf +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/abap-BdImnpbu.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/actionscript-3-CfeIJUat.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/ada-bCR0ucgS.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/andromeeda-C-Jbm3Hp.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/angular-html-CU67Zn6k.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/angular-ts-BwZT4LLn.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/apache-Pmp26Uib.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/apex-D8_7TLub.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/apl-dKokRX4l.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/applescript-Co6uUVPk.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/ara-BRHolxvo.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/asciidoc-Dv7Oe6Be.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/asm-D_Q5rh1f.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/astro-CbQHKStN.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/aurora-x-D-2ljcwZ.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/awk-DMzUqQB5.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/ayu-dark-CmMr59Fi.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/ballerina-BFfxhgS-.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/bat-BkioyH1T.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/beancount-k_qm7-4y.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/berry-uYugtg8r.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/bibtex-CHM0blh-.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/bicep-Bmn6On1c.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/blade-D4QpJJKB.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/bsl-BO_Y6i37.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/c-BIGW1oBm.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/c3-VCDPK7BO.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/cadence-Bv_4Rxtq.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/cairo-KRGpt6FW.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/catppuccin-frappe-DFWUc33u.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/catppuccin-latte-C9dUb6Cb.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/catppuccin-macchiato-DQyhUUbL.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/catppuccin-mocha-D87Tk5Gz.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/clarity-D53aC0YG.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/clojure-P80f7IUj.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/cmake-D1j8_8rp.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/cobol-nwyudZeR.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/codeowners-Bp6g37R7.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/codeql-DsOJ9woJ.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/coffee-Ch7k5sss.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/common-lisp-Cg-RD9OK.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/coq-DkFqJrB1.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/cpp-CofmeUqb.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/crystal-tKQVLTB8.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/csharp-K5feNrxe.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/css-DPfMkruS.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/csv-fuZLfV_i.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/cue-D82EKSYY.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/cypher-COkxafJQ.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/d-85-TOEBH.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/dark-plus-C3mMm8J8.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/dart-CF10PKvl.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/dax-CEL-wOlO.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/defaultLocale-DX6XiGOO.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/desktop-BmXAJ9_W.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/diff-D97Zzqfu.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/docker-BcOcwvcX.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/dotenv-Da5cRb03.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/dracula-BzJJZx-M.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/dracula-soft-BXkSAIEj.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/dream-maker-BtqSS_iP.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/edge-BkV0erSs.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/elixir-CDX3lj18.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/elm-DbKCFpqz.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/emacs-lisp-C9XAeP06.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/erb-BOJIQeun.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/erlang-DsQrWhSR.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/everforest-dark-BgDCqdQA.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/everforest-light-C8M2exoo.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/fennel-BYunw83y.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/fish-BvzEVeQv.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/fluent-C4IJs8-o.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/fortran-fixed-form-CkoXwp7k.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/fortran-free-form-BxgE0vQu.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/fsharp-CXgrBDvD.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/gdresource-B7Tvp0Sc.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/gdscript-DTMYz4Jt.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/gdshader-DkwncUOv.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/genie-D0YGMca9.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/gherkin-DyxjwDmM.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/git-commit-F4YmCXRG.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/git-rebase-r7XF79zn.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/github-dark-DHJKELXO.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/github-dark-default-Cuk6v7N8.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/github-dark-dimmed-DH5Ifo-i.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/github-dark-high-contrast-E3gJ1_iC.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/github-light-DAi9KRSo.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/github-light-default-D7oLnXFd.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/github-light-high-contrast-BfjtVDDH.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/gleam-BspZqrRM.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/glimmer-js-Rg0-pVw9.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/glimmer-ts-U6CK756n.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/glsl-DplSGwfg.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/gn-n2N0HUVH.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/gnuplot-DdkO51Og.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/go-Dn2_MT6a.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/graphql-ChdNCCLP.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/groovy-gcz8RCvz.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/gruvbox-dark-hard-CFHQjOhq.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/gruvbox-dark-medium-GsRaNv29.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/gruvbox-dark-soft-CVdnzihN.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/gruvbox-light-hard-CH1njM8p.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/gruvbox-light-medium-DRw_LuNl.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/gruvbox-light-soft-hJgmCMqR.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/hack-CaT9iCJl.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/haml-B8DHNrY2.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/handlebars-BL8al0AC.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/haskell-Df6bDoY_.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/haxe-CzTSHFRz.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/hcl-BWvSN4gD.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/hjson-D5-asLiD.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/hlsl-D3lLCCz7.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/houston-DnULxvSX.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/html-GMplVEZG.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/html-derivative-BFtXZ54Q.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/http-jrhK8wxY.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/hurl-irOxFIW8.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/hxml-Bvhsp5Yf.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/hy-DFXneXwc.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/imba-DGztddWO.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/index-BpoLgcEt.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/index-CzV_vCfu.css +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/index-DI2oedCt.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/ini-BEwlwnbL.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/init-Gi6I4Gst.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/inter-cyrillic-ext-wght-normal-BOeWTOD4.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/inter-cyrillic-wght-normal-DqGufNeO.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/inter-greek-ext-wght-normal-DlzME5K_.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/inter-greek-wght-normal-CkhJZR-_.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/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.1}/src/pythinker_code/web/static/assets/inter-latin-wght-normal-Dx4kXJAl.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/inter-vietnamese-wght-normal-CBcvBZtf.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/java-CylS5w8V.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/javascript-wDzz0qaB.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/jinja-4LBKfQ-Z.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/jison-wvAkD_A8.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/json-Cp-IABpG.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/json5-C9tS-k6U.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/jsonc-Des-eS-w.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/jsonl-DcaNXYhu.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/jsonnet-DFQXde-d.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/jssm-C2t-YnRu.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/jsx-g9-lgVsj.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/julia-CxzCAyBv.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/kanagawa-dragon-CkXjmgJE.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/kanagawa-lotus-CfQXZHmo.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/kanagawa-wave-DWedfzmr.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/katex-D2lIc1rk.css +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/kdl-DV7GczEv.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/kotlin-BdnUsdx6.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/kusto-DZf3V79B.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/laserwave-DUszq2jm.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/latex-B4uzh10-.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/lean-BZvkOJ9d.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/less-B1dDrJ26.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/light-plus-B7mTdjB0.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/liquid-DYVedYrR.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/llvm-BtvRca6l.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/log-2UxHyX5q.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/logo-BtOb2qkB.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/lua-BbnMAYS6.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/luau-C-HG3fhB.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/make-CHLpvVh8.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/markdown-Cvjx9yec.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/marko-DZsq8hO1.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/material-theme-D5KoaKCx.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/material-theme-darker-BfHTSMKl.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/material-theme-lighter-B0m2ddpp.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/material-theme-ocean-CyktbL80.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/material-theme-palenight-Csfq5Kiy.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/matlab-D7o27uSR.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/mdc-DUICxH0z.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/mdx-Cmh6b_Ma.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/mermaid-VLURNSYL-B2P5VJ9v.css +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/mermaid-mWjccvbQ.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/min-dark-CafNBF8u.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/min-light-CTRr51gU.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/mipsasm-CKIfxQSi.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/mojo-B93PlW-d.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/monokai-D4h5O-jR.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/moonbit-Ba13S78F.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/move-Bu9oaDYs.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/narrat-DRg8JJMk.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/nextflow-BrzmwbiE.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/nginx-DknmC5AR.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/night-owl-C39BiMTA.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/nim-CVrawwO9.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/nix-CwoSXNpI.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/nord-Ddv68eIx.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/nushell-C-sUppwS.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/objective-c-DXmwc3jG.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/objective-cpp-CLxacb5B.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/ocaml-C0hk2d4L.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/one-dark-pro-DVMEJ2y_.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/one-light-PoHY5YXO.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/openscad-C4EeE6gA.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/ordinal-Cboi1Yqb.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/pascal-D93ZcfNL.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/perl-C0TMdlhV.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/php-CDn_0X-4.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/pkl-u5AG7uiY.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/plastic-3e1v2bzS.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/plsql-ChMvpjG-.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/po-BTJTHyun.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/poimandres-CS3Unz2-.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/polar-C0HS_06l.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/postcss-CXtECtnM.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/powerquery-CEu0bR-o.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/powershell-Dpen1YoG.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/prisma-Dd19v3D-.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/prolog-CbFg5uaA.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/proto-C7zT0LnQ.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/pug-CGlum2m_.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/puppet-BMWR74SV.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/purescript-CklMAg4u.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/python-B6aJPvgy.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/qml-3beO22l8.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/qmldir-C8lEn-DE.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/qss-IeuSbFQv.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/r-Dspwwk_N.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/racket-BqYA7rlc.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/raku-DXvB9xmW.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/razor-C1TweQQi.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/red-bN70gL4F.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/reg-C-SQnVFl.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/regexp-CDVJQ6XC.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/rel-C3B-1QV4.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/riscv-BM1_JUlF.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/rose-pine-dawn-DHQR4-dF.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/rose-pine-moon-D4_iv3hh.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/rose-pine-qdsjHGoJ.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/rosmsg-BJDFO7_C.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/rst-B0xPkSld.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/ruby-BvKwtOVI.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/rust-B1yitclQ.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/sas-cz2c8ADy.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/sass-Cj5Yp3dK.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/scala-C151Ov-r.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/scheme-C98Dy4si.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/scss-OYdSNvt2.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/sdbl-DVxCFoDh.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/shaderlab-Dg9Lc6iA.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/shellscript-Yzrsuije.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/shellsession-BADoaaVG.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/slack-dark-BthQWCQV.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/slack-ochin-DqwNpetd.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/smalltalk-BERRCDM3.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/snazzy-light-Bw305WKR.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/solarized-dark-DXbdFlpD.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/solarized-light-L9t79GZl.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/solidity-rGO070M0.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/soy-Brmx7dQM.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/sparql-rVzFXLq3.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/splunk-BtCnVYZw.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/sql-BLtJtn59.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/ssh-config-_ykCGR6B.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/stata-BH5u7GGu.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/stylus-BEDo0Tqx.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/svelte-zxCyuUbr.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/swift-Dg5xB15N.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/synthwave-84-CbfX1IO0.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/system-verilog-CnnmHF94.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/systemd-4A_iFExJ.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/talonscript-CkByrt1z.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/tasl-QIJgUcNo.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/tcl-dwOrl1Do.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/templ-W15q3VgB.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/terraform-BETggiCN.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/tex-CvyZ59Mk.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/tokyo-night-hegEt444.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/toml-vGWfd6FD.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/ts-tags-zn1MmPIZ.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/tsv-B_m7g4N7.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/tsx-COt5Ahok.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/turtle-BsS91CYL.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/twig-CO9l9SDP.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/typescript-BPQ3VLAy.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/typespec-BGHnOYBU.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/typst-DHCkPAjA.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/v-BcVCzyr7.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/vala-CsfeWuGM.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/vb-D17OF-Vu.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/verilog-BQ8w6xss.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/vesper-DU1UobuO.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/vhdl-CeAyd5Ju.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/viml-CJc9bBzg.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/vitesse-black-Bkuqu6BP.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/vitesse-dark-D0r3Knsf.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/vitesse-light-CVO1_9PV.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/vue-DN_0RTcg.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/vue-html-AaS7Mt5G.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/vue-vine-CQOfvN7w.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/vyper-CDx5xZoG.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/wasm-CG6Dc4jp.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/wasm-MzD3tlZU.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/wenyan-BV7otONQ.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/wgsl-Dx-B1_4e.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/wikitext-BhOHFoWU.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/wit-5i3qLPDT.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/wolfram-lXgVvXCa.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/xml-sdJ4AIDG.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/xsl-CtQFsRM5.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/yaml-Buea-lGh.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/zenscript-DVFEvuxE.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/assets/zig-VOosw3JB.js +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/brand/apple-touch-icon.png +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/brand/arctecture.webp +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/brand/bimi-logo.svg +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/brand/favicon.ico +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/brand/fonts/dm-sans-latin-ext.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/brand/fonts/dm-sans-latin.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/brand/fonts/instrument-sans-latin-ext.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/brand/fonts/instrument-sans-latin.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/brand/fonts/instrument-serif-latin-ext.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/brand/fonts/instrument-serif-latin.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/brand/fonts/libre-baskerville-italic-latin-ext.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/brand/fonts/libre-baskerville-italic-latin.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/brand/fonts/libre-baskerville-latin-ext.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/brand/fonts/libre-baskerville-latin.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/brand/fonts/roboto-latin-ext.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/brand/fonts/roboto-latin.woff2 +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/brand/icon-192.png +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/brand/icon-512.png +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/brand/icon.svg +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/brand/logo.png +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/brand/pythinker_animated.svg +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/brand/robots.txt +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/static/logo.png +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/store/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/web/store/sessions.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/wire/__init__.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/wire/file.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/wire/jsonrpc.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/wire/protocol.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/wire/root_hub.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/wire/serde.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/src/pythinker_code/wire/server.py +0 -0
- {pythinker_code-2.0.0 → pythinker_code-2.1.1}/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.1
|
|
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,16 +53,16 @@ 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">
|
|
64
64
|
|
|
65
|
-
# <img src="
|
|
65
|
+
# <img src="https://raw.githubusercontent.com/mohamed-elkholy95/Pythinker-Code/main/docs/media/logo.png" alt="Pythinker logo" width="42" align="top"> Pythinker Code
|
|
66
66
|
|
|
67
67
|
### *Your terminal-native AI engineering agent.*
|
|
68
68
|
|
|
@@ -71,10 +71,10 @@ Description-Content-Type: text/markdown
|
|
|
71
71
|
|
|
72
72
|
<br />
|
|
73
73
|
|
|
74
|
-
[](pyproject.toml)
|
|
74
|
+
[](https://pypi.org/project/pythinker-code/)
|
|
75
|
+
[](https://github.com/mohamed-elkholy95/Pythinker-Code/blob/main/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)
|
|
@@ -93,7 +93,7 @@ Description-Content-Type: text/markdown
|
|
|
93
93
|
|
|
94
94
|
<br /><br />
|
|
95
95
|
|
|
96
|
-
<img src="
|
|
96
|
+
<img src="https://raw.githubusercontent.com/mohamed-elkholy95/Pythinker-Code/main/docs/media/pythinker-code.gif" alt="Pythinker Code terminal demo" width="860">
|
|
97
97
|
|
|
98
98
|
</div>
|
|
99
99
|
|
|
@@ -109,6 +109,22 @@ It speaks the [**Agent Client Protocol (ACP)**](https://github.com/agentclientpr
|
|
|
109
109
|
|
|
110
110
|
---
|
|
111
111
|
|
|
112
|
+
## 🆕 What's New in 2.1.0
|
|
113
|
+
|
|
114
|
+
A focused refresh of the TUI and slash-command UX.
|
|
115
|
+
|
|
116
|
+
- **Selectors package** — interactive `/theme`, `/thinking`, `/model`, `/login`, `/settings`, `/extension`, and `/show-images` panels replace the old numeric/text prompts.
|
|
117
|
+
- **`/thinking` slash command** — toggle reasoning effort live, mid-session.
|
|
118
|
+
- **`/settings` panel** — a real `SettingsList` over your `Config` (theme, default model, TUI style, default thinking, telemetry, loop limits, background tasks).
|
|
119
|
+
- **Card-style TUI polish** — bordered shell card, footer/toolbar, and a full set of tool renderers (read / write / edit / grep / find / bash / agent), plus a diff component. Subagent cards show a running-dots spinner while they work.
|
|
120
|
+
- **Selector framework** — `SelectorHeader` sentinel and per-row `on_change` callback for richer custom selectors.
|
|
121
|
+
- **Prompt templates** — discovery is now `~/.pythinker/prompts` and `<project>/.pythinker/prompts`. The legacy directory lookup has been retired.
|
|
122
|
+
- **TUI style flag** — only `card` (default) and `pythinker` are accepted; the legacy alias has been dropped.
|
|
123
|
+
|
|
124
|
+
Upgrade with `pythinker update` or `pip install --upgrade pythinker-code`.
|
|
125
|
+
|
|
126
|
+
---
|
|
127
|
+
|
|
112
128
|
## ✨ Features
|
|
113
129
|
|
|
114
130
|
<table>
|
|
@@ -182,13 +198,27 @@ Swap providers and models per-session: `--model openai/gpt-5.5`, hosted Pythinke
|
|
|
182
198
|
> Built-in shell commands such as `cd` are not yet supported in shell command mode.
|
|
183
199
|
|
|
184
200
|
<div align="center">
|
|
185
|
-
<img src="
|
|
201
|
+
<img src="https://raw.githubusercontent.com/mohamed-elkholy95/Pythinker-Code/main/docs/media/shell-mode.gif" alt="Shell command mode demo" width="860">
|
|
186
202
|
</div>
|
|
187
203
|
|
|
188
204
|
---
|
|
189
205
|
|
|
190
206
|
## ⚡ Quick Start
|
|
191
207
|
|
|
208
|
+
### ✨ Recommended install (clean, with logo)
|
|
209
|
+
|
|
210
|
+
```sh
|
|
211
|
+
curl -fsSL https://raw.githubusercontent.com/mohamed-elkholy95/Pythinker-Code/main/scripts/install.sh | sh
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
Windows PowerShell:
|
|
215
|
+
|
|
216
|
+
```powershell
|
|
217
|
+
irm https://raw.githubusercontent.com/mohamed-elkholy95/Pythinker-Code/main/scripts/install.ps1 | iex
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
The installer fetches `uv` if missing, installs `pythinker-code` quietly, and prints a single-line confirmation instead of the full dependency wall.
|
|
221
|
+
|
|
192
222
|
### 🚀 One-off run with `uvx`
|
|
193
223
|
|
|
194
224
|
```sh
|
|
@@ -401,7 +431,7 @@ The ACP server provides:
|
|
|
401
431
|
| 🔄 **Hot model swap** | Change models for a running ACP session |
|
|
402
432
|
|
|
403
433
|
<div align="center">
|
|
404
|
-
<img src="
|
|
434
|
+
<img src="https://raw.githubusercontent.com/mohamed-elkholy95/Pythinker-Code/main/docs/media/acp-integration.gif" alt="ACP IDE integration demo" width="860">
|
|
405
435
|
</div>
|
|
406
436
|
|
|
407
437
|
---
|
|
@@ -472,7 +502,7 @@ Pythinker is a small, extensible runtime — not a monolith. Build on it.
|
|
|
472
502
|
## 🏗️ Architecture
|
|
473
503
|
|
|
474
504
|
<div align="center">
|
|
475
|
-
<img src="
|
|
505
|
+
<img src="https://raw.githubusercontent.com/mohamed-elkholy95/Pythinker-Code/main/docs/media/Architecture.webp" alt="Pythinker Code architecture diagram" width="860">
|
|
476
506
|
</div>
|
|
477
507
|
|
|
478
508
|
---
|
|
@@ -633,9 +663,9 @@ pythinker-code/
|
|
|
633
663
|
|
|
634
664
|
Contributions are warmly welcome — bug reports, PRs, plugins, skills, and docs all help.
|
|
635
665
|
|
|
636
|
-
- 📖 Start with [`CONTRIBUTING.md`](CONTRIBUTING.md)
|
|
637
|
-
- 🔐 See [`SECURITY.md`](SECURITY.md) for responsible disclosure
|
|
638
|
-
- 📜 Skim [`AGENTS.md`](AGENTS.md) for the agent design notes
|
|
666
|
+
- 📖 Start with [`CONTRIBUTING.md`](https://github.com/mohamed-elkholy95/Pythinker-Code/blob/main/CONTRIBUTING.md)
|
|
667
|
+
- 🔐 See [`SECURITY.md`](https://github.com/mohamed-elkholy95/Pythinker-Code/blob/main/SECURITY.md) for responsible disclosure
|
|
668
|
+
- 📜 Skim [`AGENTS.md`](https://github.com/mohamed-elkholy95/Pythinker-Code/blob/main/AGENTS.md) for the agent design notes
|
|
639
669
|
|
|
640
670
|
If Pythinker helps you, **a ⭐ on GitHub goes a long way.**
|
|
641
671
|
|
|
@@ -643,7 +673,7 @@ If Pythinker helps you, **a ⭐ on GitHub goes a long way.**
|
|
|
643
673
|
|
|
644
674
|
## 📜 License
|
|
645
675
|
|
|
646
|
-
Distributed under the **
|
|
676
|
+
Distributed under the **Apache-2.0 License**. See [`LICENSE`](https://github.com/mohamed-elkholy95/Pythinker-Code/blob/main/LICENSE) for the full text and [`NOTICE`](https://github.com/mohamed-elkholy95/Pythinker-Code/blob/main/NOTICE) for attributions.
|
|
647
677
|
|
|
648
678
|
<br />
|
|
649
679
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
-
# <img src="
|
|
3
|
+
# <img src="https://raw.githubusercontent.com/mohamed-elkholy95/Pythinker-Code/main/docs/media/logo.png" alt="Pythinker logo" width="42" align="top"> Pythinker Code
|
|
4
4
|
|
|
5
5
|
### *Your terminal-native AI engineering agent.*
|
|
6
6
|
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
|
|
10
10
|
<br />
|
|
11
11
|
|
|
12
|
-
[](pyproject.toml)
|
|
12
|
+
[](https://pypi.org/project/pythinker-code/)
|
|
13
|
+
[](https://github.com/mohamed-elkholy95/Pythinker-Code/blob/main/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)
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
|
|
32
32
|
<br /><br />
|
|
33
33
|
|
|
34
|
-
<img src="
|
|
34
|
+
<img src="https://raw.githubusercontent.com/mohamed-elkholy95/Pythinker-Code/main/docs/media/pythinker-code.gif" alt="Pythinker Code terminal demo" width="860">
|
|
35
35
|
|
|
36
36
|
</div>
|
|
37
37
|
|
|
@@ -47,6 +47,22 @@ It speaks the [**Agent Client Protocol (ACP)**](https://github.com/agentclientpr
|
|
|
47
47
|
|
|
48
48
|
---
|
|
49
49
|
|
|
50
|
+
## 🆕 What's New in 2.1.0
|
|
51
|
+
|
|
52
|
+
A focused refresh of the TUI and slash-command UX.
|
|
53
|
+
|
|
54
|
+
- **Selectors package** — interactive `/theme`, `/thinking`, `/model`, `/login`, `/settings`, `/extension`, and `/show-images` panels replace the old numeric/text prompts.
|
|
55
|
+
- **`/thinking` slash command** — toggle reasoning effort live, mid-session.
|
|
56
|
+
- **`/settings` panel** — a real `SettingsList` over your `Config` (theme, default model, TUI style, default thinking, telemetry, loop limits, background tasks).
|
|
57
|
+
- **Card-style TUI polish** — bordered shell card, footer/toolbar, and a full set of tool renderers (read / write / edit / grep / find / bash / agent), plus a diff component. Subagent cards show a running-dots spinner while they work.
|
|
58
|
+
- **Selector framework** — `SelectorHeader` sentinel and per-row `on_change` callback for richer custom selectors.
|
|
59
|
+
- **Prompt templates** — discovery is now `~/.pythinker/prompts` and `<project>/.pythinker/prompts`. The legacy directory lookup has been retired.
|
|
60
|
+
- **TUI style flag** — only `card` (default) and `pythinker` are accepted; the legacy alias has been dropped.
|
|
61
|
+
|
|
62
|
+
Upgrade with `pythinker update` or `pip install --upgrade pythinker-code`.
|
|
63
|
+
|
|
64
|
+
---
|
|
65
|
+
|
|
50
66
|
## ✨ Features
|
|
51
67
|
|
|
52
68
|
<table>
|
|
@@ -120,13 +136,27 @@ Swap providers and models per-session: `--model openai/gpt-5.5`, hosted Pythinke
|
|
|
120
136
|
> Built-in shell commands such as `cd` are not yet supported in shell command mode.
|
|
121
137
|
|
|
122
138
|
<div align="center">
|
|
123
|
-
<img src="
|
|
139
|
+
<img src="https://raw.githubusercontent.com/mohamed-elkholy95/Pythinker-Code/main/docs/media/shell-mode.gif" alt="Shell command mode demo" width="860">
|
|
124
140
|
</div>
|
|
125
141
|
|
|
126
142
|
---
|
|
127
143
|
|
|
128
144
|
## ⚡ Quick Start
|
|
129
145
|
|
|
146
|
+
### ✨ Recommended install (clean, with logo)
|
|
147
|
+
|
|
148
|
+
```sh
|
|
149
|
+
curl -fsSL https://raw.githubusercontent.com/mohamed-elkholy95/Pythinker-Code/main/scripts/install.sh | sh
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
Windows PowerShell:
|
|
153
|
+
|
|
154
|
+
```powershell
|
|
155
|
+
irm https://raw.githubusercontent.com/mohamed-elkholy95/Pythinker-Code/main/scripts/install.ps1 | iex
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
The installer fetches `uv` if missing, installs `pythinker-code` quietly, and prints a single-line confirmation instead of the full dependency wall.
|
|
159
|
+
|
|
130
160
|
### 🚀 One-off run with `uvx`
|
|
131
161
|
|
|
132
162
|
```sh
|
|
@@ -339,7 +369,7 @@ The ACP server provides:
|
|
|
339
369
|
| 🔄 **Hot model swap** | Change models for a running ACP session |
|
|
340
370
|
|
|
341
371
|
<div align="center">
|
|
342
|
-
<img src="
|
|
372
|
+
<img src="https://raw.githubusercontent.com/mohamed-elkholy95/Pythinker-Code/main/docs/media/acp-integration.gif" alt="ACP IDE integration demo" width="860">
|
|
343
373
|
</div>
|
|
344
374
|
|
|
345
375
|
---
|
|
@@ -410,7 +440,7 @@ Pythinker is a small, extensible runtime — not a monolith. Build on it.
|
|
|
410
440
|
## 🏗️ Architecture
|
|
411
441
|
|
|
412
442
|
<div align="center">
|
|
413
|
-
<img src="
|
|
443
|
+
<img src="https://raw.githubusercontent.com/mohamed-elkholy95/Pythinker-Code/main/docs/media/Architecture.webp" alt="Pythinker Code architecture diagram" width="860">
|
|
414
444
|
</div>
|
|
415
445
|
|
|
416
446
|
---
|
|
@@ -571,9 +601,9 @@ pythinker-code/
|
|
|
571
601
|
|
|
572
602
|
Contributions are warmly welcome — bug reports, PRs, plugins, skills, and docs all help.
|
|
573
603
|
|
|
574
|
-
- 📖 Start with [`CONTRIBUTING.md`](CONTRIBUTING.md)
|
|
575
|
-
- 🔐 See [`SECURITY.md`](SECURITY.md) for responsible disclosure
|
|
576
|
-
- 📜 Skim [`AGENTS.md`](AGENTS.md) for the agent design notes
|
|
604
|
+
- 📖 Start with [`CONTRIBUTING.md`](https://github.com/mohamed-elkholy95/Pythinker-Code/blob/main/CONTRIBUTING.md)
|
|
605
|
+
- 🔐 See [`SECURITY.md`](https://github.com/mohamed-elkholy95/Pythinker-Code/blob/main/SECURITY.md) for responsible disclosure
|
|
606
|
+
- 📜 Skim [`AGENTS.md`](https://github.com/mohamed-elkholy95/Pythinker-Code/blob/main/AGENTS.md) for the agent design notes
|
|
577
607
|
|
|
578
608
|
If Pythinker helps you, **a ⭐ on GitHub goes a long way.**
|
|
579
609
|
|
|
@@ -581,7 +611,7 @@ If Pythinker helps you, **a ⭐ on GitHub goes a long way.**
|
|
|
581
611
|
|
|
582
612
|
## 📜 License
|
|
583
613
|
|
|
584
|
-
Distributed under the **
|
|
614
|
+
Distributed under the **Apache-2.0 License**. See [`LICENSE`](https://github.com/mohamed-elkholy95/Pythinker-Code/blob/main/LICENSE) for the full text and [`NOTICE`](https://github.com/mohamed-elkholy95/Pythinker-Code/blob/main/NOTICE) for attributions.
|
|
585
615
|
|
|
586
616
|
<br />
|
|
587
617
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "pythinker-code"
|
|
3
|
-
version = "2.
|
|
3
|
+
version = "2.1.1"
|
|
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",
|
|
@@ -151,3 +151,5 @@ datas = "datas"
|
|
|
151
151
|
Seeked = "Seeked"
|
|
152
152
|
seeked = "seeked"
|
|
153
153
|
iterm = "iterm"
|
|
154
|
+
# Verbatim pyright CLI output ("0 informations") quoted in docs.
|
|
155
|
+
informations = "informations"
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## Unreleased
|
|
4
|
+
|
|
5
|
+
## 2.1.1 (2026-05-08)
|
|
6
|
+
|
|
7
|
+
Documentation refresh.
|
|
8
|
+
|
|
9
|
+
- README: image and key file links converted to absolute GitHub URLs so the project page on PyPI renders the logo, demo GIFs, and architecture diagram correctly.
|
|
10
|
+
- README: added a "What's New in 2.1.0" section summarising the TUI CLI and slash-command enhancements.
|
|
11
|
+
- README: corrected the License section to Apache-2.0 (matches `pyproject.toml` and the `LICENSE` badge).
|
|
12
|
+
|
|
13
|
+
## 2.1.0 (2026-05-08)
|
|
14
|
+
|
|
15
|
+
TUI CLI design and slash command enhancements.
|
|
16
|
+
|
|
17
|
+
- New selectors package — interactive `/theme`, `/thinking`, `/model`, `/login`, `/settings`, `/extension`, and `/show-images` panels replace inline numeric/text prompts.
|
|
18
|
+
- New `/thinking` slash command for adjusting reasoning effort at runtime.
|
|
19
|
+
- `SettingsList` component + `/settings` selector for live `Config` editing (theme, default model, TUI style, default thinking, telemetry).
|
|
20
|
+
- Selector framework: `SelectorHeader` sentinel and per-row `on_change` callback.
|
|
21
|
+
- 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.
|
|
22
|
+
- Pythinker-branded slash menu, input row, and tool execution components.
|
|
23
|
+
- Prompt template discovery simplified to `.pythinker/prompts` at project and user scope (legacy directory lookup removed).
|
|
24
|
+
- TUI style flag now accepts only `card` (default) or `pythinker`; the legacy alias has been dropped.
|
|
25
|
+
|
|
26
|
+
- 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`.
|
|
27
|
+
- 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.
|
|
28
|
+
- 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.
|
|
29
|
+
- 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`.
|
|
30
|
+
|
|
31
|
+
## 1.0.0 (2026-05-06)
|
|
32
|
+
|
|
33
|
+
Initial release of Pythinker CLI.
|
|
34
|
+
|
|
35
|
+
- Interactive terminal AI coding agent with shell command mode (Ctrl-X)
|
|
36
|
+
- ACP server (`pythinker acp`) for IDE integrations such as Zed and JetBrains
|
|
37
|
+
- MCP tool support: `pythinker mcp` sub-commands and ad-hoc `--mcp-config-file`
|
|
38
|
+
- Multi-provider auth: OpenAI, OpenAI Codex, Anthropic, OpenRouter, DeepSeek, MiniMax, Opencode-Go
|
|
39
|
+
- Skills, plugins, and slash commands across project / user / built-in scopes
|
|
40
|
+
- Session persistence with subagents and approval workflows
|
|
41
|
+
- Print mode and wire mode for non-interactive and programmatic use
|
|
42
|
+
- Plan mode for read-only research and design before code changes
|
|
43
|
+
- YOLO mode (`--yolo` / `/yolo`) to dangerously skip permission approvals while keeping the user reachable via `AskUserQuestion`
|
|
44
|
+
- 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(
|
|
@@ -11,7 +11,7 @@ import tempfile
|
|
|
11
11
|
import time
|
|
12
12
|
import uuid
|
|
13
13
|
import webbrowser
|
|
14
|
-
from collections.abc import AsyncIterator
|
|
14
|
+
from collections.abc import AsyncGenerator, AsyncIterator
|
|
15
15
|
from contextlib import asynccontextmanager, suppress
|
|
16
16
|
from dataclasses import dataclass
|
|
17
17
|
from pathlib import Path
|
|
@@ -921,7 +921,7 @@ class OAuthManager:
|
|
|
921
921
|
await self._refresh_tokens(ref, token, runtime, force=force)
|
|
922
922
|
|
|
923
923
|
@asynccontextmanager
|
|
924
|
-
async def refreshing(self, runtime: Runtime) ->
|
|
924
|
+
async def refreshing(self, runtime: Runtime) -> AsyncGenerator[None]:
|
|
925
925
|
stop_event = asyncio.Event()
|
|
926
926
|
|
|
927
927
|
async def _runner() -> None:
|
|
@@ -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()
|