├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── feature-request.yml └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── _conf_schema.json ├── docs ├── README.md ├── commands.md ├── structure.md └── tips.md ├── main.py ├── metadata.yaml ├── requirements.txt └── utils ├── __init__.py ├── history_storage.py ├── image_caption.py ├── llm_utils.py ├── message_utils.py ├── persona_utils.py ├── reply_decision.py └── text_filter.py /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23q3/astrbot_plugin_SpectreCore/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23q3/astrbot_plugin_SpectreCore/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23q3/astrbot_plugin_SpectreCore/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23q3/astrbot_plugin_SpectreCore/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23q3/astrbot_plugin_SpectreCore/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23q3/astrbot_plugin_SpectreCore/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23q3/astrbot_plugin_SpectreCore/HEAD/README.md -------------------------------------------------------------------------------- /_conf_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23q3/astrbot_plugin_SpectreCore/HEAD/_conf_schema.json -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23q3/astrbot_plugin_SpectreCore/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23q3/astrbot_plugin_SpectreCore/HEAD/docs/commands.md -------------------------------------------------------------------------------- /docs/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23q3/astrbot_plugin_SpectreCore/HEAD/docs/structure.md -------------------------------------------------------------------------------- /docs/tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23q3/astrbot_plugin_SpectreCore/HEAD/docs/tips.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23q3/astrbot_plugin_SpectreCore/HEAD/main.py -------------------------------------------------------------------------------- /metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23q3/astrbot_plugin_SpectreCore/HEAD/metadata.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | jsonpickle>=3.0.0 -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23q3/astrbot_plugin_SpectreCore/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/history_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23q3/astrbot_plugin_SpectreCore/HEAD/utils/history_storage.py -------------------------------------------------------------------------------- /utils/image_caption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23q3/astrbot_plugin_SpectreCore/HEAD/utils/image_caption.py -------------------------------------------------------------------------------- /utils/llm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23q3/astrbot_plugin_SpectreCore/HEAD/utils/llm_utils.py -------------------------------------------------------------------------------- /utils/message_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23q3/astrbot_plugin_SpectreCore/HEAD/utils/message_utils.py -------------------------------------------------------------------------------- /utils/persona_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23q3/astrbot_plugin_SpectreCore/HEAD/utils/persona_utils.py -------------------------------------------------------------------------------- /utils/reply_decision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23q3/astrbot_plugin_SpectreCore/HEAD/utils/reply_decision.py -------------------------------------------------------------------------------- /utils/text_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/23q3/astrbot_plugin_SpectreCore/HEAD/utils/text_filter.py --------------------------------------------------------------------------------