@sogni-ai/sogni-creative-agent-skill 2.0.1 → 2.0.2

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/SKILL.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: sogni-creative-agent-skill
3
- version: "2.0.1"
3
+ version: "2.0.2"
4
4
  description: Sogni Creative Agent Skill: Creative AI superpowers for all AI agent runtimes. Generates images and videos 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:
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": "0.3",
3
3
  "name": "sogni-creative-agent-skill",
4
- "version": "2.0.1",
4
+ "version": "2.0.2",
5
5
  "display_name": "Sogni Creative Agent Skill — Image & Video Generation",
6
6
  "description": "Creative AI superpowers for all AI agent runtimes, powered by Sogni AI's decentralized GPU network",
7
7
  "long_description": "Sogni Creative Agent Skill gives any AI agent (Claude Code/Desktop, OpenClaw, Hermes Agent, Manus AI, and more) image generation, image editing, video generation, photobooth face transfer, persona memory, and other creative-media tools. Uses Spark tokens — claim 50 free daily at https://app.sogni.ai/",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sogni-creative-agent-skill-desktop-server",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "private": true,
5
5
  "type": "module",
6
6
  "engines": {
@@ -2,7 +2,7 @@
2
2
  "id": "sogni-creative-agent-skill",
3
3
  "name": "Sogni Creative Agent Skill — Image & Video Generation",
4
4
  "description": "Creative AI superpowers for all AI agent runtimes, powered by Sogni AI.",
5
- "version": "2.0.1",
5
+ "version": "2.0.2",
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": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Sogni Creative Agent Skill: creative AI superpowers for all AI agent runtimes (Claude Code, Claude Desktop, OpenClaw, Hermes Agent, Manus AI, and more). Powered by Sogni AI's decentralized GPU network.",
5
5
  "type": "module",
6
6
  "main": "sogni-agent.mjs",
package/sogni-agent.mjs CHANGED
@@ -4863,4 +4863,10 @@ async function main() {
4863
4863
  process.exit(exitCode);
4864
4864
  }
4865
4865
 
4866
- main();
4866
+ main().then(
4867
+ () => process.exit(0),
4868
+ (error) => {
4869
+ console.error(`Error: ${error?.message || error}`);
4870
+ process.exit(1);
4871
+ }
4872
+ );
package/version.mjs CHANGED
@@ -1 +1 @@
1
- export const PACKAGE_VERSION = '2.0.1';
1
+ export const PACKAGE_VERSION = '2.0.2';