Skip to main content
Glama

create_profile

Create a reusable spawn profile for autonomous agents by saving a task template with variable substitution, a repository URL, and optional settings like branch, effort level, and budget.

Instructions

Save a named spawn config (profile) for repeated use. Task templates support {{variable}} substitution.

// Create once: // create_profile('fix-bugs', 'https://github.com/me/app', 'Fix {{issue}}: {{title}}', 5) // Use many times: // spawn_from_profile('fix-bugs', { issue: '42', title: 'Login broken' })

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesProfile name (alphanumeric, dash, underscore only)
branchNoBranch to checkout after cloning (optional)
preambleNoCustom workflow preamble to inject before every task spawned from this profile. Overrides the default preamble (optional).
repo_urlYesGit repository URL to clone
fast_modeNoIf true, enable fast mode by default for jobs spawned from this profile. Can be overridden at spawn time (optional).
descriptionNoHuman-readable description of this profile (optional)
effort_levelNoDefault effort level for jobs spawned from this profile. Can be overridden at spawn time (optional).
task_templateYesTask description template; use {{varName}} for substitution
default_budget_usdNoDefault USD budget for jobs spawned from this profile (optional)
Behavior3/5

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

No annotations are provided, so the description bears full burden. It describes variable substitution and the save action but does not disclose overwrite behavior, idempotency, or side effects like requiring authentication, leaving some gaps.

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 front-loaded with purpose, uses only three sentences plus a concise code example, every line adds value with no redundancy.

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 tool with 9 parameters and no output schema, the description covers the main functionality, usage pattern, and template feature, but could mention potential overwrite behavior for full completeness.

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?

With 100% schema coverage, the description adds value beyond schema by illustrating usage with concrete examples and explaining the variable substitution mechanism, though the schema already documents parameters thoroughly.

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 'Save a named spawn config (profile) for repeated use' with a specific verb and resource, and distinguishes from sibling tools like spawn_from_profile and list_profiles by showing the create-then-use pattern.

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?

Explicitly shows the workflow with 'Create once / Use many times' examples, directing the agent to use spawn_from_profile for execution, providing clear context on when to use this tool vs. its sibling.

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/Gonzih/cc-agent'

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