Programmatic usage
Each SDK exposes the same core operations as a library, so you can integrate credential governance directly into your application code.Viewing credentials
List all passports in your vault:Audit trail
Every action in ID Wispera is logged: creation, access, modification, revocation, sharing, and delegation. View the full audit trail:Command reference
| Action | TypeScript | Python | Go |
|---|---|---|---|
| Init vault | idw init | idw-py init | idw init |
| Scan directory | idw scan [path] | idw-py scan [path] | idw scan [path] |
| Scan system | idw scan --system | idw-py scan --system | idw scan --system |
| Import all | idw import <path> --all | idw-py import <path> --all | idw import <path> --all |
| Import by confidence | idw import <path> --min-confidence 0.9 | idw-py import <path> --min-confidence 0.9 | idw import <path> --min-confidence 0.9 |
| Import file | idw import <file> | idw-py import <file> | idw import <file> |
| Import OpenClaw | idw import --format openclaw | — | — |
| List passports | idw list | idw-py list | idw list |
| Show passport | idw show <id> | idw-py show <id> | idw show <id> |
| Show with secret | idw show <id> --reveal | idw-py show <id> --reveal | idw show <id> --reveal |
| Revoke passport | idw revoke <id> | idw-py revoke <id> | idw revoke <id> |
| Audit log | idw audit | idw-py audit | idw audit |
Framework integrations
Each SDK includes integration providers that give AI agent frameworks governed credential access.| Integration | TypeScript | Python | Go |
|---|---|---|---|
| Base Provider | WisperaCredentialProvider | WisperaBaseProvider | CredentialProvider |
| OpenAI Agents SDK | Yes | Yes | Yes |
| Google A2A Protocol | Yes | Yes | Yes |
| Slack | Yes | Yes | Yes |
| LangChain | Yes | Yes (existing) | N/A |
| CrewAI | N/A | Yes (existing) | N/A |
Next steps
Framework integrations
Connect AI agent frameworks to governed credentials in the vault.
Passport model
Understand the data model behind credential governance.
Policy engine
Define rules to enforce governance policies across all credentials.
MCP integration
Connect ID Wispera to AI agents via the Model Context Protocol.