mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-05-06 20:42:43 +08:00
- Add structured runtime config files (AGENT_PROFILE.md, AGENT_WORKFLOW.md, AGENT_HOOKS.md, USER_PREFERENCES.md, SYSTEM_TASKS.md, CURRENT_PERSONA.md) for persona, workflow, hooks, and system tasks - Implement agent_runtime_manager to load, validate, and render runtime config and system task prompts - Refactor agent initialization to use runtime-managed directories for skills, jobs, memory, and activity logs - Add AgentHooksMiddleware for structured pre/in/post hooks injection - Replace hardcoded system task prompts with template-driven rendering from SYSTEM_TASKS.md - Update tests to cover runtime config loading, migration, and system task prompt rendering - Update .gitignore to exclude config/agent/
40 lines
435 B
Plaintext
40 lines
435 B
Plaintext
.idea/
|
|
.DS_Store
|
|
*.c
|
|
*.so
|
|
*.pyd
|
|
build/
|
|
cython_cache/
|
|
dist/
|
|
nginx/
|
|
test.py
|
|
safety_report.txt
|
|
app/helper/sites.py
|
|
app/helper/*.so
|
|
app/helper/*.pyd
|
|
app/helper/*.bin
|
|
app/plugins/**
|
|
!app/plugins/__init__.py
|
|
config/cookies/**
|
|
config/app.env
|
|
config/user.db*
|
|
config/sites/**
|
|
config/agent/
|
|
config/logs/
|
|
config/temp/
|
|
config/cache/
|
|
.runtime/
|
|
public/
|
|
.moviepilot.env
|
|
*.pyc
|
|
*.log
|
|
.vscode
|
|
venv
|
|
|
|
# Pylint
|
|
pylint-report.json
|
|
.pylint.d/
|
|
|
|
# AI
|
|
.claude/
|