Skip to main content

SecureVector SDK for CrewAI

PyPI Downloads Python License

Bring the SecureVector local threat monitor's three controls — tool-call permissions, secret / data-leak detection, and threat detection — to every CrewAI tool call, with tamper-evident audit logging.

pip install securevector-sdk-crewai

📦 One install — batteries included. pip install securevector-sdk-crewai also installs the local SecureVector app (securevector-ai-monitor): the adapter and the detection engine + tamper-evident audit chain arrive in a single pip install. The SDK is a thin interception layer — the app must be running locally (securevector-app --web) for it to do anything.

🌐 Pointing at your own cloud? Use the lightweight install. If you've deployed SecureVector to your own cloud, you don't need the bundled local app. Install only the adapter on the machine where your agents run, and point it at your deployment:

# lightweight — adapter only, no local app (your env already has crewai)
pip install securevector-sdk-crewai --no-deps

# point at your SecureVector endpoint — all you need for a private (in-VPC) endpoint
export SECUREVECTOR_SDK_APP_URL=https://<your-securevector-endpoint>

# OPTIONAL: only if your endpoint is publicly exposed and gated with an inbound token.
# A private endpoint in your own VPC needs no key. To gate a public one, use a free
# SecureVector cloud account API key or an SVET token — it gates access only; no agent
# data is sent to SecureVector.
export SECUREVECTOR_API_KEY=<SecureVector account key or SVET token>

The adapter then forwards every tool call to your remote deployment instead of a local app. The default pip install securevector-sdk-crewai (no --no-deps) still bundles the app for local use.

Quick start

Wrap your tools (recommended — robust across CrewAI versions):

from securevector_sdk_crewai import secure_tools

agent = Agent(tools=secure_tools(my_tools), ...)

or install globally (best-effort monkeypatch of CrewAI's BaseTool):

from securevector_sdk_crewai import install

install(mode="observe")

or fully zero-config:

import securevector_sdk_crewai.auto   # reads env, installs globally

LLM cost trackinginstall() / .auto also patch Crew.kickoff so every run's token usage (prompt / completion / cached) posts to the app's Cost Tracking, where the pricing table turns it into real dollars (your crew runs on your own API keys) and per-agent budgets apply. If you only wrap tools with secure_tools(), post usage explicitly after a run:

from securevector_sdk_crewai import track_crew_usage

result = crew.kickoff()
track_crew_usage(crew, agent_id="research-crew")   # agent_id optional

Records are attributed to agent_id="crewai-agent" by default — override via track_crew_usage(crew, agent_id=...) or SECUREVECTOR_SDK_AGENT_ID. Cost capture is best-effort: an unreachable app never breaks the crew.

What happens on every tool call

Before a tool runs, the SDK:

  1. (a) Permissions — resolves an allow/block verdict for the tool, using the app's own precedence: cloud-pushed synced policy → local overrideessential registry → default-allow.
  2. (b)+(c) Secret & threat scan — sends the serialized tool input through the app's /analyze pipeline.

After the tool returns, the result is scanned the same way to catch secrets / exfiltration in tool output. Every decision is written to the app's audit chain tagged runtime_kind="crewai".

observe vs enforce

local app reachable local app unreachable
observe (default) log + advisory verdict; tool always runs tool runs (fail-open)
enforce (opt-in) tool runs only if the verdict ≠ block tool denied (fail-closed)
install(mode="enforce")   # blocks denied tools and fails closed if the app is down

In enforce mode a denied tool raises ToolBlocked before it executes; enforce also prints a one-time disclosure to stderr.

Configuration

All optional, via env or kwargs:

Env var Default Meaning
SECUREVECTOR_SDK_APP_URL http://127.0.0.1:8741 local app base URL
SECUREVECTOR_SDK_MODE observe observe or enforce
SECUREVECTOR_SDK_TIMEOUT_MS 3000 per-call verdict timeout
SECUREVECTOR_SDK_RISK_THRESHOLD 70 risk score that blocks in enforce mode
SECUREVECTOR_SDK_AGENT_ID crewai-agent agent id shown in Cost Tracking
SECUREVECTOR_SDK_DISABLED (unset) set truthy to no-op

Compliance

The tool-call-level, attributed, tamper-evident audit trail this produces is exactly the action-layer logging auditors ask for under EU AI Act Art. 12 / 15. This SDK produces the local evidence; the cloud governance surface turns it into an auditor-ready pack.

Trademarks

SecureVector is the product name of this SDK. CrewAI is a trademark of CrewAI, Inc. This is an independent, community SDK that integrates with CrewAI via its public tool API. It is not affiliated with, sponsored by, or endorsed by CrewAI, Inc. The name uses "crewai" only descriptively, to identify the framework this package works with (nominative fair use).

License

Apache-2.0. See LICENSE and NOTICE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

securevector_sdk_crewai-1.2.0.tar.gz (29.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

securevector_sdk_crewai-1.2.0-py3-none-any.whl (26.3 kB view details)

Uploaded Python 3

File details

Details for the file securevector_sdk_crewai-1.2.0.tar.gz.

File metadata

  • Download URL: securevector_sdk_crewai-1.2.0.tar.gz
  • Upload date:
  • Size: 29.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for securevector_sdk_crewai-1.2.0.tar.gz
Algorithm Hash digest
SHA256 753167c7d5ad86b92258e358dc760ac9770e78564ff0c1690373f7f2fc90126b
MD5 e087f1b908e42445d961e2a5ccb0d4e1
BLAKE2b-256 27bb7f62a82dd9343a989ecf0bf26668300c0588a4ac98bbc8f39aa96faa3972

See more details on using hashes here.

Provenance

The following attestation bundles were made for securevector_sdk_crewai-1.2.0.tar.gz:

Publisher: release.yml on Secure-Vector/securevector-sdk-crewai

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file securevector_sdk_crewai-1.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for securevector_sdk_crewai-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d9973190541559a2d2d93d3d18639a4c587f180f64bcb1bf92d1a791e1c37d5a
MD5 66833c4fbaba1e0c56caa0fda1fad7d7
BLAKE2b-256 893fffaa8ba51b74cc7a39c1f5b39e15c5814f4c736951c91bc104539c9d48b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for securevector_sdk_crewai-1.2.0-py3-none-any.whl:

Publisher: release.yml on Secure-Vector/securevector-sdk-crewai

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

1.2.2

2 files

1.2.1

2 files

This release

1.2.0 This release

2 files

1.1.0

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page