### Install and Launch NemoClaw Source: https://masterclass-prompts.netlify.app/?utm_campaign=Landing%20Page%20or%20Form%20-%209223122&utm_medium=email&utm_source=convertkit#install Commands to clone the repository, run the installation script, and launch the NemoClaw environment with a default profile. ```bash git clone https://github.com/NVIDIA/NemoClaw.git cd NemoClaw ./install.sh nemoclaw launch --profile default ``` -------------------------------- ### Install OpenClaw Skill Source: https://masterclass-prompts.netlify.app/?utm_campaign=Landing%20Page%20or%20Form%20-%209223122&utm_medium=email&utm_source=convertkit#install Installs a community-built skill for OpenClaw, such as 'meeting-to-action', which adds specific capabilities to an agent. This is done using the `npx playbooks add skill` command. ```bash $ npx playbooks add skill openclaw/skills --skill meeting-to-action ``` -------------------------------- ### Install AgentMail SDK Source: https://masterclass-prompts.netlify.app/?utm_campaign=Landing%20Page%20or%20Form%20-%209223122&utm_medium=email&utm_source=convertkit#install Installs the AgentMail Python SDK using pip. This is a prerequisite for using AgentMail to manage email for AI agents. ```bash pip install agentmail ``` -------------------------------- ### Install A2A Gateway Plugin for OpenClaw Source: https://masterclass-prompts.netlify.app/?utm_campaign=Landing%20Page%20or%20Form%20-%209223122&utm_medium=email&utm_source=convertkit#install A sequence of shell commands to install the A2A (Agent-to-Agent) gateway plugin for OpenClaw. This enables agents to discover, authenticate, and communicate with other A2A-compatible agents across networks. ```bash cd ~/.openclaw/workspace/plugins git clone https://github.com/win4r/openclaw-a2a-gateway.git a2a-gateway cd a2a-gateway npm install --production openclaw plugins install ~/.openclaw/workspace/plugins/a2a-gateway openclaw gateway restart ``` -------------------------------- ### Manage OpenClaw Gateway Service Source: https://masterclass-prompts.netlify.app/?utm_campaign=Landing%20Page%20or%20Form%20-%209223122&utm_medium=email&utm_source=convertkit#install Commands to stop, forcefully reinstall, start, and check the status of the OpenClaw gateway service. This is crucial for syncing the service and fixing potential daemon drift, especially after configuration changes. ```bash openclaw gateway stop openclaw gateway install --force openclaw gateway start openclaw gateway status ``` -------------------------------- ### Create an AgentMail Inbox Source: https://masterclass-prompts.netlify.app/?utm_campaign=Landing%20Page%20or%20Form%20-%209223122&utm_medium=email&utm_source=convertkit#install Demonstrates how to create a new email inbox for an AI agent using the AgentMail SDK. Requires an API key and specifies a username and display name for the new inbox. ```python from agentmail import AgentMail client = AgentMail(api_key="your-key") inbox = client.inboxes.create( username="", display_name="" ) # Result: @agentmail.to ``` -------------------------------- ### Configure OpenClaw Subagent Routing and Limits Source: https://masterclass-prompts.netlify.app/?utm_campaign=Landing%20Page%20or%20Form%20-%209223122&utm_medium=email&utm_source=convertkit#install A collection of JSON configuration snippets for managing subagent behavior. These settings define agent registration, model routing, concurrency limits, and tool access permissions to optimize token usage. ```json { "agents": { "list": [{ "id": "researcher" }] } } ``` ```json { "id": "orchestrator", "subagents": { "allowAgents": ["researcher", "coder"] } } ``` ```json { "id": "researcher", "subagents": { "model": "anthropic/claude-sonnet-4" } } ``` ```json { "agents": { "defaults": { "maxConcurrent": 4, "subagents": { "maxConcurrent": 8 } } } } ``` ```json { "tools": { "subagents": { "tools": { "allow": ["read", "exec", "process", "write", "edit", "apply_patch"] } } } } ``` -------------------------------- ### Backup OpenClaw Configuration Source: https://masterclass-prompts.netlify.app/?utm_campaign=Landing%20Page%20or%20Form%20-%209223122&utm_medium=email&utm_source=convertkit#install A shell command to create a timestamped backup of the .openclaw directory to prevent loss of agent memory, skills, and conversation history. ```bash cp -r ~/.openclaw ~/openclaw-backup-$(date +%Y%m%d) ``` -------------------------------- ### Configure OpenClaw Browser Relay Tokens Source: https://masterclass-prompts.netlify.app/?utm_campaign=Landing%20Page%20or%20Form%20-%209223122&utm_medium=email&utm_source=convertkit#install Sets the authentication and remote tokens for the OpenClaw gateway. Both tokens must match to avoid authorization errors. Ensure no sensitive information is accidentally copied into the token. ```bash openclaw config set gateway.auth.token '' openclaw config set gateway.remote.token '' ``` -------------------------------- ### Send Email with AgentMail Source: https://masterclass-prompts.netlify.app/?utm_campaign=Landing%20Page%20or%20Form%20-%209223122&utm_medium=email&utm_source=convertkit#install Shows how to send an email using the AgentMail SDK. It requires the inbox ID, recipient's email address (as an array), subject, and email text. Note the specific method `client.inboxes.messages.send()`. ```python client.inboxes.messages.send( inbox_id=inbox.id, to=["recipient@example.com"], subject="Meeting Follow-up", text="Hi, here are the notes..." ) ``` -------------------------------- ### Validate OpenClaw Relay Health Source: https://masterclass-prompts.netlify.app/?utm_campaign=Landing%20Page%20or%20Form%20-%209223122&utm_medium=email&utm_source=convertkit#install Checks the health status of the OpenClaw relay service by sending a request to its local endpoint. The expected response is 'OK'. This helps confirm that the relay is running and accessible. ```bash curl -sS http://127.0.0.1:18792/ ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.