- auth/users.py: User store with Argon2id password hashing - auth/sessions.py: Token-based session management with expiry - server/app.py: aiohttp server with auth middleware and WebSocket - console/client.py: SSH-style login console client Server endpoints: /auth/login, /auth/logout, /auth/me, /health, /ws Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
386 B
Python
12 lines
386 B
Python
"""
|
|
console — Console interfaces for xml-pipeline.
|
|
|
|
Provides:
|
|
- SecureConsole: Local keyboard-only console (no network)
|
|
- ConsoleClient: Network client connecting to server with auth
|
|
"""
|
|
|
|
from agentserver.console.secure_console import SecureConsole, PasswordManager
|
|
from agentserver.console.client import ConsoleClient
|
|
|
|
__all__ = ["SecureConsole", "PasswordManager", "ConsoleClient"]
|