infraveil-guard
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| INFRAVEIL_GUARD_HOME | No | Where the ledger and approval queue live. | ~/.infraveil-guard |
| INFRAVEIL_GUARD_MODE | No | enforce blocks dangerous actions; audit logs everything but never blocks. | enforce |
| INFRAVEIL_GUARD_THRESHOLD | No | Gate actions at/above this severity: none|low|medium|high|critical. | high |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| guard_actionA | Check an action BEFORE you run it. Pass the exact command, SQL statement, or tool invocation you are about to execute. Returns JSON with action: the exact command/SQL/tool call about to run (required). approval_code: the one-time code a human produced via the CLI (optional). |
| assess_actionA | Classify the blast radius of an action WITHOUT recording or gating it. Use this to reason about risk; use guard_action when you actually intend to run it. Returns risk (none/low/medium/high/critical), whether it is reversible, the specific dangerous capabilities found, and a recommendation. action: the command/SQL/tool call to assess (required). |
| verify_ledgerA | Verify the local guard ledger's hash chain - proves no decision has been edited, deleted, reordered, or inserted. Returns ok plus where any tampering was found. This is the 'trust by inspection' check; it reads only local files and trusts nothing remote. |
| recent_decisionsA | Return the most recent guard decisions from the local ledger (newest first): what was allowed, blocked, or approved, with risk and timestamps. limit: how many entries to return (1-500, default 20). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool has a distinct purpose: assess_action for risk assessment without recording, guard_action for pre-execution gating, recent_decisions for history review, and verify_ledger for integrity verification. No overlap.
All tool names follow a consistent verb_noun pattern in snake_case: assess_action, guard_action, recent_decisions, verify_ledger. No deviations.
With 4 tools, the set is well-scoped for a security guard/audit domain. Each tool serves a clear function without redundancy or omission.
The set covers the full lifecycle: risk assessment (assess_action), action gating (guard_action), audit review (recent_decisions), and integrity verification (verify_ledger). No obvious gaps.