🐍 Practical Python ScriptsPython 实用脚本与 AI Agent 教程合集。📖 文档指南 / Documentation文档说明ENagent-tutorial-README.mdAgent 技术栈全景速查:模型 / 框架 / 工具 / 记忆 / 部署 / 观测ENdev-tools-handbook.md开发者工具零基础手册:Shell / Git / npm / pip / Docker + 命令速查EN📂 项目列表 / Projects项目说明语言难度agent-builder从零搭建 AI 智能体 · 6 步递进教程中文 · EN入门agent-builder-pro进阶版 · Shell/RAG/多Agent/WebUI中文 · EN进阶🚀 快速开始 / Quick Start克隆全部 / Clone everythinggit clone https://github.com/zyk632/practical-python-scripts.git cd practical-python-scripts # 基础版cd agent-builder && pip install -r requirements.txt python step01_hello_llm.py # 进阶版cd agent-builder-pro && pip install -r requirements.txt python step_p1_shell_executor.py只克隆某个项目 / Clone a single project# 只克隆 agent-builder(基础版) git clone --filter=blob:none --sparse https://github.com/zyk632/practical-python-scripts.git cd practical-python-scripts git sparse-checkout set agent-builder # 只克隆 agent-builder-pro(进阶版) git clone --filter=blob:none --sparse https://github.com/zyk632/practical-python-scripts.git cd practical-python-scripts git sparse-checkout set agent-builder-pro