sogni-gen 1.6.0 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -13
- package/SKILL.md +5 -1
- package/package.json +1 -1
- package/version.mjs +1 -1
package/README.md
CHANGED
|
@@ -7,23 +7,28 @@
|
|
|
7
7
|
🎨 Generate **images and videos** using [Sogni AI](https://sogni.ai)'s decentralized GPU network.
|
|
8
8
|
|
|
9
9
|
Works as:
|
|
10
|
-
- an [
|
|
11
|
-
-
|
|
12
|
-
-
|
|
10
|
+
- an [MCP server](https://modelcontextprotocol.io/) for **Claude Code**, **Claude Desktop**, and any MCP-compatible agent
|
|
11
|
+
- an [OpenClaw](https://github.com/OpenClaw/OpenClaw) plugin
|
|
12
|
+
- a skill source for [Hermes Agent](https://hermes-agent.nousresearch.com/), [Manus AI](https://manus.im), and other agent frameworks
|
|
13
|
+
- a standalone Node.js CLI
|
|
13
14
|
|
|
14
|
-
## Quick Start
|
|
15
|
+
## Quick Start
|
|
15
16
|
|
|
16
17
|
1. Create Sogni credentials (one-time): see [Setup](#setup).
|
|
17
|
-
2.
|
|
18
|
+
2. Install for your platform:
|
|
18
19
|
|
|
19
20
|
```bash
|
|
21
|
+
# MCP (Claude Code — one command)
|
|
22
|
+
claude mcp add sogni -- npx -y -p sogni-gen sogni-gen-mcp
|
|
23
|
+
|
|
24
|
+
# OpenClaw
|
|
20
25
|
openclaw plugins install sogni-gen
|
|
21
|
-
```
|
|
22
26
|
|
|
23
|
-
|
|
27
|
+
# Hermes Agent / Manus / other frameworks — point to this repo:
|
|
28
|
+
# https://github.com/Sogni-AI/openclaw-sogni-gen
|
|
24
29
|
|
|
25
|
-
|
|
26
|
-
|
|
30
|
+
# Standalone CLI
|
|
31
|
+
npm install -g sogni-gen
|
|
27
32
|
```
|
|
28
33
|
|
|
29
34
|
Then ask your agent:
|
|
@@ -37,9 +42,9 @@ Then ask your agent:
|
|
|
37
42
|
- "Generate 3 variations of a sports car in red, blue, and green"
|
|
38
43
|
- "Refine the last image at higher quality"
|
|
39
44
|
|
|
40
|
-
##
|
|
45
|
+
## Installation
|
|
41
46
|
|
|
42
|
-
### Plugin
|
|
47
|
+
### OpenClaw Plugin
|
|
43
48
|
|
|
44
49
|
```bash
|
|
45
50
|
openclaw plugins install sogni-gen
|
|
@@ -47,9 +52,9 @@ openclaw plugins install sogni-gen
|
|
|
47
52
|
|
|
48
53
|
The installed plugin loads its behavior from [`SKILL.md`](./SKILL.md) via [`openclaw.plugin.json`](./openclaw.plugin.json).
|
|
49
54
|
|
|
50
|
-
###
|
|
55
|
+
### Hermes Agent / Manus / Other Frameworks
|
|
51
56
|
|
|
52
|
-
[`llm.txt`](https://raw.githubusercontent.com/Sogni-AI/openclaw-sogni-gen/main/llm.txt)
|
|
57
|
+
Point the agent to this repository's [`SKILL.md`](./SKILL.md) for behavior guidance and [`llm.txt`](https://raw.githubusercontent.com/Sogni-AI/openclaw-sogni-gen/main/llm.txt) for install/setup help. The agent can then invoke `sogni-gen` via the CLI or MCP server.
|
|
53
58
|
|
|
54
59
|
### Manual Installation
|
|
55
60
|
|
package/SKILL.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: sogni-gen
|
|
3
|
-
version: "1.6.
|
|
3
|
+
version: "1.6.1"
|
|
4
4
|
description: Creative AI studio — generate images, videos, and music using Sogni AI's decentralized network. Supports personas (named people with saved reference photos and voice clips), persistent memories (user preferences across sessions), custom personality, style transfer, angle synthesis, and multi-step creative workflows. Ask the agent to "draw", "generate", "create an image", "make a video/animate", "apply a style", or "generate me as a superhero".
|
|
5
5
|
homepage: https://sogni.ai
|
|
6
6
|
metadata:
|
|
@@ -41,6 +41,10 @@ metadata:
|
|
|
41
41
|
|
|
42
42
|
Generate **images and videos** using Sogni AI's decentralized GPU network.
|
|
43
43
|
|
|
44
|
+
## MCP vs CLI Routing
|
|
45
|
+
|
|
46
|
+
If sogni MCP tools are available in your session (e.g., `generate_image`, `manage_personas`), **prefer MCP tools over direct CLI invocation**. MCP tools handle input validation, credential checking, file downloads, and result formatting automatically. Only fall back to the CLI (`node sogni-gen.mjs ...`) if MCP tools are not registered in your environment.
|
|
47
|
+
|
|
44
48
|
## Setup
|
|
45
49
|
|
|
46
50
|
1. **Get Sogni credentials** at https://app.sogni.ai/
|
package/package.json
CHANGED
package/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const PACKAGE_VERSION = '1.6.
|
|
1
|
+
export const PACKAGE_VERSION = '1.6.1';
|