sn-image-base

仓库创建 2026年4月14日最近提交 19 小时前SkillHot 收录 21 天前
▸ 精选理由

作为上层场景的基础组件,便于复用和搭建图像处理流水线。

▸ 风险提示

依赖外部模型/API,需配置并保管好密钥与网络访问权限。

这个 Skill 做什么

提供图像生成、视觉识别与文本优化的底层 API。

可帮你把文案变成图片、看图识别出里面的物体/文字(用 VLM),还可以对生成的文本做 LLM 优化。通常在做图像生成功能或把视觉能力拼进产品时用,它只负责调用后端 API,不做输入预处理或界面展示。特点是底层轻量,直接把后端返回的原始结果交给上层去处理,适合被其他技能调用。

▸ 展开 SKILL.md 英文原文

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.

开发编程图像生成视觉识别文本优化通用
4.8k
Stars
331
Forks
40
仓库内 Skill
+142
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/OpenSenseNova/SenseNova-Skills/main/skills/sn-image-base/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/OpenSenseNova/SenseNova-Skills/main/skills/sn-image-base/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# sn-image-base

## Dependency Installation

```bash
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 paramete
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有