AI SummaryA guide for creating specialist AI agents within the Lobster AI framework, with domain-specific tools and package structure. Useful for developers building multi-agent systems on clawhub.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to set up the "Creating Agents" agent in my project. Please run this command in my terminal: # Add AGENTS.md to your project root curl --retry 3 --retry-delay 2 --retry-all-errors -o AGENTS.md "https://raw.githubusercontent.com/openclaw/skills/main/skills/cewinharhar/lobster-bio-dev/references/creating-agents.md" Then explain what the agent does and how to invoke it.
Description
All versions of all skills that are on clawhub.com archived
Overview
Agents are specialist AI systems that handle specific domains (transcriptomics, proteomics, etc.). Each agent: • Lives in its own package under packages/ • Registers via Python entry points • Has access to domain-specific tools and services
Conditional tools
`python if data_manager.has_modality("proteomics"): agent_tools.append(analyze_proteomics) `
Shared tools from core
`python from lobster.tools import common_tools agent_tools.extend(common_tools.get_data_tools(data_manager)) `
Creating Agents
This guide explains how to create new agents for Lobster AI.
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster