Skip to main content
Glama

seed_tasks_from_projects

Scan the projects directory to create initial tasks for each project folder. Optionally map folder names to categories like coding, job search, or business, or let it guess from the name.

Instructions

Scan the projects directory and create initial tasks for each project folder.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
categoriesNoOptional mapping of project folder names to categories (coding, job_search, business). If not provided, will guess based on name.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.1/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden. It reveals that this is a directory scan plus write operation, but says nothing about idempotency (does re-running duplicate tasks?), required permissions, or how existing tasks are treated. For a bulk-create tool this is a meaningful disclosure gap.

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?

It is a single, front-loaded sentence with no filler, and the action verb leads. It is efficient, though arguably too terse given the tool performs a bulk mutation that could use one clarifying clause.

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

Completeness2/5

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

For a bulk-mutation tool with no annotations, no output schema, and a nested object parameter, the description is thin. It omits what the created tasks look like, what happens on repeat runs, and any safety or permission context, leaving an agent without enough to call it confidently.

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% and the single nested 'categories' parameter is fully documented in the schema, so the baseline of 3 applies. The description does not mention categories at all, adding no meaning beyond the schema, but the schema already handles it.

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

Purpose4/5

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

The description states a specific compound action (scan a directory and create tasks per folder), so an agent can tell it is a bulk initialization operation rather than a single-task tool. It is distinguishable from siblings like create_task and analyze_session_for_tasks, though it does not explicitly name or contrast those alternatives.

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

Usage Guidelines3/5

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

The phrase 'create initial tasks' implies a one-time bootstrapping/setup context, which gives implied usage guidance. However, there is no explicit when-to-use statement, no prerequisite conditions, and no routing to alternatives such as create_task for ad-hoc additions.

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