LobsterBio - Dev

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a documentation-only development guide, with normal cautions around running developer commands, using optional LLM credentials, and persisted Lobster sessions.

This skill is reasonable to use for Lobster development. Before following its commands, work in a trusted repository and virtual environment, review package installs or upgrades, use scoped provider credentials, and be aware that Lobster sessions and provenance files may retain analysis context in the workspace.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If followed, these commands can install or upgrade Lobster and its dependencies in the user's environment.

Why it was flagged

The guide includes user-directed package installation and upgrade commands. This is expected for a development guide, but it means users may fetch and run external package code.

Skill content
uv tool install 'lobster-ai[full,anthropic]'   # Install as users see it
uv tool upgrade lobster-ai
Recommendation

Run installation commands only in a trusted development environment, review the package source/dependencies when appropriate, and avoid upgrading production environments without testing.

What this means

Running Lobster with these credentials may use paid provider accounts or cloud permissions.

Why it was flagged

The CLI documentation references provider API keys and an AWS profile. These are coherent with an LLM-powered CLI, but they grant access to external accounts if used.

Skill content
`OPENAI_API_KEY` | OpenAI API key | — |
| `ANTHROPIC_API_KEY` | Anthropic API key | — |
| `AWS_PROFILE` | AWS profile for Bedrock | — |
Recommendation

Use least-privileged API keys or AWS profiles, avoid sharing credentials in prompts or workspaces, and monitor provider usage/billing.

What this means

Bioinformatics data context, conversation history, or analysis provenance may remain on disk and be reused in later sessions.

Why it was flagged

The CLI guide states that sessions persist conversation and workspace state, and later shows `.lobster/session.json` and `.lobster/provenance.json` in the workspace.

Skill content
Sessions persist conversation history and workspace state.
Recommendation

Use separate workspaces for sensitive projects, avoid storing secrets in session context, and clear or protect workspace `.lobster` files when needed.