opensensenova/sensenova-skills

sn-image-base

Base-layer skill for the SenseNova-Skills project, providing low-level APIs for image generation, recognition (VLM), and text optimization (LLM). This skill does not preprocess inputs; it only calls backend services and returns results. This skill is not user-facing and is intended for upper-layer skills only.

First seen Apr 29, 2026

Installation

$ npx skills add opensensenova/sensenova-skills --skill sn-image-base

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from opensensenova/sensenova-skills · top by installs.

npx skills add opensensenova/sensenova-skills

Browse all from opensensenova/sensenova-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 5.4K
License LICENSE
Default branch main
Open issues 14
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents claude-code
More metadata
project
SenseNova-Skills
tier
0
category
infrastructure
user_visible

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 12,270 B
  • docs SUMMARY.md 332 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 164 installs

SKILL.md

sn-image-base

Dependency Installation

pip install -r requirements.txt

Overview

sn-image-base is the base-layer skill (tier 0) of the SenseNova-Skills project and provides three low-level tools:

  • sn-image-generate: image generation (calls text-to-image-no-enhance API)
  • sn-image-recognize: image recognition (uses VLM to analyze image content)
  • sn-text-optimize: text optimization (uses LLM to process text)

This skill does not perform any input preprocessing and only calls backend services to return results.

Tools List

sn-image-generate

Image generation tool that calls the text-to-image-no-enhance API.

--prompt is required; all other parameters are optional:

Parameter Type Default Description
--prompt string Required Prompt text for image generation
--negative-prompt string "" Negative prompt
--image-size string 2k Image size preset (case-insensitive). Recommended: 2k. 4k optional, needs model support (sensenova rejects it → status=failed). Other values → status=failed.
--aspect-ratio string 16:9 Aspect ratio, e.g. 1:1, 16:9, 9:16
--seed int None Random seed for reproducible generation
--unet-name string None Specify a UNet model name
--api-key string SNIMAGEGENAPIKEY -> SNAPIKEY API key (CLI argument has priority; MissingApiKeyError is raised when all are empty)
--base-url string SNIMAGEGENBASEURL -> SNBASEURL API base URL (CLI argument has priority)
--poll-interval float 5.0 Polling interval (seconds)
--timeout float 300.0 Timeout (seconds)
--insecure flag False Disable TLS verification
--save-path Path Auto-generated Save path

SenseNova U1 Fast requests explicitly send watermark=false by default so generated images have no watermark. This feature is currently in free public beta and may become paid.

sn-image-recognize

Image recognition tool that uses VLM (Vision Language Model) to analyze image content. Supports multiple image inputs.

--images and --user-prompt (or --user-prompt-path) are required. All other parameters use three-level defaults (CLI > env var > built-in default):

Parameter Type Built-in Default Env Var Description
--api-key string No hardcoded default SNVISIONAPIKEY -> SNCHATAPIKEY -> SNAPIKEY Chat runtime API key; raises MissingApiKeyError when all are unset
--base-url string SNCHATBASE_URL default SNVISIONBASEURL -> SNCHATBASEURL -> SNBASEURL Vision provider base URL; falls back to shared chat/global provider
--model string sensenova-6.7-flash-lite SNVISIONMODEL -> SNCHATMODEL Vision-capable model name
--vlm-type string openai-completions SNVISIONTYPE -> SNCHATTYPE Chat protocol type override
--user-prompt-path string None - Local file path, mutually exclusive with --user-prompt
--system-prompt-path string None - Local file path, mutually exclusive with --system-prompt

Available values for --vlm-type:

  • openai-completions: OpenAI-compatible /v1/chat/completions interface
  • anthropic-messages: Anthropic Messages /v1/messages interface

sn-text-optimize

Text optimization tool that uses LLM (Language Model) to optimize text content. Does not accept image inputs.

--user-prompt (or --user-prompt-path) is required. All other parameters use three-level defaults (CLI > env var > built-in default):

Parameter Type Built-in Default Env Var Description
--api-key string No hardcoded default SNTEXTAPIKEY -> SNCHATAPIKEY -> SNAPIKEY Chat runtime API key; raises MissingApiKeyError when all are unset
--base-url string SNCHATBASE_URL default SNTEXTBASEURL -> SNCHATBASEURL -> SNBASEURL Text provider base URL; falls back to shared chat/global provider
--model string sensenova-6.7-flash-lite SNTEXTMODEL -> SNCHATMODEL Text model name
--llm-type string openai-completions SNTEXTTYPE -> SNCHATTYPE Chat protocol type override
--user-prompt-path string None - Local file path, mutually exclusive with --user-prompt
--system-prompt-path string None - Local file path, mutually exclusive with --system-prompt

Available values for --llm-type:

  • openai-completions: OpenAI-compatible /v1/chat/completions interface
  • anthropic-messages: Anthropic Messages /v1/messages interface

VLM vs LLM

Tool Model Type Image Input Interface Type Parameter
sn-image-recognize VLM (Vision Language Model) Yes, supports multiple images --vlm-type
sn-text-optimize LLM (Language Model) No, text only --llm-type

Usage

All tools are called through the unified snagentrunner.py entrypoint:

# Image generation (only prompt required; api-key/base-url have defaults)
python scripts/sn_agent_runner.py sn-image-generate \
    --prompt "..."

# Image generation (override base-url)
python scripts/sn_agent_runner.py sn-image-generate \
    --prompt "..." \
    --base-url "https://custom-endpoint.com/v1"

# Image generation (explicitly override api-key)
python scripts/sn_agent_runner.py sn-image-generate \
    --prompt "..." \
    --api-key "sk-xxx"

# Image recognition (VLM) - minimal call (uses built-in Sensenova defaults)
python scripts/sn_agent_runner.py sn-image-recognize \
    --user-prompt "Describe the image" \
    --images "path/to/image.png"

# Image recognition (VLM) - override to Anthropic Claude API compatible (messages interface)
python scripts/sn_agent_runner.py sn-image-recognize \
    --user-prompt "Describe the image" \
    --images "path/to/image.png" \
    --api-key "sk-ant-xxx" \
    --base-url "https://api.anthropic.com" \
    --model "claude-sonnet-4-6" \
    --vlm-type "anthropic-messages"

# Text optimization (LLM) - minimal call (uses built-in Sensenova defaults)
python scripts/sn_agent_runner.py sn-text-optimize \
    --user-prompt "Optimize the text: ..."

# Text optimization (LLM) - override to Anthropic Claude API compatible (messages interface)
python scripts/sn_agent_runner.py sn-text-optimize \
    --user-prompt "Optimize the text: ..." \
    --api-key "sk-ant-xxx" \
    --base-url "https://api.anthropic.com" \
    --model "claude-sonnet-4-6" \
    --llm-type "anthropic-messages"

Default Parameter Behavior

Authentication parameters for sn-image-generate have the following default behavior:

Parameter Default Override Description
--base-url SNIMAGEGENBASEURL -> SNBASEURL --base-url "..." CLI argument has priority
--api-key SNIMAGEGENAPIKEY -> SNAPIKEY --api-key "..." CLI argument has priority; throws MissingApiKeyError if all values are empty

sn-image-recognize and sn-text-optimize use priority: **CLI argument > command-specific env var > shared SNCHAT env var > global SN_ env var > built-in default**.

Parameter Built-in Default Vision Env Var Text Env Var
--api-key None (must be provided) SNVISIONAPIKEY -> SNCHATAPIKEY -> SNAPIKEY SNTEXTAPIKEY -> SNCHATAPIKEY -> SNAPIKEY
--base-url https://token.sensenova.cn/v1 SNVISIONBASEURL -> SNCHATBASEURL -> SNBASEURL SNTEXTBASEURL -> SNCHATBASEURL -> SNBASEURL
--model sensenova-6.7-flash-lite SNVISIONMODEL -> SNCHATMODEL SNTEXTMODEL -> SNCHATMODEL
--vlm-type / --llm-type openai-completions SNVISIONTYPE -> SNCHATTYPE SNTEXTTYPE -> SNCHATTYPE

apikey resolution order (high to low): CLI --api-key > command-specific key (SNVISIONAPIKEY/SNTEXTAPIKEY) > SNCHATAPIKEY > SNAPIKEY. If all are unset, MissingApiKeyError is raised.

Only --api-key must be provided via CLI or environment; base URL, model, and interface type have shared chat defaults.

Agent Configuration Integration

The agent can automatically read parameters from openclaw.json without manual input:

CLI Parameter openclaw.json Field Example
--base-url providers.<name>.baseUrl https://api.anthropic.com
--llm-type providers.<name>.api anthropic-messages / openai-completions
--vlm-type providers.<name>.api anthropic-messages / openai-completions
--model providers.<name>.models[].id claude-sonnet-4-6
--api-key providers.<name>.apiKey or env var sk-cp-...

Note: --llm-type and --vlm-type share the same providers.<name>.api field and are used by LLM and VLM tools respectively.

Mapping between provider.api and interface type:

api Value Corresponding --llm-type / --vlm-type Endpoint Path
anthropic-messages anthropic-messages /v1/messages
openai-completions openai-completions /v1/chat/completions
openai-responses (future extension) /responses

Mapping Between base-url and Interface Type

Different API types have different requirements for base-url format:

Type --llm-type / --vlm-type Recommended base-url Code Appended Path Final URL Example
LLM openai-completions https://token.sensenova.cn/v1 /chat/completions https://token.sensenova.cn/v1/chat/completions
LLM anthropic-messages https://api.anthropic.com/v1 /messages https://api.anthropic.com/v1/messages
VLM openai-completions https://token.sensenova.cn/v1 /chat/completions https://token.sensenova.cn/v1/chat/completions
VLM anthropic-messages https://api.anthropic.com/v1 /messages https://api.anthropic.com/v1/messages

Note:

  • Recommended chat base URLs include the provider API version path, for example /v1.
  • For compatibility, if the configured chat base URL has no path, the runner appends /v1/chat/completions or /v1/messages.
  • If the configured chat base URL already has a path such as /v1, the runner appends only /chat/completions or /messages.
  • Some providers use versioned paths other than /v1, such as Gemini's /v1beta/openai.

Output Format

All tools support two output formats:

  • --output-format text (default): outputs plain text result
  • --output-format json: outputs JSON, including status and elapsed_seconds (runtime in seconds, rounded to 2 decimals)

JSON output for sn-image-recognize and sn-text-optimize also includes model, baseurl, and interfacetype to verify the effective runtime configuration:

{
  "status": "ok",
  "result": "...",
  "model": "sensenova-6.7-flash-lite",
  "base_url": "https://token.sensenova.cn/v1",
  "interface_type": "openai-completions",
  "elapsed_seconds": 1.23
}

On failure:

{
  "status": "failed",
  "error": "error message",
  "elapsed_seconds": 0.05
}

Input/Output Specification

See references/api_spec.md for details.