14 lines
488 B
Python
14 lines
488 B
Python
"""agent-cv — a verifiable, cross-platform CV for AI agents."""
|
|
from .model import CV, Account, VERIFIED, CLAIMED
|
|
from .build import build_cv
|
|
from .verify import verify_cv, all_verified
|
|
from .render import render_markdown
|
|
from .proof import make_nonce, parse_nonce, verify_link
|
|
|
|
__version__ = "0.1.0"
|
|
__all__ = [
|
|
"CV", "Account", "VERIFIED", "CLAIMED",
|
|
"build_cv", "verify_cv", "all_verified", "render_markdown",
|
|
"make_nonce", "parse_nonce", "verify_link", "__version__",
|
|
]
|