Verdent Docs

Glossary of Terms

Technical terminology and definitions for Verdent features and concepts

Alphabetized reference of Verdent-specific terms and technical concepts.


Core Concepts

Agent

The main AI assistant that processes requests and executes tools

Context Exhaustion

When conversation history fills context window, limiting the ability to reference earlier content

Context Window

Amount of conversation history the AI can reference

MCP (Model Context Protocol)

System for extending Verdent with external tools

Subagent

Specialized AI agent with isolated context for specific tasks (Explorer, Verifier, Code-reviewer)

Tool

Function the agent can execute (file_read, bash, glob, etc.)


Execution Modes

Auto-Run Mode

Tools execute automatically without approval prompts

Manual Accept Mode

User approves each tool execution before running

Plan Mode

Agent creates plan before executing changes

Skip Permissions

Run without permission prompts (advanced)


Files & Configuration

AGENTS.md

Project-specific team standards file (project root, version controlled)

mcp.json

MCP server configuration (~/.verdent/mcp.json)

plan_rules.md

Plan Mode output customization (~/.verdent/plan_rules.md)

VERDENT.md

Global personal preferences file (~/.verdent/VERDENT.md)

Workspace

Current VS Code project directory where Verdent operates


Tool-Specific Terms

Glob Pattern

File search pattern using wildcards (**/*.ts, src/**/*.js)

Line Range

Specific lines to read from large files (start_line, max_lines)

Regex

Regular expression for advanced text searching

Replace All

file_edit flag to replace multiple identical strings

Timeout

Maximum time for bash commands: 120 seconds (2 minutes, hard limit)


Subagent Terms

Flexible Policy

Subagent can activate automatically based on request patterns

Invocation Policy

Rules for when subagent activates (strict vs flexible)

Isolated Context

Subagent's separate context window (doesn't consume main context)

Strict Policy

Subagent only runs when explicitly @-mentioned

System Prompt

Instructions defining subagent's behavior and expertise


MCP Terms

Global Config

User-wide MCP configuration (~/.verdent/mcp.json)

MCP Server

External tool/service integrated via Model Context Protocol

Plugin

Pre-built MCP integration for specific tools or services

Workspace Config

Project-specific MCP configuration (.verdent/mcp.json)


Performance Terms

Delegation

Routing tasks to subagents to preserve main context

Parallel Execution

Multiple subagents running simultaneously

Strategic Reading

Using line ranges and search to minimize context usage

Task Coordination

Main agent managing multiple subagent operations


See Also