solfaces 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 +2 -2
- package/dist/agent/mcp-server.cjs +0 -1
- package/package.json +3 -4
- package/skill.md +1 -1
package/README.md
CHANGED
|
@@ -307,7 +307,7 @@ const result = await handleToolCall("generate_solface_svg", {
|
|
|
307
307
|
"mcpServers": {
|
|
308
308
|
"solfaces": {
|
|
309
309
|
"command": "npx",
|
|
310
|
-
"args": ["
|
|
310
|
+
"args": ["-y", "solfaces"]
|
|
311
311
|
}
|
|
312
312
|
}
|
|
313
313
|
}
|
|
@@ -499,7 +499,7 @@ solfaces/
|
|
|
499
499
|
│ ├── agent/
|
|
500
500
|
│ │ ├── tools.ts # 5 canonical tool definitions + handlers
|
|
501
501
|
│ │ ├── index.ts # Format adapters (MCP, OpenAI, Anthropic, Vercel AI)
|
|
502
|
-
│ │ └── mcp-server.ts # Standalone MCP server (npx solfaces
|
|
502
|
+
│ │ └── mcp-server.ts # Standalone MCP server (npx solfaces)
|
|
503
503
|
│ ├── cdn.ts # IIFE bundle for <script> tag
|
|
504
504
|
│ ├── api-templates.ts # Copy-paste route handlers
|
|
505
505
|
│ └── index.ts
|
package/package.json
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "solfaces",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Deterministic wallet avatars for the Solana ecosystem. Zero-dependency trait engine with React, vanilla JS, and server-side rendering support.",
|
|
5
5
|
"author": "https://github.com/jorger3301",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/jorger3301/solfaces"
|
|
9
|
+
"url": "git+https://github.com/jorger3301/solfaces.git"
|
|
10
10
|
},
|
|
11
|
-
"homepage": "https://solfaces.dev",
|
|
12
11
|
"keywords": [
|
|
13
12
|
"solana",
|
|
14
13
|
"avatar",
|
|
@@ -65,7 +64,7 @@
|
|
|
65
64
|
"./cdn": "./dist/solfaces.cdn.global.js"
|
|
66
65
|
},
|
|
67
66
|
"bin": {
|
|
68
|
-
"solfaces-mcp": "
|
|
67
|
+
"solfaces-mcp": "dist/agent/mcp-server.cjs"
|
|
69
68
|
},
|
|
70
69
|
"files": [
|
|
71
70
|
"dist",
|