Bosca / AI

Agents

Compose an agent from the parts

An agent gathers a model, a prompt, and a set of tools under one key — composed with sub-agents, authored in Studio, and versioned in Git. The harness that runs an agent you compose yourself, end to end, is coming soon.

The record

A model, a prompt, a set of tools

Each agent is one record under a unique key — the handle other surfaces reference it by. Pick the model it runs and the prompt it follows, attach the tools it can call, and drop in a configuration object for anything the runtime needs.

  • A unique key that other surfaces reference it by.
  • One model and one prompt, chosen from your records.
  • The tools it's allowed to call, attached to the agent.
  • A freeform configuration object for runtime settings.
agent · content-helper
keycontent-helper
modelgpt-5 · openai
promptsummarize-doc
toolsexecute_query · create_document
sub-agenttopics-agent

Tools it can call

Your scripts, or an MCP server

A tool is a named record with a description and a configuration object, wired to a backend that carries it out — most often a Bosca script you wrote or an MCP server you registered. Register a server by its transport — streamable HTTP, SSE, or stdio — and bind a tool to it.

  • A tool binds to a script or a registered MCP server.
  • Register MCP servers by transport: streamable HTTP, SSE, or stdio.
  • A configuration object carries its settings and connection details.
  • Attach a tool to an agent to make it callable there.
agent tools
run-report script
search-docs mcp server
make-cover script

Author now, Harness coming soon

Write it down, version it in Git

Agents, prompts, tools, and MCP servers are records you author in Studio and keep in Git, so your AI setup lives beside your code with a full history and a clean way to review a change. Today these parts already power AI across the platform; the harness that runs an agent you compose yourself, end to end, is on the way.

Compose

Assemble a model, a prompt, and tools — and sub-agents to delegate to.

Version

Author in Studio and round-trip to Git, with a history you can review.

Run Soon

The harness that runs an agent you compose yourself is coming soon.

Keep exploring

More on AI