Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
ecbb53f
feat: add native llm guard pipeline
jeffscottward Mar 6, 2026
4ea31e1
fix: guard exit-only llm responses
jeffscottward Mar 6, 2026
ae34557
style: format llm guard changes
jeffscottward Mar 6, 2026
13a7fca
feat(llm-guard): implement core security scanning pipeline
Ashraf-Ali-aa Mar 9, 2026
4d95909
feat(llm-guard): add settings and configuration management
Ashraf-Ali-aa Mar 9, 2026
df96a8a
feat(llm-guard): add security UI components
Ashraf-Ali-aa Mar 9, 2026
443df30
feat(llm-guard): add hooks and app integration
Ashraf-Ali-aa Mar 9, 2026
12c6a35
test(llm-guard): add comprehensive test coverage
Ashraf-Ali-aa Mar 21, 2026
42e1ed3
docs(llm-guard): add documentation and dependencies
Ashraf-Ali-aa Mar 9, 2026
45fbd56
fix: address code review feedback for LLM Guard PR
Ashraf-Ali-aa Mar 9, 2026
df5b23f
deps: add uuid package for security-logger
Ashraf-Ali-aa Mar 9, 2026
32adb4d
fix: address additional code review feedback for LLM Guard PR
Ashraf-Ali-aa Mar 9, 2026
20e885d
docs: update feature documentation and add LLM Guard to Encore Features
Ashraf-Ali-aa Mar 10, 2026
3b31d10
fix: suppress prompt preview when security findings detected
Ashraf-Ali-aa Mar 15, 2026
f27777c
fix: use Maestro session ID for LlmGuardIndicator
Ashraf-Ali-aa Mar 15, 2026
0206d67
fix: resolve TypeScript errors after cherry-pick
Ashraf-Ali-aa Mar 21, 2026
b7f5037
fix: address CodeRabbit and Greptile security review findings
Ashraf-Ali-aa Mar 21, 2026
561cec5
fix: address additional CodeRabbit and Greptile review findings
Ashraf-Ali-aa Mar 21, 2026
d130056
fix: serialize file writes in security-logger to prevent interleaving
Ashraf-Ali-aa Mar 21, 2026
a465e85
Merge branch 'rc' into llm-guard-cherry
Ashraf-Ali-aa Mar 22, 2026
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
5 changes: 5 additions & 0 deletions docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,11 @@
"maestro-cue-examples"
]
},
{
"group": "Security",
"icon": "shield-halved",
"pages": ["security/llm-guard"]
},
{
"group": "Providers & CLI",
"pages": ["provider-notes", "multi-claude", "cli"]
Expand Down
1 change: 1 addition & 0 deletions docs/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ icon: sparkles
- 🚀 **Multi-Agent Management** - Run unlimited agents in parallel. Each agent has its own workspace, conversation history, and isolated context.
- 📬 **Message Queueing** - Queue messages while AI is busy; they're sent automatically when the agent becomes ready. Never lose a thought.
- 🔐 **[Global Environment Variables](./configuration#global-environment-variables)** - Configure environment variables once in Settings and they apply to all agent processes and terminal sessions. Perfect for API keys, proxy settings, and tool paths.
- 🛡️ **[LLM Guard](./security/llm-guard)** - Built-in security layer that scans all AI inputs and outputs for sensitive content. Detects secrets, PII, prompt injection attacks, malicious URLs, and dangerous code patterns. Supports custom regex patterns, per-session policies, and audit log export.

## Core Features

Expand Down
Loading