
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
@lockzero/vault-sync
Advanced tools
Bidirectional sync between LockZero and HashiCorp Vault KV v2.
npm install -g @lockzero/vault-sync
| Credential | How to provide |
|---|---|
| LockZero API key | --lz-key <key> or LOCKZERO_API_KEY env var |
| Vault address | --vault-addr <addr> or VAULT_ADDR env var |
| Vault token | --vault-token <token> or VAULT_TOKEN env var |
Each LockZero namespace is stored as a single KV v2 secret at lockzero/<namespace>. All fields are stored as key→value pairs within the same secret (Vault KV naturally stores maps).
Example: namespace openai → Vault path secret/data/lockzero/openai
push — LockZero → Vaultlockzero-vault push \
--namespace openai \
--vault-addr https://vault.example.com \
--vault-token $VAULT_TOKEN \
--mount secret
# Preview without writing
lockzero-vault push --namespace openai --dry-run
pull — Vault → LockZerolockzero-vault pull \
--namespace openai \
--vault-addr https://vault.example.com \
--vault-token $VAULT_TOKEN
# Preview without writing
lockzero-vault pull --namespace openai --dry-run
diff — show what would change# Show what a push would do
lockzero-vault diff --namespace openai --direction push
# Show what a pull would do
lockzero-vault diff --namespace openai --direction pull
watch — continuous sync (Vault → LockZero)Polls Vault every N seconds. When field values change, they are automatically synced to LockZero. Uses SHA-256 hash comparison to detect changes with no false positives from key-ordering differences.
lockzero-vault watch \
--namespace openai \
--vault-addr https://vault.example.com \
--vault-token $VAULT_TOKEN \
--interval 30
# Output:
# [2026-05-10T06:00:00.000Z] Baseline established: 3 field(s) at lockzero/openai
# [2026-05-10T06:00:30.000Z] No changes (3 field(s) unchanged)
# [2026-05-10T06:01:00.000Z] Change detected at lockzero/openai — syncing to LockZero…
# [2026-05-10T06:01:00.123Z] Synced 3 field(s) successfully
Press Ctrl+C to stop.
| Flag | Default | Description |
|---|---|---|
--namespace | required | LockZero namespace (e.g. openai, stripe) |
--lz-key | env | LockZero API key |
--lz-base-url | https://api.lockzero.io | LockZero base URL |
--vault-addr | env | Vault server address |
--vault-token | env | Vault token |
--mount | secret | Vault KV mount path |
--direction | push | Diff direction: push or pull |
--interval | 30 | Watch polling interval in seconds |
--dry-run | false | Preview changes without writing |
path "secret/data/lockzero/*" {
capabilities = ["create", "read", "update", "list"]
}
path "secret/metadata/lockzero/*" {
capabilities = ["list"]
}
FAQs
Bidirectional sync between LockZero and HashiCorp Vault (KV v2)
The npm package @lockzero/vault-sync receives a total of 7 weekly downloads. As such, @lockzero/vault-sync popularity was classified as not popular.
We found that @lockzero/vault-sync demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.