sogni-gen 1.0.0 → 1.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/README.md +9 -1
- package/SKILL.md +11 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -13,7 +13,15 @@ A [Clawdbot](https://github.com/clawdbot/clawdbot) skill for AI image + video ge
|
|
|
13
13
|
### As a Clawdbot Skill
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
#
|
|
16
|
+
# Install from npm (no git clone)
|
|
17
|
+
mkdir -p ~/.clawdbot/skills
|
|
18
|
+
cd ~/.clawdbot/skills
|
|
19
|
+
npm i sogni-gen
|
|
20
|
+
ln -sfn node_modules/sogni-gen sogni-gen
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
# Or clone to your skills directory
|
|
17
25
|
git clone https://github.com/mauvis/sogni-gen ~/.clawdbot/skills/sogni-gen
|
|
18
26
|
cd ~/.clawdbot/skills/sogni-gen
|
|
19
27
|
npm install
|
package/SKILL.md
CHANGED
|
@@ -11,7 +11,7 @@ metadata:
|
|
|
11
11
|
install:
|
|
12
12
|
- id: npm
|
|
13
13
|
kind: exec
|
|
14
|
-
command: "cd {{skillDir}} && npm
|
|
14
|
+
command: "cd {{skillDir}} && npm i"
|
|
15
15
|
label: "Install dependencies"
|
|
16
16
|
---
|
|
17
17
|
|
|
@@ -32,10 +32,18 @@ EOF
|
|
|
32
32
|
chmod 600 ~/.config/sogni/credentials
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
-
3. **Install dependencies:**
|
|
35
|
+
3. **Install dependencies (if cloned):**
|
|
36
36
|
```bash
|
|
37
37
|
cd /path/to/sogni-gen
|
|
38
|
-
npm
|
|
38
|
+
npm i
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
4. **Or install from npm (no git clone):**
|
|
42
|
+
```bash
|
|
43
|
+
mkdir -p ~/.clawdbot/skills
|
|
44
|
+
cd ~/.clawdbot/skills
|
|
45
|
+
npm i sogni-gen
|
|
46
|
+
ln -sfn node_modules/sogni-gen sogni-gen
|
|
39
47
|
```
|
|
40
48
|
|
|
41
49
|
## Usage (Images & Video)
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sogni-gen",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Sogni AI image generation skill for Clawdbot",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "sogni-gen.mjs",
|
|
7
7
|
"bin": {
|
|
8
|
-
"sogni-gen": "
|
|
8
|
+
"sogni-gen": "sogni-gen.mjs"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "node sogni-gen.mjs --help"
|