Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
273 changes: 134 additions & 139 deletions Cargo.lock

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
description: "Export MCP tool invocation metrics to ICA metering service"
author: "ICA Team"
version: "0.1.0"
version: "0.1.1"
kind: "cpex_ica_metering_exporter.plugin.IcaMeteringExporterPlugin"
available_hooks:
- "tool_pre_invoke"
Expand Down
2 changes: 1 addition & 1 deletion plugins/python/ica_metering_exporter/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "cpex-ica-metering-exporter"
version = "0.1.0"
version = "0.1.1"
description = "Export MCP tool invocation metrics to ICA core-services metering endpoint"
authors = [{ name = "ICA Team" }]
license = { text = "Apache-2.0" }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "encoded_exfil_detection"
version = "0.3.7"
version = "0.3.8"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
description: "Detect suspicious encoded payload exfiltration patterns in prompts, tool outputs, and resources"
author: "ContextForge Contributors"
version: "0.3.7"
version: "0.3.8"
kind: "cpex_encoded_exfil_detection.encoded_exfil_detection.EncodedExfilDetectorPlugin"
available_hooks:
- "prompt_pre_fetch"
Expand Down
2 changes: 1 addition & 1 deletion plugins/rust/python-package/pii_filter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pii_filter"
version = "0.3.7"
version = "0.3.8"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
description: "Rust-backed PII detection and masking for prompt arguments, tool inputs, and tool outputs"
author: "ContextForge Contributors"
version: "0.3.7"
version: "0.3.8"
kind: "cpex_pii_filter.pii_filter.PIIFilterPlugin"
available_hooks:
- "prompt_pre_fetch"
Expand Down
2 changes: 1 addition & 1 deletion plugins/rust/python-package/rate_limiter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rate_limiter"
version = "0.1.8"
version = "0.1.9"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
description: "Rate limiting by user/tenant/tool — memory (single-process) or Redis (shared across instances)"
author: "ContextForge Contributors"
version: "0.1.8"
version: "0.1.9"
kind: "cpex_rate_limiter.rate_limiter.RateLimiterPlugin"
available_hooks:
- "prompt_pre_fetch"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "retry_with_backoff"
version = "0.3.8"
version = "0.3.9"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
description: "High-performance retry policy engine with exponential backoff, jitter, per-tool overrides, and retry metadata for transient tool and resource failures - Rust-majority architecture (95% Rust / 5% Python)"
author: "ContextForge Contributors"
version: "0.3.8"
version: "0.3.9"
kind: "cpex_retry_with_backoff.retry_with_backoff.RetryWithBackoffPlugin"
available_hooks:
- "tool_post_invoke"
Expand Down
2 changes: 1 addition & 1 deletion plugins/rust/python-package/secrets_detection/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secrets_detection"
version = "0.3.11"
version = "0.3.12"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
description: "Detect likely credentials and secrets in prompt input, tool output, and resource content"
author: "ContextForge Contributors"
version: "0.3.11"
version: "0.3.12"
kind: "cpex_secrets_detection.secrets_detection.SecretsDetectionPlugin"
available_hooks:
- "prompt_pre_fetch"
Expand Down
2 changes: 1 addition & 1 deletion plugins/rust/python-package/sql_sanitizer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sql_sanitizer"
version = "0.1.1"
version = "0.1.2"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
description: "Rust-backed SQL statement sanitizer — blocks risky DDL/DML and WHERE-clause-less mutations"
author: "ContextForge Contributors"
version: "0.1.1"
version: "0.1.2"
kind: "cpex_sql_sanitizer.sql_sanitizer.SQLSanitizerPlugin"
available_hooks:
- "prompt_pre_fetch"
Expand Down
2 changes: 1 addition & 1 deletion plugins/rust/python-package/url_reputation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "url_reputation"
version = "0.3.6"
version = "0.3.7"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
description: "Static URL reputation checks using blocked domains and URL patterns"
author: "ContextForge Contributors"
version: "0.3.6"
version: "0.3.7"
kind: "cpex_url_reputation.url_reputation.URLReputationPlugin"
available_hooks:
- "resource_pre_fetch"
Expand Down
774 changes: 421 additions & 353 deletions uv.lock

Large diffs are not rendered by default.