ErisPulse 2.4.6.dev0__tar.gz → 2.4.6.dev2__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.
Files changed (135) hide show
  1. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/PKG-INFO +89 -56
  2. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/README.md +88 -55
  3. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/pyproject.toml +1 -1
  4. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/cli.py +1 -1
  5. erispulse-2.4.6.dev2/src/ErisPulse/CLI/commands/create.py +584 -0
  6. erispulse-2.4.6.dev2/src/ErisPulse/CLI/commands/create.pyi +43 -0
  7. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/commands/init.py +0 -11
  8. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Bases/__init__.py +2 -1
  9. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Bases/__init__.pyi +1 -1
  10. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Bases/adapter.py +286 -31
  11. erispulse-2.4.6.dev2/src/ErisPulse/Core/Bases/adapter.pyi +355 -0
  12. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Bases/module.py +3 -2
  13. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Bases/module.pyi +1 -0
  14. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Event/base.py +34 -9
  15. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Event/base.pyi +5 -2
  16. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Event/command.py +77 -4
  17. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Event/command.pyi +2 -0
  18. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Event/message.py +4 -3
  19. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Event/message.pyi +1 -0
  20. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Event/meta.py +5 -4
  21. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Event/meta.pyi +1 -0
  22. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Event/notice.py +12 -5
  23. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Event/notice.pyi +1 -0
  24. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Event/request.py +6 -4
  25. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Event/request.pyi +3 -1
  26. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Event/wrapper.py +160 -70
  27. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Event/wrapper.pyi +59 -0
  28. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/__init__.py +5 -10
  29. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/__init__.pyi +3 -4
  30. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/adapter.py +66 -15
  31. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/adapter.pyi +3 -0
  32. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/config.py +39 -297
  33. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/config.pyi +3 -79
  34. erispulse-2.4.6.dev2/src/ErisPulse/Core/constants.py +443 -0
  35. erispulse-2.4.6.dev2/src/ErisPulse/Core/constants.pyi +18 -0
  36. erispulse-2.4.6.dev2/src/ErisPulse/Core/lifecycle.py +376 -0
  37. erispulse-2.4.6.dev2/src/ErisPulse/Core/lifecycle.pyi +227 -0
  38. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/logger.py +4 -3
  39. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/logger.pyi +1 -0
  40. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/module.py +125 -57
  41. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/module.pyi +4 -0
  42. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/router.py +446 -75
  43. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/router.pyi +4 -1
  44. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/storage.py +3 -2
  45. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/storage.pyi +1 -0
  46. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/__init__.py +0 -1
  47. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/__init__.pyi +1 -1
  48. erispulse-2.4.6.dev2/src/ErisPulse/runtime/context.py +33 -0
  49. erispulse-2.4.6.dev2/src/ErisPulse/runtime/context.pyi +34 -0
  50. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/runtime/exceptions.py +2 -2
  51. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/runtime/frame_config.py +41 -31
  52. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/runtime/frame_config.pyi +1 -0
  53. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/sdk.py +207 -194
  54. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/sdk.pyi +24 -48
  55. erispulse-2.4.6.dev2/src/ErisPulse/web_status/4xx.png +0 -0
  56. erispulse-2.4.6.dev2/src/ErisPulse/web_status/5xx.png +0 -0
  57. erispulse-2.4.6.dev2/src/ErisPulse/web_status/__init__.py +17 -0
  58. erispulse-2.4.6.dev2/src/ErisPulse/web_status/__init__.pyi +21 -0
  59. erispulse-2.4.6.dev2/src/ErisPulse/web_status/unknow.png +0 -0
  60. erispulse-2.4.6.dev0/src/ErisPulse/Core/Bases/adapter.pyi +0 -182
  61. erispulse-2.4.6.dev0/src/ErisPulse/Core/lifecycle.py +0 -212
  62. erispulse-2.4.6.dev0/src/ErisPulse/Core/lifecycle.pyi +0 -99
  63. erispulse-2.4.6.dev0/src/ErisPulse/Core/metrics.py +0 -503
  64. erispulse-2.4.6.dev0/src/ErisPulse/Core/metrics.pyi +0 -302
  65. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/.gitignore +0 -0
  66. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/LICENSE +0 -0
  67. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/__init__.py +0 -0
  68. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/__init__.pyi +0 -0
  69. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/base.py +0 -0
  70. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/base.pyi +0 -0
  71. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/cli.pyi +0 -0
  72. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/commands/__init__.py +0 -0
  73. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/commands/__init__.pyi +0 -0
  74. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/commands/init.pyi +0 -0
  75. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/commands/install.py +0 -0
  76. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/commands/install.pyi +0 -0
  77. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/commands/list.py +0 -0
  78. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/commands/list.pyi +0 -0
  79. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/commands/list_remote.py +0 -0
  80. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/commands/list_remote.pyi +0 -0
  81. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/commands/run.py +0 -0
  82. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/commands/run.pyi +0 -0
  83. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/commands/self_update.py +0 -0
  84. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/commands/self_update.pyi +0 -0
  85. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/commands/uninstall.py +0 -0
  86. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/commands/uninstall.pyi +0 -0
  87. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/commands/upgrade.py +0 -0
  88. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/commands/upgrade.pyi +0 -0
  89. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/console.py +0 -0
  90. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/console.pyi +0 -0
  91. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/registry.py +0 -0
  92. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/registry.pyi +0 -0
  93. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/utils/__init__.py +0 -0
  94. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/utils/__init__.pyi +0 -0
  95. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/utils/display.py +0 -0
  96. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/utils/display.pyi +0 -0
  97. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/utils/package_manager.py +0 -0
  98. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/CLI/utils/package_manager.pyi +0 -0
  99. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Bases/manager.py +0 -0
  100. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Bases/manager.pyi +0 -0
  101. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Bases/storage.py +0 -0
  102. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Bases/storage.pyi +0 -0
  103. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Event/__init__.py +0 -0
  104. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Event/__init__.pyi +0 -0
  105. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Event/message_builder.py +0 -0
  106. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Event/message_builder.pyi +0 -0
  107. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Event/session_type.py +0 -0
  108. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/Core/Event/session_type.pyi +0 -0
  109. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/__main__.py +0 -0
  110. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/__main__.pyi +0 -0
  111. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/finders/__init__.py +0 -0
  112. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/finders/__init__.pyi +0 -0
  113. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/finders/adapter.py +0 -0
  114. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/finders/adapter.pyi +0 -0
  115. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/finders/bases/__init__.py +0 -0
  116. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/finders/bases/__init__.pyi +0 -0
  117. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/finders/bases/finder.py +0 -0
  118. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/finders/bases/finder.pyi +0 -0
  119. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/finders/module.py +0 -0
  120. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/finders/module.pyi +0 -0
  121. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/loaders/__init__.py +0 -0
  122. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/loaders/__init__.pyi +0 -0
  123. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/loaders/adapter.py +0 -0
  124. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/loaders/adapter.pyi +0 -0
  125. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/loaders/bases/__init__.py +0 -0
  126. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/loaders/bases/__init__.pyi +0 -0
  127. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/loaders/bases/loader.py +0 -0
  128. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/loaders/bases/loader.pyi +0 -0
  129. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/loaders/module.py +0 -0
  130. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/loaders/module.pyi +0 -0
  131. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/loaders/strategy.py +0 -0
  132. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/loaders/strategy.pyi +0 -0
  133. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/runtime/__init__.py +0 -0
  134. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/runtime/__init__.pyi +0 -0
  135. {erispulse-2.4.6.dev0 → erispulse-2.4.6.dev2}/src/ErisPulse/runtime/exceptions.pyi +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ErisPulse
3
- Version: 2.4.6.dev0
3
+ Version: 2.4.6.dev2
4
4
  Summary: ErisPulse 是一个模块化、可扩展的异步 Python SDK 框架,主要用于构建高效、可维护的机器人应用程序。
5
5
  Author-email: ErisDev <erisdev@88.com>
6
6
  Maintainer-email: "艾莉丝·格雷拉特(WSu2059)" <wsu2059@qq.com>
@@ -70,40 +70,41 @@ Requires-Dist: pytest-xdist>=3.0.0; extra == 'test'
70
70
  Requires-Dist: pytest>=7.0.0; extra == 'test'
71
71
  Description-Content-Type: text/markdown
72
72
 
73
- <div align="center">
74
-
75
- [English](README.en.md) | **简体中文** | [繁體中文](README.zh-TW.md)
73
+ <table>
74
+ <tr>
75
+ <td width="35%" valign="middle" align="center">
76
76
 
77
- <br/>
77
+ <img src=".github/assets/mascot-hero.png" width="320" alt="ErisPulse" />
78
78
 
79
- <img src=".github/assets/erispulse_logo_hp.png" width="160" alt="ErisPulse" />
79
+ </td>
80
+ <td valign="middle">
80
81
 
81
- <br/>
82
+ [English](README.en.md) | **简体中文** | [繁體中文](README.zh-TW.md)
82
83
 
83
84
  # ErisPulse
84
85
 
85
86
  **事件驱动的多平台机器人开发框架**
86
87
 
87
- > 知道吗?ErisPulse 支持完整的 Vibe Coding 工作流,让 AI 直接生成可用模块
88
- > [查看](docs/zh-CN/ai-support/README.md)
89
-
90
- <br/>
91
-
92
- [![PyPI](https://img.shields.io/pypi/v/ErisPulse?style=flat-square)](https://pypi.org/project/ErisPulse/)
93
- [![Docker](https://img.shields.io/badge/Docker-2496ED?style=flat-square&logo=docker&logoColor=white)](https://hub.docker.com/r/erispulse/erispulse)
94
- [![Python](https://img.shields.io/badge/Python-3.10+-3776AB?style=flat-square&logo=python&logoColor=white)](https://pypi.org/project/ErisPulse/)
95
- [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
96
- [![Socket Badge](https://socket.dev/api/badge/pypi/package/ErisPulse/latest)](https://socket.dev/pypi/package/ErisPulse)
88
+ 基于 OneBot12 标准接口,一次编写,多平台部署。灵活的插件系统、热重载支持和完整的开发者工具链,适用于从简单聊天机器人到复杂自动化系统的各种场景。
97
89
 
98
- </div>
90
+ > 支持 Vibe Coding 工作流,让 AI 直接生成可用模块 — [查看](docs/zh-CN/ai-support/README.md)
99
91
 
100
- <br/>
92
+ [![PyPI](https://img.shields.io/pypi/v/ErisPulse?style=for-the-badge&logo=pypi&logoColor=white)](https://pypi.org/project/ErisPulse/)
93
+ [![Python](https://img.shields.io/badge/Python-3.10+-FFD43B?style=for-the-badge&logo=python&logoColor=blue)](https://pypi.org/project/ErisPulse/)
94
+ [![Docker](https://img.shields.io/badge/Docker-2496ED?style=for-the-badge&logo=docker&logoColor=white)](https://hub.docker.com/r/erispulse/erispulse)
95
+ [![License](https://img.shields.io/badge/License-MIT-blue?style=for-the-badge)](https://github.com/ErisPulse/ErisPulse/blob/main/LICENSE)
96
+ [![Stars](https://img.shields.io/github/stars/ErisPulse/ErisPulse?style=for-the-badge&logo=github&color=brightgreen)](https://github.com/ErisPulse/ErisPulse)
97
+ [![Downloads](https://img.shields.io/pepy/dt/ErisPulse?style=for-the-badge&color=blue)](https://pypi.org/project/ErisPulse/)
98
+ [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json&style=for-the-badge)](https://github.com/astral-sh/ruff)
99
+ [![Socket](https://img.shields.io/badge/Socket-Secure-2ea043?style=for-the-badge&logo=socket&logoColor=white)](https://socket.dev/pypi/package/erispulse)
101
100
 
102
- <div align="center">
101
+ [![文档](https://img.shields.io/badge/文档-erisdev.com-FF6B9D?style=for-the-badge&logo=bookstack&logoColor=white)](https://www.erisdev.com)
102
+ [![模块市场](https://img.shields.io/badge/模块市场-erisdev.com-C724B1?style=for-the-badge&logo=webpack&logoColor=white)](https://www.erisdev.com/#market)
103
+ [![讨论](https://img.shields.io/badge/GitHub-Discussions-181717?style=for-the-badge&logo=github)](https://github.com/ErisPulse/ErisPulse/discussions)
103
104
 
104
- 基于 OneBot12 标准接口,一次编写,多平台部署。灵活的插件系统、热重载支持和完整的开发者工具链,适用于从简单聊天机器人到复杂自动化系统的各种场景。
105
-
106
- </div>
105
+ </td>
106
+ </tr>
107
+ </table>
107
108
 
108
109
  ---
109
110
 
@@ -118,7 +119,7 @@ Description-Content-Type: text/markdown
118
119
  <td width="50%" align="center" valign="top">
119
120
  <br/>
120
121
 
121
- ### 事件驱动架构
122
+ ### 事件驱动架构
122
123
 
123
124
  基于 OneBot12 标准的清晰事件模型,让消息处理逻辑更加直观和高效
124
125
 
@@ -126,7 +127,7 @@ Description-Content-Type: text/markdown
126
127
  <td width="50%" align="center" valign="top">
127
128
  <br/>
128
129
 
129
- ### 跨平台兼容
130
+ ### 🌐 跨平台兼容
130
131
 
131
132
  插件模块编写一次即可在所有平台使用,无需为不同平台重复开发
132
133
 
@@ -136,7 +137,7 @@ Description-Content-Type: text/markdown
136
137
  <td width="50%" align="center" valign="top">
137
138
  <br/>
138
139
 
139
- ### 模块化设计
140
+ ### 🧩 模块化设计
140
141
 
141
142
  灵活的插件系统,易于扩展和集成,支持热插拔模块管理
142
143
 
@@ -144,7 +145,7 @@ Description-Content-Type: text/markdown
144
145
  <td width="50%" align="center" valign="top">
145
146
  <br/>
146
147
 
147
- ### 热重载支持
148
+ ### 🔄 热重载支持
148
149
 
149
150
  开发时无需重启即可重新加载代码,大幅提升开发迭代效率
150
151
 
@@ -156,24 +157,29 @@ Description-Content-Type: text/markdown
156
157
 
157
158
  ### 支持的适配器
158
159
 
160
+ <div align="center">
161
+ <!-- <img src=".github/assets/adapter-showcase.png" width="520" alt="适配器展示" /> -->
162
+
159
163
  欢迎您贡献适配器!
160
164
 
161
165
  | 适配器 | 说明 |
162
166
  |--------|------|
163
- | [Kook](https://github.com/shanfishapp/ErisPulse-KookAdapter) | Kook(开黑啦)即时通讯平台 |
164
- | [Matrix](https://github.com/ErisPulse/ErisPulse-MatrixAdapter) | Matrix 去中心化通讯协议 |
165
- | [OneBot11](https://github.com/ErisPulse/ErisPulse-OneBot11Adapter) | OneBot v11 通用机器人协议 |
166
- | [OneBot12](https://github.com/ErisPulse/ErisPulse-OneBot12Adapter) | OneBot v12 标准协议 |
167
- | [QQ](https://github.com/ErisPulse/ErisPulse-QQBotAdapter) | QQ 官方机器人平台 |
168
- | [沙箱](https://github.com/ErisPulse/ErisPulse-SandboxAdapter) | 网页端调试,无需接入真实平台 |
169
- | [Telegram](https://github.com/ErisPulse/ErisPulse-TelegramAdapter) | 全球性即时通讯平台 |
170
- | [邮件](https://github.com/ErisPulse/ErisPulse-EmailAdapter) | 邮件协议收发适配器 |
171
- | [云湖](https://github.com/ErisPulse/ErisPulse-YunhuAdapter) | 企业级即时通讯平台(机器人接入) |
167
+ | <img src=".github/assets/adapter_logo/kook.svg" height="20" alt="Kook" /> [Kook](https://github.com/shanfishapp/ErisPulse-KookAdapter) | Kook(开黑啦)即时通讯平台 |
168
+ | <img src=".github/assets/adapter_logo/matrix.svg" height="20" alt="Matrix" /> [Matrix](https://github.com/ErisPulse/ErisPulse-MatrixAdapter) | Matrix 去中心化通讯协议 |
169
+ | <img src=".github/assets/adapter_logo/onebot.png" height="20" alt="OneBot" /> [OneBot11](https://github.com/ErisPulse/ErisPulse-OneBot11Adapter) | OneBot v11 通用机器人协议 |
170
+ | <img src=".github/assets/adapter_logo/onebot.png" height="20" alt="OneBot" /> [OneBot12](https://github.com/ErisPulse/ErisPulse-OneBot12Adapter) | OneBot v12 标准协议 |
171
+ | <img src=".github/assets/adapter_logo/qqbot.svg" height="20" alt="QQ" /> [QQ](https://github.com/ErisPulse/ErisPulse-QQBotAdapter) | QQ 官方机器人平台 |
172
+ | <img src=".github/assets/adapter_logo/sandbox.png" height="20" alt="Sandbox" /> [沙箱](https://github.com/ErisPulse/ErisPulse-SandboxAdapter) | 网页端调试,无需接入真实平台 |
173
+ | <img src=".github/assets/adapter_logo/telegram.svg" height="20" alt="Telegram" /> [Telegram](https://github.com/ErisPulse/ErisPulse-TelegramAdapter) | 全球性即时通讯平台 |
174
+ | <img src=".github/assets/adapter_logo/email.svg" height="20" alt="Email" /> [邮件](https://github.com/ErisPulse/ErisPulse-EmailAdapter) | 邮件协议收发适配器 |
175
+ | <img src=".github/assets/adapter_logo/yunhu.png" height="20" alt="Yunhu" /> [云湖](https://github.com/ErisPulse/ErisPulse-YunhuAdapter) | 企业级即时通讯平台(机器人接入) |
172
176
  | [云湖用户](https://github.com/wsu2059q/ErisPulse-YunhuUserAdapter) | 基于云湖用户协议的接入适配器 |
173
177
  | [花枫咖啡馆](https://github.com/ErisPulse/ErisPulse-Ideaura/) | Allons! \(・ω・) / |
174
178
 
175
179
  查看 [适配器详情介绍](docs/zh-CN/platform-guide/README.md)
176
180
 
181
+ </div>
182
+
177
183
  ---
178
184
 
179
185
  ### 快速开始
@@ -271,18 +277,50 @@ bash <(curl -sL https://get-1panel.erisdev.com/install.sh)
271
277
 
272
278
  ```bash
273
279
  pip install ErisPulse
274
-
275
- # 国内镜像
276
- pip install -i https://pypi.tuna.tsinghua.edu.cn/simple ErisPulse
277
-
278
- # 使用 uv 安装
279
- uv pip install ErisPulse
280
280
  ```
281
281
 
282
- ![安装演示](.github/assets/docs/install_pip.gif)
282
+ <img src=".github/assets/docs/install_pip.gif" alt="安装演示" />
283
283
 
284
284
  > 如果您的 Python 版本低于 3.10,可以使用一键安装脚本自动配置环境。详见 [安装脚本说明](scripts/install/)。
285
285
 
286
+ #### 运行效果
287
+
288
+
289
+ ##### 仪表盘:
290
+ > 有一个gif,但是太大了没放到这里~ 抱歉~
291
+ > [GIF演示](.github/assets/docs/dashboard-demo.gif)
292
+
293
+ <img src=".github/assets/docs/dashboard.png" alt="Dashboard 演示" />
294
+
295
+
296
+ ##### 同一端代码,多个平台响应:
297
+
298
+ <table>
299
+ <tr>
300
+ <td align="center" width="33%">
301
+
302
+ **Kook**
303
+
304
+ <img src=".github/assets/demo-kook.png" alt="Kook 演示" />
305
+
306
+ </td>
307
+ <td align="center" width="33%">
308
+
309
+ **QQ**
310
+
311
+ <img src=".github/assets/demo-qq.png" alt="QQ 演示" />
312
+
313
+ </td>
314
+ <td align="center" width="33%">
315
+
316
+ **云湖**
317
+
318
+ <img src=".github/assets/demo-yunhu.png" alt="云湖 演示" />
319
+
320
+ </td>
321
+ </tr>
322
+ </table>
323
+
286
324
  #### 初始化项目
287
325
 
288
326
  ```bash
@@ -368,19 +406,6 @@ epsdk run main.py --reload
368
406
 
369
407
  ---
370
408
 
371
- ### 文档与资源
372
-
373
- | 简体中文 | English | 繁體中文 |
374
- |:---:|:---:|:---:|
375
- | [文档入口](docs/zh-CN/README.md) | [Documentation](docs/en/README.md) | [文檔入口](docs/zh-TW/README.md) |
376
-
377
- | 平台 | 主站点 | 备用站点 |
378
- |------|--------|---------|
379
- | 文档 | [erisdev.com](https://www.erisdev.com/#docs) | [Cloudflare](https://erispulse.pages.dev/#docs) · [GitHub](https://erispulse.github.io/#docs) · [Netlify](https://erispulse.netlify.app/#docs) |
380
- | 模块市场 | [erisdev.com](https://www.erisdev.com/#market) | [Cloudflare](https://erispulse.pages.dev/#market) · [GitHub](https://erispulse.github.io/#market) · [Netlify](https://erispulse.netlify.app/#market) |
381
-
382
- ---
383
-
384
409
  ### 贡献指南
385
410
 
386
411
  ErisPulse 项目的健全性还需要您的一份力!我们欢迎各种形式的贡献:
@@ -394,10 +419,18 @@ ErisPulse 项目的健全性还需要您的一份力!我们欢迎各种形式
394
419
 
395
420
  ---
396
421
 
422
+ ## Star History
423
+
424
+ [![Star History Chart](https://api.star-history.com/svg?repos=ErisPulse/ErisPulse&type=Date)](https://star-history.com/#ErisPulse/ErisPulse&Date)
425
+
426
+ ---
427
+
397
428
  <div align="center">
398
429
 
399
430
  ### 致谢
400
431
 
432
+ <img src=".github/assets/thanks.png" width="200" alt="感谢" />
433
+
401
434
  本项目部分代码基于 [sdkFrame](https://github.com/runoneall/sdkFrame) · 核心适配器标准化层基于 [OneBot12 规范](https://12.onebot.dev/) · 感谢所有为开源社区做出贡献的开发者和作者
402
435
 
403
436
  </div>
@@ -1,37 +1,38 @@
1
- <div align="center">
2
-
3
- [English](README.en.md) | **简体中文** | [繁體中文](README.zh-TW.md)
1
+ <table>
2
+ <tr>
3
+ <td width="35%" valign="middle" align="center">
4
4
 
5
- <br/>
5
+ <img src=".github/assets/mascot-hero.png" width="320" alt="ErisPulse" />
6
6
 
7
- <img src=".github/assets/erispulse_logo_hp.png" width="160" alt="ErisPulse" />
7
+ </td>
8
+ <td valign="middle">
8
9
 
9
- <br/>
10
+ [English](README.en.md) | **简体中文** | [繁體中文](README.zh-TW.md)
10
11
 
11
12
  # ErisPulse
12
13
 
13
14
  **事件驱动的多平台机器人开发框架**
14
15
 
15
- > 知道吗?ErisPulse 支持完整的 Vibe Coding 工作流,让 AI 直接生成可用模块
16
- > [查看](docs/zh-CN/ai-support/README.md)
17
-
18
- <br/>
19
-
20
- [![PyPI](https://img.shields.io/pypi/v/ErisPulse?style=flat-square)](https://pypi.org/project/ErisPulse/)
21
- [![Docker](https://img.shields.io/badge/Docker-2496ED?style=flat-square&logo=docker&logoColor=white)](https://hub.docker.com/r/erispulse/erispulse)
22
- [![Python](https://img.shields.io/badge/Python-3.10+-3776AB?style=flat-square&logo=python&logoColor=white)](https://pypi.org/project/ErisPulse/)
23
- [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
24
- [![Socket Badge](https://socket.dev/api/badge/pypi/package/ErisPulse/latest)](https://socket.dev/pypi/package/ErisPulse)
16
+ 基于 OneBot12 标准接口,一次编写,多平台部署。灵活的插件系统、热重载支持和完整的开发者工具链,适用于从简单聊天机器人到复杂自动化系统的各种场景。
25
17
 
26
- </div>
18
+ > 支持 Vibe Coding 工作流,让 AI 直接生成可用模块 — [查看](docs/zh-CN/ai-support/README.md)
27
19
 
28
- <br/>
20
+ [![PyPI](https://img.shields.io/pypi/v/ErisPulse?style=for-the-badge&logo=pypi&logoColor=white)](https://pypi.org/project/ErisPulse/)
21
+ [![Python](https://img.shields.io/badge/Python-3.10+-FFD43B?style=for-the-badge&logo=python&logoColor=blue)](https://pypi.org/project/ErisPulse/)
22
+ [![Docker](https://img.shields.io/badge/Docker-2496ED?style=for-the-badge&logo=docker&logoColor=white)](https://hub.docker.com/r/erispulse/erispulse)
23
+ [![License](https://img.shields.io/badge/License-MIT-blue?style=for-the-badge)](https://github.com/ErisPulse/ErisPulse/blob/main/LICENSE)
24
+ [![Stars](https://img.shields.io/github/stars/ErisPulse/ErisPulse?style=for-the-badge&logo=github&color=brightgreen)](https://github.com/ErisPulse/ErisPulse)
25
+ [![Downloads](https://img.shields.io/pepy/dt/ErisPulse?style=for-the-badge&color=blue)](https://pypi.org/project/ErisPulse/)
26
+ [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json&style=for-the-badge)](https://github.com/astral-sh/ruff)
27
+ [![Socket](https://img.shields.io/badge/Socket-Secure-2ea043?style=for-the-badge&logo=socket&logoColor=white)](https://socket.dev/pypi/package/erispulse)
29
28
 
30
- <div align="center">
29
+ [![文档](https://img.shields.io/badge/文档-erisdev.com-FF6B9D?style=for-the-badge&logo=bookstack&logoColor=white)](https://www.erisdev.com)
30
+ [![模块市场](https://img.shields.io/badge/模块市场-erisdev.com-C724B1?style=for-the-badge&logo=webpack&logoColor=white)](https://www.erisdev.com/#market)
31
+ [![讨论](https://img.shields.io/badge/GitHub-Discussions-181717?style=for-the-badge&logo=github)](https://github.com/ErisPulse/ErisPulse/discussions)
31
32
 
32
- 基于 OneBot12 标准接口,一次编写,多平台部署。灵活的插件系统、热重载支持和完整的开发者工具链,适用于从简单聊天机器人到复杂自动化系统的各种场景。
33
-
34
- </div>
33
+ </td>
34
+ </tr>
35
+ </table>
35
36
 
36
37
  ---
37
38
 
@@ -46,7 +47,7 @@
46
47
  <td width="50%" align="center" valign="top">
47
48
  <br/>
48
49
 
49
- ### 事件驱动架构
50
+ ### 事件驱动架构
50
51
 
51
52
  基于 OneBot12 标准的清晰事件模型,让消息处理逻辑更加直观和高效
52
53
 
@@ -54,7 +55,7 @@
54
55
  <td width="50%" align="center" valign="top">
55
56
  <br/>
56
57
 
57
- ### 跨平台兼容
58
+ ### 🌐 跨平台兼容
58
59
 
59
60
  插件模块编写一次即可在所有平台使用,无需为不同平台重复开发
60
61
 
@@ -64,7 +65,7 @@
64
65
  <td width="50%" align="center" valign="top">
65
66
  <br/>
66
67
 
67
- ### 模块化设计
68
+ ### 🧩 模块化设计
68
69
 
69
70
  灵活的插件系统,易于扩展和集成,支持热插拔模块管理
70
71
 
@@ -72,7 +73,7 @@
72
73
  <td width="50%" align="center" valign="top">
73
74
  <br/>
74
75
 
75
- ### 热重载支持
76
+ ### 🔄 热重载支持
76
77
 
77
78
  开发时无需重启即可重新加载代码,大幅提升开发迭代效率
78
79
 
@@ -84,24 +85,29 @@
84
85
 
85
86
  ### 支持的适配器
86
87
 
88
+ <div align="center">
89
+ <!-- <img src=".github/assets/adapter-showcase.png" width="520" alt="适配器展示" /> -->
90
+
87
91
  欢迎您贡献适配器!
88
92
 
89
93
  | 适配器 | 说明 |
90
94
  |--------|------|
91
- | [Kook](https://github.com/shanfishapp/ErisPulse-KookAdapter) | Kook(开黑啦)即时通讯平台 |
92
- | [Matrix](https://github.com/ErisPulse/ErisPulse-MatrixAdapter) | Matrix 去中心化通讯协议 |
93
- | [OneBot11](https://github.com/ErisPulse/ErisPulse-OneBot11Adapter) | OneBot v11 通用机器人协议 |
94
- | [OneBot12](https://github.com/ErisPulse/ErisPulse-OneBot12Adapter) | OneBot v12 标准协议 |
95
- | [QQ](https://github.com/ErisPulse/ErisPulse-QQBotAdapter) | QQ 官方机器人平台 |
96
- | [沙箱](https://github.com/ErisPulse/ErisPulse-SandboxAdapter) | 网页端调试,无需接入真实平台 |
97
- | [Telegram](https://github.com/ErisPulse/ErisPulse-TelegramAdapter) | 全球性即时通讯平台 |
98
- | [邮件](https://github.com/ErisPulse/ErisPulse-EmailAdapter) | 邮件协议收发适配器 |
99
- | [云湖](https://github.com/ErisPulse/ErisPulse-YunhuAdapter) | 企业级即时通讯平台(机器人接入) |
95
+ | <img src=".github/assets/adapter_logo/kook.svg" height="20" alt="Kook" /> [Kook](https://github.com/shanfishapp/ErisPulse-KookAdapter) | Kook(开黑啦)即时通讯平台 |
96
+ | <img src=".github/assets/adapter_logo/matrix.svg" height="20" alt="Matrix" /> [Matrix](https://github.com/ErisPulse/ErisPulse-MatrixAdapter) | Matrix 去中心化通讯协议 |
97
+ | <img src=".github/assets/adapter_logo/onebot.png" height="20" alt="OneBot" /> [OneBot11](https://github.com/ErisPulse/ErisPulse-OneBot11Adapter) | OneBot v11 通用机器人协议 |
98
+ | <img src=".github/assets/adapter_logo/onebot.png" height="20" alt="OneBot" /> [OneBot12](https://github.com/ErisPulse/ErisPulse-OneBot12Adapter) | OneBot v12 标准协议 |
99
+ | <img src=".github/assets/adapter_logo/qqbot.svg" height="20" alt="QQ" /> [QQ](https://github.com/ErisPulse/ErisPulse-QQBotAdapter) | QQ 官方机器人平台 |
100
+ | <img src=".github/assets/adapter_logo/sandbox.png" height="20" alt="Sandbox" /> [沙箱](https://github.com/ErisPulse/ErisPulse-SandboxAdapter) | 网页端调试,无需接入真实平台 |
101
+ | <img src=".github/assets/adapter_logo/telegram.svg" height="20" alt="Telegram" /> [Telegram](https://github.com/ErisPulse/ErisPulse-TelegramAdapter) | 全球性即时通讯平台 |
102
+ | <img src=".github/assets/adapter_logo/email.svg" height="20" alt="Email" /> [邮件](https://github.com/ErisPulse/ErisPulse-EmailAdapter) | 邮件协议收发适配器 |
103
+ | <img src=".github/assets/adapter_logo/yunhu.png" height="20" alt="Yunhu" /> [云湖](https://github.com/ErisPulse/ErisPulse-YunhuAdapter) | 企业级即时通讯平台(机器人接入) |
100
104
  | [云湖用户](https://github.com/wsu2059q/ErisPulse-YunhuUserAdapter) | 基于云湖用户协议的接入适配器 |
101
105
  | [花枫咖啡馆](https://github.com/ErisPulse/ErisPulse-Ideaura/) | Allons! \(・ω・) / |
102
106
 
103
107
  查看 [适配器详情介绍](docs/zh-CN/platform-guide/README.md)
104
108
 
109
+ </div>
110
+
105
111
  ---
106
112
 
107
113
  ### 快速开始
@@ -199,18 +205,50 @@ bash <(curl -sL https://get-1panel.erisdev.com/install.sh)
199
205
 
200
206
  ```bash
201
207
  pip install ErisPulse
202
-
203
- # 国内镜像
204
- pip install -i https://pypi.tuna.tsinghua.edu.cn/simple ErisPulse
205
-
206
- # 使用 uv 安装
207
- uv pip install ErisPulse
208
208
  ```
209
209
 
210
- ![安装演示](.github/assets/docs/install_pip.gif)
210
+ <img src=".github/assets/docs/install_pip.gif" alt="安装演示" />
211
211
 
212
212
  > 如果您的 Python 版本低于 3.10,可以使用一键安装脚本自动配置环境。详见 [安装脚本说明](scripts/install/)。
213
213
 
214
+ #### 运行效果
215
+
216
+
217
+ ##### 仪表盘:
218
+ > 有一个gif,但是太大了没放到这里~ 抱歉~
219
+ > [GIF演示](.github/assets/docs/dashboard-demo.gif)
220
+
221
+ <img src=".github/assets/docs/dashboard.png" alt="Dashboard 演示" />
222
+
223
+
224
+ ##### 同一端代码,多个平台响应:
225
+
226
+ <table>
227
+ <tr>
228
+ <td align="center" width="33%">
229
+
230
+ **Kook**
231
+
232
+ <img src=".github/assets/demo-kook.png" alt="Kook 演示" />
233
+
234
+ </td>
235
+ <td align="center" width="33%">
236
+
237
+ **QQ**
238
+
239
+ <img src=".github/assets/demo-qq.png" alt="QQ 演示" />
240
+
241
+ </td>
242
+ <td align="center" width="33%">
243
+
244
+ **云湖**
245
+
246
+ <img src=".github/assets/demo-yunhu.png" alt="云湖 演示" />
247
+
248
+ </td>
249
+ </tr>
250
+ </table>
251
+
214
252
  #### 初始化项目
215
253
 
216
254
  ```bash
@@ -296,19 +334,6 @@ epsdk run main.py --reload
296
334
 
297
335
  ---
298
336
 
299
- ### 文档与资源
300
-
301
- | 简体中文 | English | 繁體中文 |
302
- |:---:|:---:|:---:|
303
- | [文档入口](docs/zh-CN/README.md) | [Documentation](docs/en/README.md) | [文檔入口](docs/zh-TW/README.md) |
304
-
305
- | 平台 | 主站点 | 备用站点 |
306
- |------|--------|---------|
307
- | 文档 | [erisdev.com](https://www.erisdev.com/#docs) | [Cloudflare](https://erispulse.pages.dev/#docs) · [GitHub](https://erispulse.github.io/#docs) · [Netlify](https://erispulse.netlify.app/#docs) |
308
- | 模块市场 | [erisdev.com](https://www.erisdev.com/#market) | [Cloudflare](https://erispulse.pages.dev/#market) · [GitHub](https://erispulse.github.io/#market) · [Netlify](https://erispulse.netlify.app/#market) |
309
-
310
- ---
311
-
312
337
  ### 贡献指南
313
338
 
314
339
  ErisPulse 项目的健全性还需要您的一份力!我们欢迎各种形式的贡献:
@@ -322,10 +347,18 @@ ErisPulse 项目的健全性还需要您的一份力!我们欢迎各种形式
322
347
 
323
348
  ---
324
349
 
350
+ ## Star History
351
+
352
+ [![Star History Chart](https://api.star-history.com/svg?repos=ErisPulse/ErisPulse&type=Date)](https://star-history.com/#ErisPulse/ErisPulse&Date)
353
+
354
+ ---
355
+
325
356
  <div align="center">
326
357
 
327
358
  ### 致谢
328
359
 
360
+ <img src=".github/assets/thanks.png" width="200" alt="感谢" />
361
+
329
362
  本项目部分代码基于 [sdkFrame](https://github.com/runoneall/sdkFrame) · 核心适配器标准化层基于 [OneBot12 规范](https://12.onebot.dev/) · 感谢所有为开源社区做出贡献的开发者和作者
330
363
 
331
364
  </div>
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "ErisPulse"
7
- version = "2.4.6-dev.0"
7
+ version = "2.4.6-dev.2"
8
8
  description = "ErisPulse 是一个模块化、可扩展的异步 Python SDK 框架,主要用于构建高效、可维护的机器人应用程序。"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -158,7 +158,7 @@ class CLI:
158
158
  self.parser.print_help()
159
159
  return
160
160
 
161
- if unknown and args.command not in ("install",):
161
+ if unknown and args.command not in ("install", "create"):
162
162
  console.print(f"[warning]未识别的参数: {' '.join(unknown)}[/]")
163
163
 
164
164
  try: