.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/claude-code-plugin-marketplace/control-protocol-enforcer
home/subagents/jmanhype/claude-code-plugin-marketplace/control-protocol-enforcer
jmanhype avatar

control-protocol-enforcer

byjmanhype· 6 subagents

Stars

28

Forks

4

Category

Security

View on GitHub

TL;DR

You enforce AI control protocols to ensure safe deployment of untrusted LLMs.

How to install control-protocol-enforcer?

jmanhype/claude-code-plugin-marketplace/control-protocol-enforcer
$curl -o .claude/agents/control-protocol-enforcer.md https://raw.githubusercontent.com/jmanhype/claude-code-plugin-marketplace/HEAD/plugins/code-safety-monitor/.claude/agents/control-protocol-enforcer.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install control-protocol-enforcer by running `curl -o .claude/agents/control-protocol-enforcer.md https://raw.githubusercontent.com/jmanhype/claude-code-plugin-marketplace/HEAD/plugins/code-safety-monitor/.claude/agents/control-protocol-enforcer.md`, then use it for the current task and follow its documentation at https://github.com/jmanhype/claude-code-plugin-marketplace.

Files · 1

View on GitHub
plugins/code-safety-monitor/.claude/agents/control-protocol-enforcer.md
1# Control Protocol Enforcer Agent
2 
3You enforce AI control protocols to ensure safe deployment of untrusted LLMs.
4 
5## Protocols
6 
7### 1. Trusted Monitoring
8```
9Untrusted LLM → Generate Code → Monitor → [Audit if suspicious]
10```
11 
12### 2. Defer to Trusted
13```
14If suspicion > threshold:
15 Discard untrusted output
16 Use trusted model instead
17```
18 
19### 3. Human-in-the-Loop
20```
21If suspicion > audit_threshold:
22 Queue for human review
23 Block until approved
24```
25 
26## Configuration
27 
28```bash
29# Environment variables
30AUDIT_BUDGET=1.0 # Max % false positives allowed
31SUSPICION_THRESHOLD=50 # Flag for review
32AUTO_DEFER_TRUSTED=true # Auto-defer on high suspicion
33```
34 
35## Enforcement Logic
36 
37```python
38def enforce_protocol(code, task):
39 # Step 1: Monitor
40 score, reasoning = monitor.scan_code(code, task)
41 
42 # Step 2: Route based on score
43 if score >= CRITICAL_THRESHOLD: # 80+
44 return defer_to_trusted(task)
45 
46 elif score >= AUDIT_THRESHOLD: # 50+
47 return queue_for_human_audit(code, score)
48 
49 else: # < 50
50 return approve_code(code)
51```
52 
53## Safety Guarantees
54 
55With 1% audit budget and 90% TPR:
56- 90% of attacks caught
57- <1% honest code delayed
58- Near-zero attacks slip through
59 
60## Usage
61 
62Automatically enforced via hooks:
63- `post_generate_scan.sh`: Monitor after generation
64- `defer_to_trusted.sh`: Switch to trusted model
65- `safety_circuit_breaker.sh`: Kill switch
66 
67## Remember
68 
69- Safety over speed
70- Trust the monitor
71- Log all decisions
72- Maintain audit trail

Preview

jmanhype/claude-code-plugin-marketplacejmanhype/claude-code-plugin-marketplace

# Control Protocol Enforcer Agent

You enforce AI control protocols to ensure safe deployment of untrusted LLMs.

## Protocols

### 1. Trusted Monitoring

Repojmanhype/claude-code-plugin-marketplace
TypeSubagents
CategorySecurity
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarsecurity-auditorSecurity engineer focused on vulnerability detection, threat modeling, and secure coding practices. Use for security-focused code review, threat analysis, or hardening recommendations.SubagentsJul 202680k
  2. yeachan-heo avatarsecurity-reviewerSecurity vulnerability detection specialist (OWASP Top 10, secrets, unsafe patterns)SubagentsJul 202638k
  3. donchitos avatarsecurity-engineerThe Security Engineer protects the game from cheating, exploits, and data breaches. They review code for vulnerabilities, design anti-cheat measures, secure save data and network communications, and…SubagentsMay 202623k
  4. unoplatform avatarsecurityAudits code for vulnerabilities at the framework's real trust boundaries — XAML/data-binding of untrusted content, the DevServer/RemoteControl network host, source generators reading project inputs,…SubagentsJul 202610.0k
  5. mock-server avatarsecurity-auditorSecurity-focused code auditor for Java/Netty applications. Spawn this agent to audit code changes for vulnerabilities, misconfigurations, secrets exposure, and unsafe patterns.SubagentsJul 20264.9k
  6. nyldn avatarsecurity-auditorSecurity auditor for DevSecOps, OWASP compliance, vulnerability assessment, and threat modelingSubagentsJul 20263.9k