spritecook-mcp 0.2.14 → 0.2.17
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 +10 -2
- package/package.json +2 -2
- package/src/skill.mjs +16 -4
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ This will:
|
|
|
15
15
|
3. **Configure** MCP connections automatically
|
|
16
16
|
4. **Install** an optional agent skill for smarter AI integration
|
|
17
17
|
|
|
18
|
-
The optional skills include current guidance for model discovery, GPT-Image-2 quality settings, guided character workflows, recovering lost asset IDs with `list_recent_assets(...)`, using the primary asset URL instead of lower-level variant fields, and exporting SpriteCook character animations into Godot-ready scenes.
|
|
18
|
+
The optional skills include current guidance for model discovery, GPT-Image-2 quality settings, guided character workflows, saved presets, multi-image style guide references, importing local image bytes with `import_asset(...)`, cleaning up backgrounds with `remove_background(...)`, renaming assets with `update_asset_label(...)`, recovering lost asset IDs with `list_recent_assets(...)`, using the primary asset URL instead of lower-level variant fields, and exporting SpriteCook character animations into Godot-ready scenes.
|
|
19
19
|
|
|
20
20
|
## What You Get
|
|
21
21
|
|
|
@@ -25,7 +25,15 @@ After setup, your AI agent can generate pixel art and game assets directly:
|
|
|
25
25
|
|
|
26
26
|
> "Create a character sprite sheet for my platformer game"
|
|
27
27
|
|
|
28
|
-
> "Make a set of potion icons with transparent backgrounds"
|
|
28
|
+
> "Make a set of potion icons with transparent backgrounds"
|
|
29
|
+
|
|
30
|
+
> "Use my character preset for a new idle sprite"
|
|
31
|
+
|
|
32
|
+
> "Import this local boss PNG, then animate it with a slow idle motion"
|
|
33
|
+
|
|
34
|
+
> "Remove the background from this character asset and give me the transparent PNG"
|
|
35
|
+
|
|
36
|
+
> "Rename the generated sword asset to Iron Sword Pickup"
|
|
29
37
|
|
|
30
38
|
## Manual Configuration
|
|
31
39
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spritecook-mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.17",
|
|
4
4
|
"mcpName": "ai.spritecook/generate",
|
|
5
|
-
"description": "SpriteCook MCP Server - Connect your AI agent
|
|
5
|
+
"description": "SpriteCook MCP Server - Connect your AI agent to SpriteCook for game asset generation, saved presets, import, background cleanup, asset organization, inspection, and animation.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"spritecook",
|
|
8
8
|
"mcp",
|
package/src/skill.mjs
CHANGED
|
@@ -10,18 +10,30 @@ const SKILLS = [
|
|
|
10
10
|
name: 'spritecook-workflow-essentials',
|
|
11
11
|
rawUrl: 'https://raw.githubusercontent.com/SpriteCook/skills/main/skills/spritecook-workflow-essentials/SKILL.md',
|
|
12
12
|
},
|
|
13
|
-
{
|
|
14
|
-
name: 'spritecook-generate-sprites',
|
|
15
|
-
rawUrl: 'https://raw.githubusercontent.com/SpriteCook/skills/main/skills/spritecook-generate-sprites/SKILL.md',
|
|
16
|
-
},
|
|
13
|
+
{
|
|
14
|
+
name: 'spritecook-generate-sprites',
|
|
15
|
+
rawUrl: 'https://raw.githubusercontent.com/SpriteCook/skills/main/skills/spritecook-generate-sprites/SKILL.md',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
name: 'spritecook-generate-tilesets',
|
|
19
|
+
rawUrl: 'https://raw.githubusercontent.com/SpriteCook/skills/main/skills/spritecook-generate-tilesets/SKILL.md',
|
|
20
|
+
},
|
|
17
21
|
{
|
|
18
22
|
name: 'spritecook-animate-assets',
|
|
19
23
|
rawUrl: 'https://raw.githubusercontent.com/SpriteCook/skills/main/skills/spritecook-animate-assets/SKILL.md',
|
|
20
24
|
},
|
|
25
|
+
{
|
|
26
|
+
name: 'spritecook-use-presets',
|
|
27
|
+
rawUrl: 'https://raw.githubusercontent.com/SpriteCook/skills/main/skills/spritecook-use-presets/SKILL.md',
|
|
28
|
+
},
|
|
21
29
|
{
|
|
22
30
|
name: 'spritecook-use-assets-in-godot',
|
|
23
31
|
rawUrl: 'https://raw.githubusercontent.com/SpriteCook/skills/main/skills/spritecook-use-assets-in-godot/SKILL.md',
|
|
24
32
|
},
|
|
33
|
+
{
|
|
34
|
+
name: 'spritecook-use-dual-grid-tilesets',
|
|
35
|
+
rawUrl: 'https://raw.githubusercontent.com/SpriteCook/skills/main/skills/spritecook-use-dual-grid-tilesets/SKILL.md',
|
|
36
|
+
},
|
|
25
37
|
];
|
|
26
38
|
|
|
27
39
|
/**
|