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 CHANGED
@@ -307,7 +307,7 @@ const result = await handleToolCall("generate_solface_svg", {
307
307
  "mcpServers": {
308
308
  "solfaces": {
309
309
  "command": "npx",
310
- "args": ["solfaces-mcp"]
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-mcp)
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
@@ -1,5 +1,4 @@
1
1
  #!/usr/bin/env node
2
- #!/usr/bin/env node
3
2
  "use strict";
4
3
 
5
4
  // src/core/traits.ts
package/package.json CHANGED
@@ -1,14 +1,13 @@
1
1
  {
2
2
  "name": "solfaces",
3
- "version": "1.0.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": "./dist/agent/mcp-server.cjs"
67
+ "solfaces-mcp": "dist/agent/mcp-server.cjs"
69
68
  },
70
69
  "files": [
71
70
  "dist",
package/skill.md CHANGED
@@ -387,7 +387,7 @@ Add to your MCP config (`~/.claude/settings.json` or `.cursor/mcp.json`):
387
387
  "mcpServers": {
388
388
  "solfaces": {
389
389
  "command": "npx",
390
- "args": ["solfaces-mcp"]
390
+ "args": ["-y", "solfaces"]
391
391
  }
392
392
  }
393
393
  }