@sogni-ai/sogni-creative-agent-skill 3.5.0 → 3.5.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/CHANGELOG.md CHANGED
@@ -5,6 +5,18 @@ All notable changes to this project are documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [3.5.1] - 2026-06-12
9
+
10
+ ### Fixed
11
+
12
+ - **OpenClaw no longer marks the skill "missing".** The SKILL.md frontmatter listed every optional override
13
+ variable (`SOGNI_CREDENTIALS_PATH`, `OPENCLAW_CONFIG_PATH`, `FFMPEG_PATH`, …) and optional config path
14
+ (including `~/Downloads/sogni`) under `metadata.openclaw.requires`, so OpenClaw treated them all as hard
15
+ requirements that could never be satisfied and flagged the skill `✗ missing` on every install. Requirements
16
+ are now just `bins: node` + `anyBins: ffmpeg`; the API key still comes from the credentials file or
17
+ `primaryEnv`, and the override variables remain documented in "Filesystem Paths and Overrides". Verified
18
+ live: `openclaw skills check` flips from missing to `✓ ready`.
19
+
8
20
  ## [3.5.0] - 2026-06-11
9
21
 
10
22
  ### Added
package/README.md CHANGED
@@ -170,7 +170,13 @@ Then `/reset` your Hermes session so it picks up the new skill. (You can also in
170
170
 
171
171
  ### OpenClaw plugin
172
172
 
173
- The npm package is scoped, so install it through OpenClaw's `npm:` source prefix (a bare `openclaw plugins install sogni-creative-agent-skill` will not resolve the scoped package):
173
+ The skill is published on ClawHub, so the simplest install is:
174
+
175
+ ```bash
176
+ openclaw skills install sogni-creative-agent-skill
177
+ ```
178
+
179
+ To install as a code plugin instead, use OpenClaw's `npm:` source prefix (the npm package is scoped, so a bare `openclaw plugins install sogni-creative-agent-skill` will not resolve it):
174
180
 
175
181
  ```bash
176
182
  openclaw plugins install npm:@sogni-ai/sogni-creative-agent-skill
package/SKILL.md CHANGED
@@ -2,29 +2,20 @@
2
2
  name: sogni-creative-agent-skill
3
3
  description: "Sogni Creative Agent Skill: agent skill and CLI for image, video, and music generation using Sogni AI's decentralized GPU network. Supports personas (named people with saved reference photos and voice clips), persistent memories, custom personality, style transfer, angle synthesis, Seedance/LTX/WAN video, music/lyrics, hosted chat, durable workflows, replay records, and multi-step creative workflows. Ask the agent to \"draw\", \"generate\", \"create an image\", \"make a video/animate\", \"make music\", \"apply a style\", or \"generate me as a superhero\"."
4
4
  metadata:
5
- version: "3.5.0"
5
+ version: "3.5.1"
6
6
  homepage: https://sogni.ai
7
7
  openclaw:
8
8
  emoji: "🎨"
9
9
  primaryEnv: "SOGNI_API_KEY"
10
10
  os: ["darwin", "linux", "win32"]
11
+ # Only hard requirements belong here: OpenClaw marks the skill "missing"
12
+ # until every entry is satisfied. The API key comes from the credentials
13
+ # file (primaryEnv is the env-var alternative), and the SOGNI_*/OPENCLAW_*
14
+ # override variables are optional — they are documented in the body under
15
+ # "Filesystem Paths and Overrides", not required for the skill to work.
11
16
  requires:
12
17
  bins: ["node"]
13
18
  anyBins: ["ffmpeg"]
14
- env:
15
- - "SOGNI_API_KEY"
16
- - "SOGNI_CREDENTIALS_PATH"
17
- - "SOGNI_LAST_RENDER_PATH"
18
- - "SOGNI_MEDIA_INBOUND_DIR"
19
- - "OPENCLAW_CONFIG_PATH"
20
- - "OPENCLAW_PLUGIN_CONFIG"
21
- - "FFMPEG_PATH"
22
- config:
23
- - "~/.config/sogni/credentials"
24
- - "~/.openclaw/openclaw.json"
25
- - "~/.openclaw/media/inbound"
26
- - "~/.config/sogni/last-render.json"
27
- - "~/Downloads/sogni"
28
19
  install:
29
20
  - id: npm
30
21
  kind: exec
@@ -2,7 +2,7 @@
2
2
  "id": "sogni-creative-agent-skill",
3
3
  "name": "Sogni Creative Agent Skill — Image, Video & Music Generation",
4
4
  "description": "Agent skill and CLI for Sogni AI image, video, and music generation.",
5
- "version": "3.5.0",
5
+ "version": "3.5.1",
6
6
  "skills": [
7
7
  "."
8
8
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sogni-ai/sogni-creative-agent-skill",
3
- "version": "3.5.0",
3
+ "version": "3.5.1",
4
4
  "description": "Sogni Creative Agent Skill: agent skill and CLI for Sogni AI image, video, and music generation.",
5
5
  "type": "module",
6
6
  "main": "sogni-agent.mjs",
package/version.mjs CHANGED
@@ -1 +1 @@
1
- export const PACKAGE_VERSION = '3.5.0';
1
+ export const PACKAGE_VERSION = '3.5.1';