OSS-first docs

These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.

agent-console.agent.toolRemoved

A tool was removed from an agent.

  • Type: event (event)
  • Version: 1.0.0
  • Stability: stable
  • Owners: @agent-console-team
  • Tags: agent, tool, removed
  • File: packages/examples/agent-console/src/agent/agent.event.ts
  • field.key.label
    agent-console.agent.toolRemoved
    field.version.label
    1.0.0
    field.type.label
    event (event)
    field.title.label
    agent-console.agent.toolRemoved
    field.description.label

    A tool was removed from an agent.

  • Type: event (event)
  • Version: 1.0.0
  • Stability: stable
  • Owners: @agent-console-team
  • Tags: agent, tool, removed
  • File: packages/examples/agent-console/src/agent/agent.event.ts
  • field.tags.label
    agent,tool,removed
    field.owners.label
    @agent-console-team
    field.stability.label
    stable

    A tool was removed from an agent.

    Source Definition

    import { defineEvent } from '@lssm-tech/lib.contracts-spec';
    import { defineSchemaModel, ScalarTypeEnum } from '@lssm-tech/lib.schema';
    
    export const AgentToolRemovedEvent = defineEvent({
    	meta: {
    		key: 'agent-console.agent.toolRemoved',
    		version: '1.0.0',
    		description: 'A tool was removed from an agent.',
    		stability: 'stable',
    		owners: ['@agent-console-team'],
    		tags: ['agent', 'tool', 'removed'],
    	},
    	payload: AgentToolRemovedPayload,
    });