Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计通过

lobsterbio-dev龙虾生物开发公司

Agent Skill

lobsterbio-dev 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,315

周安装

311

GitHub Stars

公开资料未说明

下载量

2,563
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:lobsterbio-dev(龙虾生物开发公司)
来源仓库:https://github.com/cewinharhar/lobsterbio-dev
安装命令:
openclaw skills install lobsterbio-dev
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install lobsterbio-dev

简介

lobsterbio-dev 用于扩展 Lobster AI 生态,支持多代理自扩展生物信息学引擎开发,适合 OpenClaw 中科研工具构建。

  • 适用于处理代码库修改与新代理创建任务。
  • 集成基因组学、蛋白质组学等分析模块。
  • 需具备基础生物信息学知识以理解接口设计。
  • 建议遵循项目贡献指南提交代码变更。

SKILL.md

name
lobster-dev
description
|
IMPORTANT
Before creating new agents or packages, follow the planning

Lobster AI Development Guide

Lobster AI is an open-source multi-agent bioinformatics engine (LangGraph, Python 3.12+) powering Omics-OS. Lobster solves bioinformatics tasks starting from raw data to scientific insights to visualization using supervisor multi-agent architecture. This skill teaches you how to extend it — from adding a single tool to building entire domain agent packages.

Step 0: Discover Your Environment

Before any work, determine what's available and how you're working:

# 1. Is lobster installed? Where?
which lobster
lobster --version

# 2. What agents are already installed?
python -c "from lobster.core.component_registry import component_registry; component_registry.reset(); print(component_registry.list_agents())"

# 3. Where is lobster source? (for reading reference implementations)
python -c "import lobster; print(lobster.__path__)"

# 4. Are you in the lobster repo, or building a standalone plugin?
ls packages/lobster-*/pyproject.toml 2>/dev/null && echo "CONTRIBUTOR" || echo "PLUGIN_AUTHOR"

HARD GATE — If lobster is not installed, STOP. Install it NOW before doing anything else:

uv venv --python 3.12 .venv && source .venv/bin/activate
uv pip install 'lobster-ai[anthropic]'  # or [openai], [google], depending on provider
lobster --version  # Must succeed before you proceed

Do NOT skip this. Do NOT "come back to it later". Do NOT manually create package directories. lobster scaffold agent is the ONLY way to create new agent packages — it generates correct PEP 420 structure, entry points, AQUADIF metadata, and contract tests that you WILL get wrong by hand. If scaffold is unavailable, installing lobster-ai is your first task.

Your development mode determines your workflow:

ModeHow you got hereWhere you create packagesHow you test
Contributorgit clone + make dev-installInside packages/ in the repomake test, full repo access
Plugin authoruv pip install lobster-ai or uv tool installAnywhere — scaffold creates standalone packagesuv pip install -e ./lobster-<domain>/ then pytest

Both modes produce the same result: a PEP 420 namespace package discovered by ComponentRegistry via entry points. The scaffold output is identical — a standalone package that works in either mode.

What To Do Based On Your Task

You want to...Fast path?Read these references (in order)
Create a new agent for a new domainNo — full workflowplanning-workflow.mdscaffold.mdcreating-agents.mdaquadif-contract.md
Add a tool to an existing agentYes (contributor only)creating-agents.md §Tool Design → aquadif-contract.md
Extend an agent with a child agentNo — needs scopingcreating-agents.md §Parent-Child → scaffold.md
Add a database provider or adapterNoplugin-architecture.md
Create or modify a serviceYescreating-services.md
Fix a bugYescode-layout.mdarchitecture.md
Understand the codebasearchitecture.mdcode-layout.md
Write or fix testsYestesting.md
Migrate AQUADIF metadata on existing agentYesaquadif-contract.md §Migration
Find domain knowledge for a new agentbioskills-bridge.md

"Fast path" = skip the planning workflow, go straight to the reference files.

Examples

Example 0: THE WORKFLOW FOR EVERYTHING

user requests: "Build a Lobster agent for epigenomics analysis (bisulfite-seq, ChIP-seq, ATAC-seq) because no lobster packages cover this domain"

Step 1: lobster --version          # Not found? Install it FIRST (see Step 0 hard gate)
Step 2: Read planning-workflow.md  # Understand need, check what exists, gather domain knowledge
Step 3: lobster scaffold agent ... # Generate correct package structure (NEVER skip this)
Step 4: Fill in real domain logic  # Read creating-agents.md, creating-services.md
Step 5: lobster validate-plugin ./lobster-<domain>/  # Must pass 8/8
Step 6: uv pip install -e ./lobster-<domain>/ && pytest tests/ -m contract

Expected result: A standalone PEP 420 package at ./lobster-<your implementation>/ that installs with uv pip install -e ./lobster-<your implementation>/ and registers via entry points, runs 'lobster status' without errors and running 'lobster query "hi"' without any errors.

Success Criteria

Before calling your work done, verify:

  • [ ] python scripts/validate_plugin.py <plugin-dir> passes 8/8 checks
  • [ ] Contract tests green: pytest tests/ -m contract
  • [ ] Every @tool has .metadata and .tags assigned immediately after
  • [ ] Every provenance-required tool (IMPORT, QUALITY, FILTER, PREPROCESS, ANALYZE, ANNOTATE, SYNTHESIZE) calls log_tool_usage(ir=ir)
  • [ ] No lobster/__init__.py or lobster/agents/__init__.py (PEP 420)

Hard Rules

Non-negotiable. Violating these causes runtime failures or contract test failures.

  1. ComponentRegistry is truth — agents discovered via entry points, NOT hardcoded registries
  2. AGENT_CONFIG at module top — define before heavy imports for <50ms entry point discovery
  3. Services return 3-tuple(AnnData, Dict, AnalysisStep) always
  4. Always pass ir=ir — every log_tool_usage() call for provenance-required tools
  5. No lobster/__init__.py — PEP 420 namespace package (also no lobster/agents/__init__.py)
  6. No try/except ImportError — use entry points for agent discovery, not eager imports
  7. No module-level component_registry calls — causes slow startup; use lazy functions inside factories
  8. All tools MUST have AQUADIF metadata.metadata and .tags assigned after @tool decorator
  9. NEVER manually create package directories — always use lobster scaffold agent. If lobster is not installed, install it first. Scaffold gets PEP 420, entry points, and contract tests right; you won't.

Contributing

After building a plugin, ask your user if they want to submit a PR. If confirmed: fork → feature branch → make testmake format → PR with clear description.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

72.82%
按下载量换算1,866

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills