Skip to main content
Glama

chieflab_create_next_move_action

P75 — turn a Next Move suggestion into an approval-gated draft action. USE WHEN you've called chieflab_suggest_next_move and the suggestion's kind is not 'wait' or 'noop'. Creates an actionStore entry with status='awaiting_approval', the suggested draft body inline, and an executionMatrix that points at the right next-execution path. The reviewer sees the new card in the Launch Room / IDE chat like any other approval card — same approve / revise / reject flow. Closes the loop: launch → measure → next move → approve → execute → repeat.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
runIdYesRequired. The originating run id (the next-move action is tagged with this so the brain can compound launch → measure → next-move chains).
channelYesChannel the measurement was for (used to ground the suggestion).
metricsYesSame metrics object passed to chieflab_suggest_next_move.
workspaceIdNoOptional workspace id.

TDQS

A4.5/5.0
Behavior4/5

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

Since no annotations are provided, the description carries the full burden. It details the internal behavior: creates an actionStore entry with status='awaiting_approval', inline draft body, an executionMatrix pointer, and how the reviewer sees it in the Launch Room/IDE chat. It does not mention permission requirements or error handling, but the state-changing nature and approval flow are transparent enough for an AI agent to predict outcomes.

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 dense but every sentence adds value: purpose, usage condition, internal state details, and loop context. It is front-loaded with the primary action, though the 'P75 —' prefix adds minimal noise. Slightly longer than strictly necessary but not wasteful.

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 the tool has no output schema and no annotations, the description covers the essential context: when to use, what it creates internally, how the review process appears to users, and the broader loop. It does not explain exact return value or error cases, but the state-creation behavior is well specified. This is adequate for a non-trivial action.

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

Parameters4/5

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

The schema already covers 100% of parameters, and the description adds contextual meaning beyond the schema. It explains that metrics should be the same object passed to chieflab_suggest_next_move, and that runId enables chain tracking. This extra semantic linkage helps the agent construct correct calls.

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 opens with a clear verb+resource statement: 'turn a Next Move suggestion into an approval-gated draft action.' It explicitly distinguishes from siblings by referencing chieflab_suggest_next_move and specifying the condition (kind is not 'wait' or 'noop'). This is a specific purpose with clear scope.

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?

Provides explicit usage guidance: 'USE WHEN you've called chieflab_suggest_next_move and the suggestion's kind is not wait or noop.' It also describes the workflow context (approval card flow) and the overall loop, making it clear when and why to invoke this tool versus alternatives like chieflab_approve_action.

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

A3.8/5.0
Disambiguation2/5

Many tools have overlapping purposes (e.g., multiple launch and measurement tools), and the presence of aliases like chiefmo_* can confuse an agent. While descriptions are detailed, the sheer number of tools covering similar workflow steps makes it hard to distinguish the right one without careful reading.

Naming Consistency4/5

All public tools start with 'chieflab_' and mostly follow a verb_noun pattern (e.g., chieflab_approve_action, chieflab_set_company_profile). However, some internal names like 'chiefmo_*' appear as aliases, which slightly breaks consistency from the user's perspective.

Tool Count1/5

45 tools is excessive for a single MCP server. While the domain is broad, this many tools likely overwhelms agents and users. Most well-scoped servers have 3-15 tools; 45 indicates poor scoping and should be split into focused sub-servers.

Completeness5/5

The tool surface is extremely comprehensive, covering the full lifecycle from signup and installation to launch, approval, execution, measurement, next-move suggestions, manual fallback, and specialist delegation. No obvious gaps for the stated purpose of growth and distribution.

Resources