solfaces 2.1.1 → 2.1.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 -0
- package/SKILL.md +7 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
[](https://www.npmjs.com/package/solfaces)
|
|
5
5
|
[](https://github.com/jorger3301/SolFaces/blob/main/LICENSE)
|
|
6
6
|
[](https://bundlephobia.com/package/solfaces)
|
|
7
|
+
[](https://www.typescriptlang.org/)
|
|
8
|
+
[](https://github.com/jorger3301/SolFaces/actions/workflows/ci.yml)
|
|
7
9
|
|
|
8
10
|
**Deterministic wallet avatars and names for the Solana ecosystem.**
|
|
9
11
|
|
package/SKILL.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: solfaces
|
|
3
|
-
description: Generates deterministic avatars and names for Solana wallet addresses. Use when the user mentions wallet avatars, profile pictures, visual identity, SolFaces, or needs to represent a Solana wallet visually. Provides SVG rendering, natural language descriptions, SHA-256 name derivation, and AI agent identity prompts. 6 tools available.
|
|
3
|
+
description: Generates deterministic avatars and names for Solana wallet addresses. Use when the user mentions wallet avatars, profile pictures, visual identity, SolFaces, Solana PFP, deterministic identity, wallet names, or needs to represent a Solana wallet visually or with a human-readable name. Provides SVG rendering, natural language descriptions, SHA-256 name derivation, and AI agent identity prompts. 6 tools available.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# SolFaces
|
|
@@ -43,6 +43,8 @@ Returns: description string. Auto-populates `name` from `deriveName(wallet, "dis
|
|
|
43
43
|
### `get_solface_traits`
|
|
44
44
|
Raw trait data with human-readable labels and hash.
|
|
45
45
|
|
|
46
|
+
**When to use:** User wants to inspect raw trait values, compare wallets, or build custom rendering logic.
|
|
47
|
+
|
|
46
48
|
| Parameter | Type | Required | Description |
|
|
47
49
|
|-----------|------|----------|-------------|
|
|
48
50
|
| `wallet` | string | Yes | Solana wallet address |
|
|
@@ -52,6 +54,8 @@ Returns: `{ traits: SolFaceTraits, labels: Record<string, string>, hash: string,
|
|
|
52
54
|
### `get_agent_identity`
|
|
53
55
|
System prompt snippet giving an AI agent a visual identity.
|
|
54
56
|
|
|
57
|
+
**When to use:** User is building an AI agent and wants to give it a visual identity tied to a wallet.
|
|
58
|
+
|
|
55
59
|
| Parameter | Type | Required | Description |
|
|
56
60
|
|-----------|------|----------|-------------|
|
|
57
61
|
| `wallet` | string | Yes | Agent's wallet address |
|
|
@@ -74,6 +78,8 @@ Returns: Without format: `SolNameIdentity` object (short/name/tag/full/adjective
|
|
|
74
78
|
### `list_solface_themes`
|
|
75
79
|
List available preset themes with descriptions.
|
|
76
80
|
|
|
81
|
+
**When to use:** User wants to see available themes or choose a visual style.
|
|
82
|
+
|
|
77
83
|
No parameters. Returns: Array of `{ name, description, reactOnly }`.
|
|
78
84
|
|
|
79
85
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "solfaces",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "Deterministic wallet avatars and names for the Solana ecosystem. SHA-256 name derivation, zero-dependency trait engine with React, vanilla JS, and server-side rendering support.",
|
|
5
5
|
"author": "https://github.com/jorger3301",
|
|
6
6
|
"license": "MIT",
|