xml-pipeline/xml_pipeline/auth/__init__.py
dullfig e653d63bc1 Rename agentserver to xml_pipeline, add console example
OSS restructuring for open-core model:
- Rename package from agentserver/ to xml_pipeline/
- Update all imports (44 Python files, 31 docs/configs)
- Update pyproject.toml for OSS distribution (v0.3.0)
- Move prompt_toolkit from core to optional [console] extra
- Remove auth/server/lsp from core optional deps (-> Nextra)

New console example in examples/console/:
- Self-contained demo with handlers and config
- Uses prompt_toolkit (optional, falls back to input())
- No password auth, no TUI, no LSP — just the basics
- Shows how to use xml-pipeline as a library

Import changes:
- from agentserver.* -> from xml_pipeline.*
- CLI entry points updated: xml_pipeline.cli:main

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-19 21:41:19 -08:00

19 lines
428 B
Python

"""
Authentication and authorization for xml-pipeline.
Provides:
- UserStore: User management with Argon2id password hashing
- SessionManager: Token-based session management
"""
from .users import User, UserStore, get_user_store
from .sessions import Session, SessionManager, get_session_manager
__all__ = [
"User",
"UserStore",
"get_user_store",
"Session",
"SessionManager",
"get_session_manager",
]