Stateless Global Agent Identity Protocol (SGAIP) reference implementation
Project description
SGAIP Python Reference Implementation
- Package: sgaip
- Version: 0.1.0
- License: Apache-2.0
- Python: 3.10+
- Repository: https://github.com/k-kaundal/sgaip
- PyPI: https://pypi.org/project/sgaip/
Overview
sgaip is a production-ready reference implementation of the Stateless Global Agent Identity Protocol (SGAIP).
It provides:
- Core library – deterministic identity derivation, Ed25519 operations
- CLI tool – global
sgaipcommand for key generation, signing, verification - Full type safety – complete type hints with mypy support
- Comprehensive tests – unit tests with pytest + coverage
- Production quality – linting, formatting, strict type checking
Installation
From PyPI
pip install sgaip
From Source
git clone https://github.com/k-kaundal/sgaip.git
cd sgaip/reference/python
pip install -e .
With Development Tools
pip install -e .[dev]
CLI Usage
The sgaip command provides three main operations:
1. Generate a Keypair
sgaip keygen --private agent.sk --public agent.pk
Outputs:
agent.sk– private key (keep secret!)agent.pk– public key- Derived Agent ID (AID) to console
2. Sign a Message
sgaip sign --private agent.sk --message "Hello, World!"
sgaip sign --private agent.sk --file data.txt --out data.sig
Creates:
signature.bin(or custom--outfile)
3. Verify Offline
sgaip verify --public agent.pk --signature signature.bin --message "Hello, World!"
sgaip verify --public agent.pk --signature data.sig --file data.txt
Prints:
- ✅ Signature validity
- Derived Agent ID (AID)
All operations work completely offline – no internet required.
Python API
Basic Usage
from sgaip import (
generate_keypair,
serialize_public_key,
derive_agent_id,
sign_challenge,
verify_proof,
)
# Generate identity
private_key, public_key = generate_keypair()
public_bytes = serialize_public_key(public_key)
# Derive Agent Identity
aid = derive_agent_id(public_bytes)
print(f"Agent ID: {aid}")
# Sign a challenge
challenge = b"verifier-challenge-123"
signature = sign_challenge(private_key, challenge)
# Verify offline
is_valid = verify_proof(public_bytes, challenge, signature, expected_aid=aid)
assert is_valid
Advanced: Import from Package
import sgaip
# All public functions available
print(sgaip.__version__)
keypair = sgaip.generate_keypair()
aid = sgaip.derive_agent_id(sgaip.serialize_public_key(keypair[1]))
Development
Setup
cd sgaip/reference/python
python -m venv venv
source venv/bin/activate
pip install -e .[dev]
Testing
# Run all tests
pytest tests/
# With coverage
pytest tests/ --cov=sgaip --cov-report=html
# Watch mode
pytest-watch tests/
Linting & Formatting
# Format code
black sgaip/ tests/ bin/
# Check style
black --check sgaip/ tests/
# Lint with ruff
ruff check sgaip/ tests/
ruff check --fix sgaip/ tests/
# Type check
mypy sgaip/
Running Individual Commands
# Keygen
python -m sgaip keygen --private test.sk --public test.pk
# Sign
python -m sgaip sign --private test.sk --message "test"
# Verify
python -m sgaip verify --public test.pk --signature signature.bin --message "test"
Security Notes
⚠️ Reference implementation — not security audited.
- Protect private key files (
.sk) – anyone with the key controls the identity - Loss of private key means loss of identity (no recovery mechanism)
- SGAIP provides authentication only, not trust or authorization
- See specs/threat-model.md for detailed security analysis
Specifications
This package implements:
Testing & Interoperability
Python tests verify:
- ✅ Deterministic identity derivation (same AID for same public key)
- ✅ Ed25519 signature scheme correctness
- ✅ Offline verification
- ✅ CLI command handling
Run the full suite:
pytest tests/ --cov=sgaip
Troubleshooting
Issue: ModuleNotFoundError: No module named 'cryptography'
pip install cryptography
Issue: Type checking fails
mypy sgaip/ --ignore-missing-imports
Issue: Tests fail on import
Ensure you've installed in editable mode:
pip install -e .
Contributing
See DEVELOPMENT.md for contribution guidelines.
Key areas for contribution:
- Additional test vectors
- Performance optimizations
- Documentation improvements
- Additional language bindings
License
Apache License 2.0 – see LICENSE
Related Projects
- JavaScript/TypeScript: reference/js/
- Protocol Specification: specs/
- Test Vectors: test-vectors/
Questions?
Open an issue on GitHub or see GOVERNANCE.md.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sgaip-0.1.1.tar.gz.
File metadata
- Download URL: sgaip-0.1.1.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb37baa7ceead99f1d7d7a76df84906a27eeb759d8c51f3a9f930f87fd30b506
|
|
| MD5 |
25ecc3ec473c97682773c2e31a0f36c6
|
|
| BLAKE2b-256 |
4ab51dd92828f65082b7a83ea037e844d4fa1cf8b6a34319cb860b6b6b8dd524
|
File details
Details for the file sgaip-0.1.1-py3-none-any.whl.
File metadata
- Download URL: sgaip-0.1.1-py3-none-any.whl
- Upload date:
- Size: 3.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ec8667c10b092a829bc4281cc1f22a4bc302d594871aebb108293c6767a7e18
|
|
| MD5 |
5791ea5fa32a29c9721b7e43189cd8c1
|
|
| BLAKE2b-256 |
825e408a27f9cdafed6ab2b7660bdb7fb932553a08d0efb42feb7b46ebc83cb8
|