Skip to main content
Glama
sipyourdrink-ltd

Bernstein - Multi-agent orchestration

bernstein_create_subtask

Decompose a parent task into subtasks by specifying goal, role, priority, scope, complexity, and estimated time. The parent task automatically transitions to waiting status.

Instructions

Create a subtask linked to a parent task.

    Agents call this to decompose their current work into subtasks
    during execution.  The parent task is automatically transitioned
    to WAITING_FOR_SUBTASKS status.

    Args:
        parent_task_id: ID of the parent task that this subtask belongs to.
        goal: Description of what the subtask should accomplish.
        role: Specialist role to assign (backend, frontend, qa, …).
        priority: 1=critical, 2=normal, 3=nice-to-have.
        scope: Task scope — small, medium, or large.
        complexity: Task complexity — low, medium, or high.
        estimated_minutes: Rough time estimate in minutes.

    Returns:
        JSON with the created subtask ID, parent_task_id, title, and status.
    

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
parent_task_idYes
goalYes
roleNoauto
priorityNo
scopeNomedium
complexityNomedium
estimated_minutesNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It discloses a key side effect: 'The parent task is automatically transitioned to WAITING_FOR_SUBTASKS status.' This is valuable behavioral context beyond just creating a subtask.

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

Conciseness4/5

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

The description is well-structured with a brief intro, a docstring-style parameter list, and return format. It is somewhat verbose but each element adds necessary context given the lack of schema descriptions.

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?

Given 7 parameters, no annotations, and an output schema, the description adequately explains purpose, parameters, side effects, and return values. It omits error scenarios but is sufficient for agent use.

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

Parameters5/5

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

With schema description coverage at 0%, the description provides detailed explanations for all 7 parameters, including examples for role, priority values, scope, and complexity. This adds significant meaning beyond the bare schema.

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 begins with a clear verb and resource: 'Create a subtask linked to a parent task.' It explicitly states that agents call this to decompose their current work, which distinguishes it from sibling tools like bernstein_run or bernstein_approve.

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 says 'Agents call this to decompose their current work into subtasks during execution,' implying when to use it. However, it does not explicitly state when not to use it or mention alternatives, though no clear alternatives exist among siblings.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/sipyourdrink-ltd/bernstein'

If you have feedback or need assistance with the MCP directory API, please join our Discord server