Update SDK for identity mailbox auto-creation and vault deletion; migrate URLs#23
Merged
Update SDK for identity mailbox auto-creation and vault deletion; migrate URLs#23
Conversation
- Identity creation now auto-creates mailbox; add display_name param - Add email_address to identity response types (Python + TypeScript) - Remove standalone mailbox creation (MailboxesResource.create, AgentIdentity.createMailbox) - Add ResourceStatus enum; narrow identity update status to active/paused - Add VaultResource.delete() and deleted_at to VaultInfo - Migrate console.inkbox.ai → inkbox.ai/console, api.inkbox.ai → inkbox.ai - Update examples, CLI, skills, docs, and tests Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Vault status already conveys lifecycle state; no need to surface additional server-side metadata in the SDK. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Add email_address to test fixtures for _AgentIdentityData - Remove mailbox create tests (endpoint removed) - Clean up mock and CLI docs Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
# Conflicts: # sdk/python/tests/test_agent_identity.py
Adds three new methods to VaultResource in both TypeScript and Python:
- initialize(vaultKey, organizationId): generates org encryption key,
wraps with primary key + 4 recovery codes, POSTs to /initialize
- updateKey/update_key: replaces primary vault key via PUT /keys/primary,
supports normal (current key) and recovery (recovery code) auth modes
- deleteKey/delete_key: derives auth_hash and DELETEs /keys/{auth_hash}
Also adds PUT method to both HTTP transports, VaultInitializeResult type,
and updated exports.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
rayruizhiliao
previously approved these changes
Mar 27, 2026
Update README, SKILL, and package versions
…ommands Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
rayruizhiliao
approved these changes
Mar 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updates include:
console.inkbox.ai→inkbox.ai/consoleandapi.inkbox.ai/api→inkbox.ai/api.display_name,email_local_part).vault_secret_ids, including single UUID, list,"*"/"all").email_addressto identity response types (Python + TypeScript).MailboxesResource.create,AgentIdentity.createMailbox).ResourceStatusenum; narrow identity update status to active/paused.VaultResource.delete().