Add automated session logging system
Some checks failed
Build and Deploy Docs / build-and-deploy (push) Has been cancelled

- Created logs/ structure (sessions, operations, incidents)
- Added session-start/log/end scripts
- Installed Git hooks for auto-logging commits/pushes
- Added shell integration for zsh
- Created CHANGELOG.md
- Documented today's session (2026-01-10)
This commit is contained in:
Apple
2026-01-10 04:53:17 -08:00
parent e67882fd15
commit 744c149300
260 changed files with 6364 additions and 68 deletions

View File

@@ -25,3 +25,12 @@ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7007"]

View File

@@ -335,3 +335,12 @@ Internal DAARION service

View File

@@ -61,3 +61,12 @@ logging:

View File

@@ -196,3 +196,12 @@ if __name__ == "__main__":

View File

@@ -103,3 +103,12 @@ class UsageTracker:

View File

@@ -62,3 +62,12 @@ class UsageLog(BaseModel):

View File

@@ -11,3 +11,12 @@ __all__ = ['BaseProvider', 'OpenAIProvider', 'DeepSeekProvider', 'LocalProvider'

View File

@@ -37,3 +37,12 @@ class BaseProvider(Protocol):

View File

@@ -76,3 +76,12 @@ class DeepSeekProvider:

View File

@@ -98,3 +98,12 @@ class LocalProvider:

View File

@@ -76,3 +76,12 @@ class OpenAIProvider:

View File

@@ -11,3 +11,12 @@ python-multipart==0.0.6

View File

@@ -76,3 +76,12 @@ class ModelRouter: