@sogni-ai/sogni-creative-agent-skill 2.1.2 → 2.1.3
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 +24 -3
- package/SKILL.md +22 -3
- package/llm.txt +17 -6
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/version.mjs +1 -1
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ With Sogni Creative Agent Skill, an agent can:
|
|
|
31
31
|
2. Install the command-line tool:
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
|
-
npm install -g @sogni-ai/sogni-creative-agent-skill
|
|
34
|
+
npm install -g @sogni-ai/sogni-creative-agent-skill@latest
|
|
35
35
|
sogni-agent --version
|
|
36
36
|
```
|
|
37
37
|
|
|
@@ -49,12 +49,33 @@ Then ask your agent to do something simple, for example:
|
|
|
49
49
|
Default install behavior: when someone asks to install Sogni Creative Agent Skill, install the command-line tool and skill source.
|
|
50
50
|
|
|
51
51
|
```bash
|
|
52
|
-
npm install -g @sogni-ai/sogni-creative-agent-skill
|
|
52
|
+
npm install -g @sogni-ai/sogni-creative-agent-skill@latest
|
|
53
53
|
sogni-agent --version
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
Then point the agent/runtime at this repository's [`SKILL.md`](./SKILL.md).
|
|
57
57
|
|
|
58
|
+
### Agent-Safe Upgrade
|
|
59
|
+
|
|
60
|
+
When upgrading from inside an agent runtime, prefer direct package-manager or existing-checkout commands. Avoid asking the agent to build a clone-or-pull shell bootstrap script with `set -e`, `bash -c`, `sh -c`, or an inline repository URL; some sandboxes correctly route those through approval.
|
|
61
|
+
|
|
62
|
+
For the CLI:
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
npm install -g @sogni-ai/sogni-creative-agent-skill@latest
|
|
66
|
+
sogni-agent --version
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
For an existing local checkout:
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
DEST="$HOME/Documents/git/sogni/sogni-creative-agent-skill"
|
|
73
|
+
git -C "$DEST" pull --ff-only
|
|
74
|
+
npm --prefix "$DEST" install
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
If the checkout is missing, use the npm install path above or explicitly approve a clone.
|
|
78
|
+
|
|
58
79
|
### OpenClaw Plugin
|
|
59
80
|
|
|
60
81
|
For the published plugin:
|
|
@@ -96,7 +117,7 @@ Point the agent to this repository's [`SKILL.md`](./SKILL.md) for behavior guida
|
|
|
96
117
|
### Manual Installation
|
|
97
118
|
|
|
98
119
|
```bash
|
|
99
|
-
|
|
120
|
+
gh repo clone Sogni-AI/sogni-creative-agent-skill
|
|
100
121
|
cd sogni-creative-agent-skill
|
|
101
122
|
npm install
|
|
102
123
|
```
|
package/SKILL.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: sogni-creative-agent-skill
|
|
3
|
-
version: "2.1.
|
|
3
|
+
version: "2.1.3"
|
|
4
4
|
description: Sogni Creative Agent Skill: agent skill and CLI for image and video generation using Sogni AI's decentralized GPU 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:
|
|
@@ -45,12 +45,31 @@ When a user asks to install this plugin, skill, or Sogni Creative Agent Skill, i
|
|
|
45
45
|
Default install path:
|
|
46
46
|
|
|
47
47
|
```bash
|
|
48
|
-
npm install -g @sogni-ai/sogni-creative-agent-skill
|
|
48
|
+
npm install -g @sogni-ai/sogni-creative-agent-skill@latest
|
|
49
49
|
sogni-agent --version
|
|
50
50
|
```
|
|
51
51
|
|
|
52
52
|
Then configure the agent/runtime to use this `SKILL.md` and invoke the `sogni-agent` CLI.
|
|
53
53
|
|
|
54
|
+
For upgrades, prefer package-manager updates or direct operations on an existing checkout. Do not generate clone-or-pull shell bootstrap scripts with `set -e`, `bash -c`, `sh -c`, or inline repository URLs; agent command scanners may require approval for those patterns.
|
|
55
|
+
|
|
56
|
+
Agent-safe CLI upgrade:
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
npm install -g @sogni-ai/sogni-creative-agent-skill@latest
|
|
60
|
+
sogni-agent --version
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Agent-safe update for an existing local checkout:
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
DEST="$HOME/Documents/git/sogni/sogni-creative-agent-skill"
|
|
67
|
+
git -C "$DEST" pull --ff-only
|
|
68
|
+
npm --prefix "$DEST" install
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
If that checkout does not exist, prefer the npm-based local skill install below, or ask before cloning.
|
|
72
|
+
|
|
54
73
|
## Setup
|
|
55
74
|
|
|
56
75
|
1. **Get Sogni credentials** at https://app.sogni.ai/
|
|
@@ -70,7 +89,7 @@ You can also export `SOGNI_API_KEY`, or `SOGNI_USERNAME` + `SOGNI_PASSWORD`, ins
|
|
|
70
89
|
|
|
71
90
|
3. **Install the CLI and skill by default:**
|
|
72
91
|
```bash
|
|
73
|
-
npm install -g @sogni-ai/sogni-creative-agent-skill
|
|
92
|
+
npm install -g @sogni-ai/sogni-creative-agent-skill@latest
|
|
74
93
|
sogni-agent --version
|
|
75
94
|
```
|
|
76
95
|
|
package/llm.txt
CHANGED
|
@@ -7,6 +7,10 @@ runtimes.
|
|
|
7
7
|
## Install (pick the integration that matches your environment)
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
+
# Agent-safe CLI install or upgrade
|
|
11
|
+
npm install -g @sogni-ai/sogni-creative-agent-skill@latest
|
|
12
|
+
sogni-agent --version
|
|
13
|
+
|
|
10
14
|
# OpenClaw plugin
|
|
11
15
|
openclaw plugins install sogni-creative-agent-skill
|
|
12
16
|
|
|
@@ -26,14 +30,21 @@ npm link
|
|
|
26
30
|
npm run openclaw:sync
|
|
27
31
|
openclaw gateway restart
|
|
28
32
|
|
|
29
|
-
#
|
|
30
|
-
|
|
31
|
-
|
|
33
|
+
# Agent-safe existing checkout update
|
|
34
|
+
DEST="$HOME/Documents/git/sogni/sogni-creative-agent-skill"
|
|
35
|
+
git -C "$DEST" pull --ff-only
|
|
36
|
+
npm --prefix "$DEST" install
|
|
32
37
|
|
|
33
|
-
#
|
|
34
|
-
|
|
38
|
+
# Hermes Agent / Manus / other agent frameworks
|
|
39
|
+
# Point the agent at the Sogni-AI/sogni-creative-agent-skill repository.
|
|
40
|
+
# Use SKILL.md as the behavior source and invoke the CLI.
|
|
35
41
|
```
|
|
36
42
|
|
|
43
|
+
When operating inside an agent runtime, do not generate clone-or-pull shell
|
|
44
|
+
bootstrap scripts with `set -e`, `bash -c`, `sh -c`, or inline repository URLs.
|
|
45
|
+
Use the npm upgrade command above, update an existing checkout with `git -C`, or
|
|
46
|
+
ask before cloning.
|
|
47
|
+
|
|
37
48
|
## Configure Sogni credentials
|
|
38
49
|
|
|
39
50
|
Once-only setup, used by every integration above:
|
|
@@ -55,7 +66,7 @@ have an account.
|
|
|
55
66
|
|
|
56
67
|
## Repo
|
|
57
68
|
|
|
58
|
-
|
|
69
|
+
Sogni-AI/sogni-creative-agent-skill
|
|
59
70
|
|
|
60
71
|
## Key files
|
|
61
72
|
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
package/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const PACKAGE_VERSION = '2.1.
|
|
1
|
+
export const PACKAGE_VERSION = '2.1.3';
|