register
Register a Claude instance with the IPC system by providing a unique ID, enabling inter-process communication for collaborative AI operations.
Instructions
Register this Claude instance with the IPC system
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| instance_id | Yes | Unique identifier for this instance (e.g., 'wsl1', 'wsl2') |
Input Schema (JSON Schema)
{
"properties": {
"instance_id": {
"description": "Unique identifier for this instance (e.g., 'wsl1', 'wsl2')",
"type": "string"
}
},
"required": [
"instance_id"
],
"type": "object"
}