Skip to main content
Glama
Duro02
by Duro02

Resume a subagent

resume

Reactivate a stopped, dead, or persisted Devin subagent session to continue its work after bridge restarts; safe no-op for already-running sessions.

Instructions

Re-activate a stopped/dead/persisted Devin session (survives bridge restarts). Safe no-op on already-running subagents.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesSubagent handle returned by spawn, e.g. 'coder-auth'

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.5.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the behavioral burden. It discloses persistence across bridge restarts and idempotent no-op behavior, which are important and non-obvious. It does not mention error behavior for unknown names, but the core invocation behavior is well covered.

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 a single focused sentence with no filler. The core purpose is front-loaded, and the two caveats about persistence and no-op behavior are concise and high-value.

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

Completeness4/5

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

For a one-parameter tool with a complete schema, the description covers the essential invocation context. Minor gaps include lack of detail about return values or behavior when the named subagent does not exist, but these are not critical for basic correct use.

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?

Schema description coverage is 100%, so the single required parameter is already fully documented. The description adds no additional parameter semantics, and none are needed beyond what the schema provides.

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 states a clear verb, 'Re-activate', and a specific resource, 'stopped/dead/persisted Devin session'. It also distinguishes itself from lifecycle siblings by noting it survives bridge restarts and is a no-op on running subagents.

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

Usage Guidelines4/5

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

The description clearly implies when to use it: for sessions that are stopped, dead, or persisted. It also provides an explicit when-not condition by stating it is a safe no-op on already-running subagents, though it does not name alternative tools like spawn.

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