docs: add Vaultak runtime security integration guide#801
docs: add Vaultak runtime security integration guide#801samueloladji-beep wants to merge 1 commit into
Conversation
Adds en/use-dify/monitor/integrations/integrate-vaultak.mdx — a guide for wrapping Dify API calls (chat-messages, workflows/run) with Vaultak's runtime security SDK to risk-score user inputs, enforce policy rules, and mask PII in responses before they reach end users. Also registers en/use-dify/monitor/integrations/integrate-vaultak in docs.json for all three language navigation trees (en, zh, ja). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
@AllenWriter @alterxyz — ready for review. This adds a Vaultak runtime security integration guide to the Dify monitoring docs. |
|
Hey @RiskeyL, all CI checks are passing — would appreciate a review when you get a chance. Thanks! |
|
@samueloladji-beep Thanks for the contribution, and for taking the time to write this up. We're not able to merge integration guides for third-party products like Vaultak into the official Dify docs. This repo covers Dify's own features and its first-party integrations, so vendor-specific guides fall outside what we maintain here. Keeping that boundary lets us keep the docs focused and verifiable. We'd still love for Dify users to find your integration. Better places to share it:
Thanks again, and apologies we can't take this one. |
Summary
Adds a new integration guide for Vaultak — a runtime security platform that adds real-time protection to Dify API calls by risk-scoring user inputs, enforcing policy rules, and masking PII in responses.
Install:
pip install vaultakChanges
en/use-dify/monitor/integrations/integrate-vaultak.mdx(new)Covers two integration patterns with complete code examples:
POST /v1/chat-messages) — score the user message before sending, mask PII in the responsePOST /v1/workflows/run) — check each workflow input against policy, mask PII in all output fieldsIncludes a configuration reference table and links to the Vaultak dashboard and Dify API reference.
docs.json— registersintegrate-vaultakin the monitor/integrations nav group for all three language trees (en,zh,ja).Note on integration approach
Unlike the observability-only tools in this section (Langfuse, LangSmith, Arize, etc.), Vaultak sits between the application and the Dify API rather than receiving traces from Dify. The page makes this distinction clear in the opening section.
Test plan
/en/use-dify/monitor/integrations/integrate-vaultak🤖 Generated with Claude Code