Skip to main content
Glama

dreamagent_release_project_lock

RECOVERY-ONLY — releases a project's editing lock when a stale or abandoned session blocks new modifications. NOT a normal editing step, and NEVER a way to bypass an actively running edit.

The lock state is not machine-readable from here: to judge staleness, check dreamagent_get_edit_progress — if no edit is active but dreamagent_chat still fails with a lock error, the lock is stale. Confirm with the user before releasing if they may have the project open elsewhere.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_idYesthe project to unlock.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

While annotations already indicate non-read-only and non-destructive, the description adds crucial behavioral context: it is a recovery-only action, not for bypassing active edits, and lock state is not directly readable, requiring cross-referencing with another tool. The user confirmation requirement further clarifies the operational implications.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise yet complete, with front-loaded 'RECOVERY-ONLY' and a clear verb phrase. Each sentence serves a purpose: warning, verification procedure, and user-safety note. The line breaks improve readability without padding.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's niche recovery purpose and the availability of an output schema, the description fully covers the decision-making context: when to use, how to verify staleness, and what precautions to take. No critical information is missing for an AI agent to invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema fully documents the single parameter project_id as 'the project to unlock' with 100% coverage. The description adds contextual meaning by linking project_id to lock stale/abandoned state, but this doesn't significantly enhance the parameter's semantic clarity beyond the schema baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: 'releases a project's editing lock when a stale or abandoned session blocks new modifications.' The verb 'releases' and resource 'project's editing lock' are specific, and the recovery-only framing distinguishes it from normal editing tools like dreamagent_chat or dreamagent_cancel_chat.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit usage guidance is provided: 'RECOVERY-ONLY', 'NOT a normal editing step', and 'NEVER a way to bypass an actively running edit.' It also gives a concrete procedure for determining staleness by checking dreamagent_get_edit_progress and advises user confirmation, leaving no ambiguity about when or how to use this tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.5/5.0
Disambiguation5/5

Every tool has a clearly distinct purpose: create vs. list vs. status, session vs. edit vs. project, and cancel vs. release lock. The three status tools are explicitly differentiated by what they monitor (session, latest edit, deployment).

Naming Consistency5/5

All tools follow the `dreamagent_verb_noun` pattern, with verbs like create, list, get, cancel, release. Retrieval is consistently split: `get_*` for single statuses and `list_*` for collections.

Tool Count5/5

12 tools is well-scoped for a cloud AI project management platform. Each tool addresses a distinct operation, covering creation, monitoring, editing, sessions, and integrations without unnecessary redundancy.

Completeness4/5

Core workflows are covered: create/list/status for projects, sessions management, edit/cancel/progress, and credential listing. Minor gaps exist—no project deletion, no env var updates—but these are not critical for the primary AI edit and deployment flow.

Resources