mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-20 02:55:08 +08:00
Add interactive plugin init prompts and normalize generated plugin names to the astrbot_plugin_ convention. Update CLI tests for the new skeleton layout and ignore generated plugin directories in git and coverage tooling. Also include related runtime logging adjustments from the current worktree.
50 lines
479 B
Plaintext
50 lines
479 B
Plaintext
# OS files
|
|
.DS_Store
|
|
|
|
# Python bytecode and caches
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyd
|
|
*.so
|
|
.pytest_cache/
|
|
pytest-cache-files-*/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
|
|
# Build artifacts
|
|
build/
|
|
dist/
|
|
site/
|
|
wheels/
|
|
*.egg-info/
|
|
.eggs/
|
|
pip-wheel-metadata/
|
|
|
|
#
|
|
fork-docs/
|
|
tmp/
|
|
openspec/
|
|
scripts/
|
|
docs/zh/reference
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
plugins/.venv/
|
|
|
|
# Tool caches
|
|
.uv-cache/
|
|
.astrbot/
|
|
|
|
# IDE files
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
uv.lock
|
|
/astrBot/
|
|
plugins/ |