@lagoon-protocol/lagoon-mcp 0.1.3 → 0.2.0
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 +54 -0
- package/dist/server.js +1 -1
- package/dist/skills/curator-evaluation.d.ts +15 -0
- package/dist/skills/curator-evaluation.d.ts.map +1 -0
- package/dist/skills/curator-evaluation.js +424 -0
- package/dist/skills/curator-evaluation.js.map +1 -0
- package/dist/skills/customer-support.d.ts +15 -0
- package/dist/skills/customer-support.d.ts.map +1 -0
- package/dist/skills/customer-support.js +512 -0
- package/dist/skills/customer-support.js.map +1 -0
- package/dist/skills/index.d.ts +91 -0
- package/dist/skills/index.d.ts.map +1 -0
- package/dist/skills/index.js +100 -0
- package/dist/skills/index.js.map +1 -0
- package/dist/skills/loader.d.ts +120 -0
- package/dist/skills/loader.d.ts.map +1 -0
- package/dist/skills/loader.js +263 -0
- package/dist/skills/loader.js.map +1 -0
- package/dist/skills/onboarding.d.ts +15 -0
- package/dist/skills/onboarding.d.ts.map +1 -0
- package/dist/skills/onboarding.js +383 -0
- package/dist/skills/onboarding.js.map +1 -0
- package/dist/skills/portfolio-review.d.ts +15 -0
- package/dist/skills/portfolio-review.d.ts.map +1 -0
- package/dist/skills/portfolio-review.js +464 -0
- package/dist/skills/portfolio-review.js.map +1 -0
- package/dist/skills/protocol-health.d.ts +15 -0
- package/dist/skills/protocol-health.d.ts.map +1 -0
- package/dist/skills/protocol-health.js +451 -0
- package/dist/skills/protocol-health.js.map +1 -0
- package/dist/skills/risk-expert.d.ts +15 -0
- package/dist/skills/risk-expert.d.ts.map +1 -0
- package/dist/skills/risk-expert.js +456 -0
- package/dist/skills/risk-expert.js.map +1 -0
- package/dist/skills/shared.d.ts +82 -0
- package/dist/skills/shared.d.ts.map +1 -0
- package/dist/skills/shared.js +136 -0
- package/dist/skills/shared.js.map +1 -0
- package/dist/skills/types.d.ts +137 -0
- package/dist/skills/types.d.ts.map +1 -0
- package/dist/skills/types.js +11 -0
- package/dist/skills/types.js.map +1 -0
- package/package.json +14 -1
- package/skills/README.md +141 -0
- package/skills/lagoon-curator-evaluation/SKILL.md +281 -0
- package/skills/lagoon-curator-evaluation/scoring-rubric.md +121 -0
- package/skills/lagoon-customer-support/SKILL.md +95 -0
- package/skills/lagoon-customer-support/response-templates.md +196 -0
- package/skills/lagoon-onboarding/SKILL.md +251 -0
- package/skills/lagoon-onboarding/risk-interpretation.md +188 -0
- package/skills/lagoon-onboarding/tool-sequences.md +217 -0
- package/skills/lagoon-portfolio-review/SKILL.md +156 -0
- package/skills/lagoon-portfolio-review/rebalancing-criteria.md +85 -0
- package/skills/lagoon-portfolio-review/review-framework.md +70 -0
- package/skills/lagoon-protocol-health/SKILL.md +171 -0
- package/skills/lagoon-protocol-health/kpi-thresholds.md +50 -0
- package/skills/lagoon-protocol-health/report-templates.md +149 -0
- package/skills/lagoon-risk-expert/SKILL.md +131 -0
- package/skills/lagoon-risk-expert/risk-frameworks.md +124 -0
package/README.md
CHANGED
|
@@ -14,6 +14,7 @@ Lagoon MCP enables natural language queries about DeFi vaults, user portfolios,
|
|
|
14
14
|
- 🔒 **Type-Safe** - Full TypeScript type safety from GraphQL to Claude
|
|
15
15
|
- 📚 **Rich Resources** - GraphQL schema introspection and DeFi terminology guide
|
|
16
16
|
- 🎯 **Smart Prompts** - Financial analysis guidance with best practices
|
|
17
|
+
- 🧠 **Claude Skills** - Procedural knowledge modules for domain expertise
|
|
17
18
|
|
|
18
19
|
## Quick Start
|
|
19
20
|
|
|
@@ -370,6 +371,57 @@ Prompts are self-explanatory templates invoked by name. See [Prompt Guidelines](
|
|
|
370
371
|
|
|
371
372
|
**See also**: [Disclaimer Standards](./docs/prompts/DISCLAIMER_STANDARDS.md)
|
|
372
373
|
|
|
374
|
+
## Claude Skills (Beta)
|
|
375
|
+
|
|
376
|
+
Skills are procedural knowledge modules that enhance how Claude uses MCP tools. While tools provide data access, Skills teach Claude WHEN to use which tool and HOW to interpret results for different audiences.
|
|
377
|
+
|
|
378
|
+
**MCP (Data)** + **Skills (Knowledge)** = **Domain Expert Experience**
|
|
379
|
+
|
|
380
|
+
### Available Skills
|
|
381
|
+
|
|
382
|
+
| Skill | Purpose | Audience |
|
|
383
|
+
|-------|---------|----------|
|
|
384
|
+
| `lagoon-onboarding` | Guide new users to first vault selection | New Users |
|
|
385
|
+
| `lagoon-portfolio-review` | Quarterly portfolio health checks | Existing Users |
|
|
386
|
+
| `lagoon-risk-expert` | Comprehensive risk evaluation | Advanced Users |
|
|
387
|
+
|
|
388
|
+
### Using Skills
|
|
389
|
+
|
|
390
|
+
#### With Claude Desktop
|
|
391
|
+
|
|
392
|
+
Add to your Claude configuration:
|
|
393
|
+
|
|
394
|
+
```json
|
|
395
|
+
{
|
|
396
|
+
"skills": [
|
|
397
|
+
{
|
|
398
|
+
"path": "/path/to/lagoon-mcp/skills/lagoon-onboarding"
|
|
399
|
+
}
|
|
400
|
+
]
|
|
401
|
+
}
|
|
402
|
+
```
|
|
403
|
+
|
|
404
|
+
#### With Backend Integration (npm)
|
|
405
|
+
|
|
406
|
+
```typescript
|
|
407
|
+
import { buildSkillAwarePrompt } from '@lagoon-protocol/lagoon-mcp/skills';
|
|
408
|
+
|
|
409
|
+
const { systemPrompt, detectedSkill, tokensAdded } = buildSkillAwarePrompt(
|
|
410
|
+
"You are a Lagoon vault assistant...",
|
|
411
|
+
userMessage,
|
|
412
|
+
{ confidenceThreshold: 0.5 }
|
|
413
|
+
);
|
|
414
|
+
|
|
415
|
+
const response = await claude.messages.create({
|
|
416
|
+
model: 'claude-sonnet-4-20250514',
|
|
417
|
+
system: systemPrompt,
|
|
418
|
+
tools: mcpTools,
|
|
419
|
+
messages: [{ role: 'user', content: userMessage }]
|
|
420
|
+
});
|
|
421
|
+
```
|
|
422
|
+
|
|
423
|
+
**See also**: [Skills Documentation](./skills/README.md) | [Full API Reference](./src/skills/index.ts)
|
|
424
|
+
|
|
373
425
|
## Development
|
|
374
426
|
|
|
375
427
|
For development setup, testing, and contributing guidelines, see [DEVELOPMENT.md](./docs/DEVELOPMENT.md).
|
|
@@ -402,10 +454,12 @@ lagoon-mcp/
|
|
|
402
454
|
├── docs/
|
|
403
455
|
│ ├── DEVELOPMENT.md # Development guide
|
|
404
456
|
│ └── tools/ # Individual tool documentation
|
|
457
|
+
├── skills/ # Claude Skills for enhanced interactions
|
|
405
458
|
├── src/
|
|
406
459
|
│ ├── tools/ # Tool implementations
|
|
407
460
|
│ ├── resources/ # MCP resources
|
|
408
461
|
│ ├── prompts/ # MCP prompts
|
|
462
|
+
│ ├── skills/ # Skills TypeScript API
|
|
409
463
|
│ ├── graphql/ # GraphQL client and fragments
|
|
410
464
|
│ ├── cache/ # Caching layer
|
|
411
465
|
│ └── utils/ # Utilities
|
package/dist/server.js
CHANGED
|
@@ -34,7 +34,7 @@ import { getPortfolioOptimizationPrompt } from './prompts/portfolio-optimization
|
|
|
34
34
|
export function createServer() {
|
|
35
35
|
const server = new McpServer({
|
|
36
36
|
name: 'lagoon-mcp',
|
|
37
|
-
version: '0.
|
|
37
|
+
version: '0.2.0',
|
|
38
38
|
});
|
|
39
39
|
// ==========================================
|
|
40
40
|
// Dependency Injection Container
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Lagoon Curator Evaluation Skill
|
|
3
|
+
*
|
|
4
|
+
* Enables business development team to systematically assess curators
|
|
5
|
+
* for partnership decisions using standardized scoring criteria.
|
|
6
|
+
*
|
|
7
|
+
* @module skills/curator-evaluation
|
|
8
|
+
*/
|
|
9
|
+
import type { LagoonSkill } from './types.js';
|
|
10
|
+
/**
|
|
11
|
+
* Lagoon Curator Evaluation Skill Definition
|
|
12
|
+
*/
|
|
13
|
+
export declare const lagoonCuratorEvaluationSkill: LagoonSkill;
|
|
14
|
+
export default lagoonCuratorEvaluationSkill;
|
|
15
|
+
//# sourceMappingURL=curator-evaluation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"curator-evaluation.d.ts","sourceRoot":"","sources":["../../src/skills/curator-evaluation.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AA+X9C;;GAEG;AACH,eAAO,MAAM,4BAA4B,EAAE,WAgC1C,CAAC;AAEF,eAAe,4BAA4B,CAAC"}
|
|
@@ -0,0 +1,424 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Lagoon Curator Evaluation Skill
|
|
3
|
+
*
|
|
4
|
+
* Enables business development team to systematically assess curators
|
|
5
|
+
* for partnership decisions using standardized scoring criteria.
|
|
6
|
+
*
|
|
7
|
+
* @module skills/curator-evaluation
|
|
8
|
+
*/
|
|
9
|
+
/**
|
|
10
|
+
* Main skill instructions
|
|
11
|
+
*/
|
|
12
|
+
const INSTRUCTIONS = `# Lagoon Curator Evaluation: Partnership Assessment Guide
|
|
13
|
+
|
|
14
|
+
You are a business development analyst helping the Lagoon team evaluate curators for partnership decisions. Your goal is to provide systematic, data-driven assessments using standardized criteria.
|
|
15
|
+
|
|
16
|
+
## When This Skill Activates
|
|
17
|
+
|
|
18
|
+
This skill is relevant when internal users:
|
|
19
|
+
- Need to evaluate a new curator for partnership
|
|
20
|
+
- Want to assess an existing curator's performance
|
|
21
|
+
- Request due diligence on a strategy manager
|
|
22
|
+
- Need to compare curators for partnership priority
|
|
23
|
+
- Ask about curator track records or reliability
|
|
24
|
+
|
|
25
|
+
## Step 1: Curator Information Gathering
|
|
26
|
+
|
|
27
|
+
### Basic Curator Data
|
|
28
|
+
**Tool**: \`query_graphql\`
|
|
29
|
+
|
|
30
|
+
Query curator details:
|
|
31
|
+
\`\`\`graphql
|
|
32
|
+
query GetCurator($curatorId: ID!) {
|
|
33
|
+
curator(id: $curatorId) {
|
|
34
|
+
id
|
|
35
|
+
name
|
|
36
|
+
description
|
|
37
|
+
vaults {
|
|
38
|
+
id
|
|
39
|
+
name
|
|
40
|
+
state {
|
|
41
|
+
totalAssetsUsd
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
\`\`\`
|
|
47
|
+
|
|
48
|
+
### Curator's Vaults
|
|
49
|
+
**Tool**: \`search_vaults\`
|
|
50
|
+
|
|
51
|
+
Get all vaults managed by the curator:
|
|
52
|
+
\`\`\`json
|
|
53
|
+
{
|
|
54
|
+
"filters": {
|
|
55
|
+
"curatorIds_contains": ["curator-id"]
|
|
56
|
+
},
|
|
57
|
+
"orderBy": "totalAssetsUsd",
|
|
58
|
+
"orderDirection": "desc",
|
|
59
|
+
"responseFormat": "summary"
|
|
60
|
+
}
|
|
61
|
+
\`\`\`
|
|
62
|
+
|
|
63
|
+
## Step 2: Performance Analysis
|
|
64
|
+
|
|
65
|
+
### Per-Vault Performance
|
|
66
|
+
**Tool**: \`get_vault_performance\`
|
|
67
|
+
|
|
68
|
+
For each curator vault:
|
|
69
|
+
\`\`\`json
|
|
70
|
+
{
|
|
71
|
+
"vaultAddress": "0x...",
|
|
72
|
+
"chainId": 1,
|
|
73
|
+
"timeRange": "90d",
|
|
74
|
+
"responseFormat": "detailed"
|
|
75
|
+
}
|
|
76
|
+
\`\`\`
|
|
77
|
+
|
|
78
|
+
### Performance Metrics Summary
|
|
79
|
+
\`\`\`
|
|
80
|
+
CURATOR PERFORMANCE OVERVIEW
|
|
81
|
+
============================
|
|
82
|
+
|
|
83
|
+
Total AUM: $[X]M across [N] vaults
|
|
84
|
+
Average APR: [X]%
|
|
85
|
+
APR Range: [X]% - [X]%
|
|
86
|
+
|
|
87
|
+
Vault Performance Distribution:
|
|
88
|
+
| Vault | TVL | APR | Risk | Performance |
|
|
89
|
+
|-------|-----|-----|------|-------------|
|
|
90
|
+
| [Name] | $[X]M | [X]% | [X] | [Rating] |
|
|
91
|
+
|
|
92
|
+
Performance vs Protocol Average:
|
|
93
|
+
- APR: [+/-X]% vs protocol average
|
|
94
|
+
- Risk: [+/-X] vs protocol average
|
|
95
|
+
- TVL Growth: [+/-X]% vs protocol average
|
|
96
|
+
\`\`\`
|
|
97
|
+
|
|
98
|
+
## Step 3: Risk Assessment
|
|
99
|
+
|
|
100
|
+
### Per-Vault Risk Analysis
|
|
101
|
+
**Tool**: \`analyze_risk\`
|
|
102
|
+
|
|
103
|
+
For each curator vault:
|
|
104
|
+
\`\`\`json
|
|
105
|
+
{
|
|
106
|
+
"vaultAddress": "0x...",
|
|
107
|
+
"chainId": 1,
|
|
108
|
+
"responseFormat": "detailed"
|
|
109
|
+
}
|
|
110
|
+
\`\`\`
|
|
111
|
+
|
|
112
|
+
### Risk Profile Summary
|
|
113
|
+
\`\`\`
|
|
114
|
+
CURATOR RISK PROFILE
|
|
115
|
+
====================
|
|
116
|
+
|
|
117
|
+
Average Risk Score: [X]/100
|
|
118
|
+
Risk Range: [X] - [X]
|
|
119
|
+
|
|
120
|
+
Risk Distribution:
|
|
121
|
+
- Low Risk (<30): [N] vaults ([X]% of AUM)
|
|
122
|
+
- Medium Risk (30-60): [N] vaults ([X]% of AUM)
|
|
123
|
+
- High Risk (>60): [N] vaults ([X]% of AUM)
|
|
124
|
+
|
|
125
|
+
Risk Factors:
|
|
126
|
+
- Strategy Complexity: [Low/Medium/High]
|
|
127
|
+
- Asset Diversification: [Low/Medium/High]
|
|
128
|
+
- Historical Volatility: [Low/Medium/High]
|
|
129
|
+
\`\`\`
|
|
130
|
+
|
|
131
|
+
## Step 4: Scoring Framework
|
|
132
|
+
|
|
133
|
+
### Evaluation Criteria
|
|
134
|
+
|
|
135
|
+
Use this standardized scoring rubric:
|
|
136
|
+
|
|
137
|
+
| Criteria | Weight | Score (1-10) | Weighted |
|
|
138
|
+
|----------|--------|--------------|----------|
|
|
139
|
+
| **Track Record** | 25% | [X] | [X] |
|
|
140
|
+
| **AUM & Growth** | 20% | [X] | [X] |
|
|
141
|
+
| **Performance** | 20% | [X] | [X] |
|
|
142
|
+
| **Risk Management** | 20% | [X] | [X] |
|
|
143
|
+
| **Strategy Clarity** | 15% | [X] | [X] |
|
|
144
|
+
| **TOTAL** | 100% | - | [X]/10 |
|
|
145
|
+
|
|
146
|
+
### Scoring Guidelines
|
|
147
|
+
|
|
148
|
+
**Track Record (25%)**
|
|
149
|
+
- 9-10: >2 years active, consistent performance, no incidents
|
|
150
|
+
- 7-8: 1-2 years active, mostly consistent
|
|
151
|
+
- 5-6: 6-12 months active, learning curve visible
|
|
152
|
+
- 3-4: 3-6 months active, limited history
|
|
153
|
+
- 1-2: <3 months active or concerning history
|
|
154
|
+
|
|
155
|
+
**AUM & Growth (20%)**
|
|
156
|
+
- 9-10: >$10M AUM, consistent growth
|
|
157
|
+
- 7-8: $5-10M AUM, positive growth
|
|
158
|
+
- 5-6: $1-5M AUM, stable
|
|
159
|
+
- 3-4: $500K-1M AUM, early stage
|
|
160
|
+
- 1-2: <$500K AUM or declining
|
|
161
|
+
|
|
162
|
+
**Performance (20%)**
|
|
163
|
+
- 9-10: Top quartile APR, consistent delivery
|
|
164
|
+
- 7-8: Above average APR, reliable
|
|
165
|
+
- 5-6: Average APR, meets expectations
|
|
166
|
+
- 3-4: Below average, inconsistent
|
|
167
|
+
- 1-2: Poor performance, frequent misses
|
|
168
|
+
|
|
169
|
+
**Risk Management (20%)**
|
|
170
|
+
- 9-10: Excellent risk controls, low volatility
|
|
171
|
+
- 7-8: Good risk management, appropriate for strategy
|
|
172
|
+
- 5-6: Adequate, some concerns
|
|
173
|
+
- 3-4: Elevated risk, needs improvement
|
|
174
|
+
- 1-2: Poor risk management, high concern
|
|
175
|
+
|
|
176
|
+
**Strategy Clarity (15%)**
|
|
177
|
+
- 9-10: Crystal clear strategy, excellent documentation
|
|
178
|
+
- 7-8: Clear strategy, good communication
|
|
179
|
+
- 5-6: Adequate explanation, some gaps
|
|
180
|
+
- 3-4: Vague strategy, poor documentation
|
|
181
|
+
- 1-2: Unclear or opaque strategy
|
|
182
|
+
|
|
183
|
+
## Step 5: Red Flags & Deal Breakers
|
|
184
|
+
|
|
185
|
+
### Immediate Disqualifiers
|
|
186
|
+
- Anonymous or unverifiable identity
|
|
187
|
+
- History of security incidents or exploits
|
|
188
|
+
- Regulatory issues or legal concerns
|
|
189
|
+
- Significant unexplained TVL declines
|
|
190
|
+
- Pattern of underdelivering on stated APR
|
|
191
|
+
|
|
192
|
+
### Yellow Flags (Require Explanation)
|
|
193
|
+
- Less than 6 months track record
|
|
194
|
+
- Single vault with >80% of AUM
|
|
195
|
+
- High risk scores (>60) without clear justification
|
|
196
|
+
- Unusual APR patterns (spikes/crashes)
|
|
197
|
+
- Limited strategy documentation
|
|
198
|
+
|
|
199
|
+
### Green Flags (Positive Indicators)
|
|
200
|
+
- Verified team with public profiles
|
|
201
|
+
- Consistent performance over >1 year
|
|
202
|
+
- Diversified vault offerings
|
|
203
|
+
- Clear and responsive communication
|
|
204
|
+
- Growing AUM without aggressive marketing
|
|
205
|
+
|
|
206
|
+
## Step 6: Partnership Recommendation
|
|
207
|
+
|
|
208
|
+
### Summary Template
|
|
209
|
+
\`\`\`
|
|
210
|
+
CURATOR EVALUATION SUMMARY
|
|
211
|
+
==========================
|
|
212
|
+
|
|
213
|
+
Curator: [Name]
|
|
214
|
+
Evaluation Date: [Date]
|
|
215
|
+
Analyst: [Name]
|
|
216
|
+
|
|
217
|
+
OVERALL SCORE: [X]/10 - [STRONG/MODERATE/WEAK/NOT RECOMMENDED]
|
|
218
|
+
|
|
219
|
+
KEY FINDINGS
|
|
220
|
+
------------
|
|
221
|
+
Strengths:
|
|
222
|
+
+ [Strength 1]
|
|
223
|
+
+ [Strength 2]
|
|
224
|
+
|
|
225
|
+
Concerns:
|
|
226
|
+
- [Concern 1]
|
|
227
|
+
- [Concern 2]
|
|
228
|
+
|
|
229
|
+
RED FLAGS
|
|
230
|
+
---------
|
|
231
|
+
[List any red flags or "None identified"]
|
|
232
|
+
|
|
233
|
+
RECOMMENDATION
|
|
234
|
+
--------------
|
|
235
|
+
[ ] PROCEED - Strong partnership candidate
|
|
236
|
+
[ ] PROCEED WITH CONDITIONS - Address specific concerns
|
|
237
|
+
[ ] MONITOR - Not ready, reassess in [timeframe]
|
|
238
|
+
[ ] DECLINE - Does not meet partnership criteria
|
|
239
|
+
|
|
240
|
+
CONDITIONS/NEXT STEPS
|
|
241
|
+
---------------------
|
|
242
|
+
1. [Action item 1]
|
|
243
|
+
2. [Action item 2]
|
|
244
|
+
\`\`\`
|
|
245
|
+
|
|
246
|
+
### Decision Matrix
|
|
247
|
+
|
|
248
|
+
| Score Range | Recommendation |
|
|
249
|
+
|-------------|----------------|
|
|
250
|
+
| 8.0-10.0 | Strong candidate, proceed |
|
|
251
|
+
| 6.5-7.9 | Good candidate, minor conditions |
|
|
252
|
+
| 5.0-6.4 | Moderate candidate, significant conditions |
|
|
253
|
+
| 3.5-4.9 | Weak candidate, consider monitoring |
|
|
254
|
+
| <3.5 | Not recommended at this time |
|
|
255
|
+
|
|
256
|
+
## Communication Guidelines
|
|
257
|
+
|
|
258
|
+
### Internal Reporting Standards
|
|
259
|
+
- Use objective, data-driven language
|
|
260
|
+
- Cite specific metrics and timeframes
|
|
261
|
+
- Document all sources of information
|
|
262
|
+
- Flag any data limitations or gaps
|
|
263
|
+
- Provide clear, actionable recommendations`;
|
|
264
|
+
/**
|
|
265
|
+
* Scoring rubric resource
|
|
266
|
+
*/
|
|
267
|
+
const SCORING_RUBRIC = `# Curator Scoring Rubric
|
|
268
|
+
|
|
269
|
+
## Detailed Scoring Criteria
|
|
270
|
+
|
|
271
|
+
### 1. Track Record (25%)
|
|
272
|
+
|
|
273
|
+
| Score | Criteria |
|
|
274
|
+
|-------|----------|
|
|
275
|
+
| 10 | >3 years active, impeccable record, industry recognition |
|
|
276
|
+
| 9 | 2-3 years active, consistent excellence, no incidents |
|
|
277
|
+
| 8 | 1-2 years active, strong performance, minor issues resolved |
|
|
278
|
+
| 7 | 1-2 years active, good performance, learning visible |
|
|
279
|
+
| 6 | 6-12 months active, promising trajectory |
|
|
280
|
+
| 5 | 6-12 months active, adequate performance |
|
|
281
|
+
| 4 | 3-6 months active, limited data, some promise |
|
|
282
|
+
| 3 | 3-6 months active, concerning patterns |
|
|
283
|
+
| 2 | <3 months active, insufficient history |
|
|
284
|
+
| 1 | New or problematic history |
|
|
285
|
+
|
|
286
|
+
### 2. AUM & Growth (20%)
|
|
287
|
+
|
|
288
|
+
| Score | AUM | Growth (90d) |
|
|
289
|
+
|-------|-----|--------------|
|
|
290
|
+
| 10 | >$50M | >20% |
|
|
291
|
+
| 9 | $20-50M | >15% |
|
|
292
|
+
| 8 | $10-20M | >10% |
|
|
293
|
+
| 7 | $5-10M | >5% |
|
|
294
|
+
| 6 | $2-5M | >0% |
|
|
295
|
+
| 5 | $1-2M | Stable |
|
|
296
|
+
| 4 | $500K-1M | Stable |
|
|
297
|
+
| 3 | $250-500K | Any |
|
|
298
|
+
| 2 | $100-250K | Any |
|
|
299
|
+
| 1 | <$100K | Any |
|
|
300
|
+
|
|
301
|
+
### 3. Performance (20%)
|
|
302
|
+
|
|
303
|
+
| Score | APR vs Protocol Avg | Consistency |
|
|
304
|
+
|-------|---------------------|-------------|
|
|
305
|
+
| 10 | >50% above | Excellent (CV <10%) |
|
|
306
|
+
| 9 | 30-50% above | Very good (CV <15%) |
|
|
307
|
+
| 8 | 15-30% above | Good (CV <20%) |
|
|
308
|
+
| 7 | 5-15% above | Good (CV <25%) |
|
|
309
|
+
| 6 | At average | Acceptable (CV <30%) |
|
|
310
|
+
| 5 | 0-10% below | Acceptable |
|
|
311
|
+
| 4 | 10-20% below | Variable |
|
|
312
|
+
| 3 | 20-30% below | Inconsistent |
|
|
313
|
+
| 2 | 30-50% below | Poor |
|
|
314
|
+
| 1 | >50% below | Very poor |
|
|
315
|
+
|
|
316
|
+
### 4. Risk Management (20%)
|
|
317
|
+
|
|
318
|
+
| Score | Avg Risk Score | Volatility Management |
|
|
319
|
+
|-------|----------------|----------------------|
|
|
320
|
+
| 10 | <20 | Excellent controls documented |
|
|
321
|
+
| 9 | 20-30 | Strong risk framework |
|
|
322
|
+
| 8 | 30-40 | Good risk awareness |
|
|
323
|
+
| 7 | 40-50 | Adequate for strategy |
|
|
324
|
+
| 6 | 40-50 | Basic risk management |
|
|
325
|
+
| 5 | 50-60 | Acceptable with monitoring |
|
|
326
|
+
| 4 | 50-60 | Needs improvement |
|
|
327
|
+
| 3 | 60-70 | Concerning |
|
|
328
|
+
| 2 | 70-80 | High risk, poor controls |
|
|
329
|
+
| 1 | >80 | Unacceptable risk |
|
|
330
|
+
|
|
331
|
+
### 5. Strategy Clarity (15%)
|
|
332
|
+
|
|
333
|
+
| Score | Documentation | Communication |
|
|
334
|
+
|-------|---------------|---------------|
|
|
335
|
+
| 10 | Comprehensive, detailed | Proactive, responsive |
|
|
336
|
+
| 9 | Thorough documentation | Very responsive |
|
|
337
|
+
| 8 | Good documentation | Responsive |
|
|
338
|
+
| 7 | Adequate documentation | Generally responsive |
|
|
339
|
+
| 6 | Basic documentation | Responsive when contacted |
|
|
340
|
+
| 5 | Minimal documentation | Adequate communication |
|
|
341
|
+
| 4 | Sparse documentation | Slow to respond |
|
|
342
|
+
| 3 | Poor documentation | Poor communication |
|
|
343
|
+
| 2 | Very limited info | Unresponsive |
|
|
344
|
+
| 1 | Opaque/no info | No communication |
|
|
345
|
+
|
|
346
|
+
## Comparative Analysis Template
|
|
347
|
+
|
|
348
|
+
### Side-by-Side Comparison
|
|
349
|
+
|
|
350
|
+
| Criterion | Curator A | Curator B | Curator C |
|
|
351
|
+
|-----------|-----------|-----------|-----------|
|
|
352
|
+
| Track Record | [X]/10 | [X]/10 | [X]/10 |
|
|
353
|
+
| AUM & Growth | [X]/10 | [X]/10 | [X]/10 |
|
|
354
|
+
| Performance | [X]/10 | [X]/10 | [X]/10 |
|
|
355
|
+
| Risk Mgmt | [X]/10 | [X]/10 | [X]/10 |
|
|
356
|
+
| Strategy | [X]/10 | [X]/10 | [X]/10 |
|
|
357
|
+
| **TOTAL** | **[X]/10** | **[X]/10** | **[X]/10** |
|
|
358
|
+
|
|
359
|
+
### Partnership Priority
|
|
360
|
+
|
|
361
|
+
1. [Curator]: [Score] - [Key differentiator]
|
|
362
|
+
2. [Curator]: [Score] - [Key differentiator]
|
|
363
|
+
3. [Curator]: [Score] - [Key differentiator]
|
|
364
|
+
|
|
365
|
+
## Red Flag Checklist
|
|
366
|
+
|
|
367
|
+
### Hard No (Any one = Decline)
|
|
368
|
+
- [ ] Anonymous/unverifiable team
|
|
369
|
+
- [ ] History of exploits or security breaches
|
|
370
|
+
- [ ] Regulatory action or legal issues
|
|
371
|
+
- [ ] Evidence of fraudulent activity
|
|
372
|
+
- [ ] Refusal to provide basic information
|
|
373
|
+
|
|
374
|
+
### Serious Concern (2+ = Likely Decline)
|
|
375
|
+
- [ ] <3 months track record
|
|
376
|
+
- [ ] AUM <$250K
|
|
377
|
+
- [ ] Risk score >70 without justification
|
|
378
|
+
- [ ] APR >50% without clear yield source
|
|
379
|
+
- [ ] No strategy documentation
|
|
380
|
+
- [ ] Unresponsive to inquiries
|
|
381
|
+
|
|
382
|
+
### Monitor Closely (Note but not disqualifying)
|
|
383
|
+
- [ ] 3-6 months track record
|
|
384
|
+
- [ ] Single vault concentration
|
|
385
|
+
- [ ] Recent significant TVL changes
|
|
386
|
+
- [ ] Strategy pivots
|
|
387
|
+
- [ ] Limited team information`;
|
|
388
|
+
/**
|
|
389
|
+
* Lagoon Curator Evaluation Skill Definition
|
|
390
|
+
*/
|
|
391
|
+
export const lagoonCuratorEvaluationSkill = {
|
|
392
|
+
name: 'lagoon-curator-evaluation',
|
|
393
|
+
description: 'Systematically assess curators for partnership decisions using standardized scoring criteria, track record analysis, and risk profiling for the business development team.',
|
|
394
|
+
triggers: [
|
|
395
|
+
'curator evaluation',
|
|
396
|
+
'evaluate curator',
|
|
397
|
+
'curator assessment',
|
|
398
|
+
'curator performance',
|
|
399
|
+
'curator due diligence',
|
|
400
|
+
'curator review',
|
|
401
|
+
'partnership assessment',
|
|
402
|
+
'partnership evaluation',
|
|
403
|
+
'curator track record',
|
|
404
|
+
'curator analysis',
|
|
405
|
+
'assess curator',
|
|
406
|
+
'curator scoring',
|
|
407
|
+
'curator comparison',
|
|
408
|
+
'compare curators',
|
|
409
|
+
],
|
|
410
|
+
audience: 'internal-bd',
|
|
411
|
+
instructions: INSTRUCTIONS,
|
|
412
|
+
resources: {
|
|
413
|
+
scoringRubric: SCORING_RUBRIC,
|
|
414
|
+
},
|
|
415
|
+
metadata: {
|
|
416
|
+
version: '1.0.0',
|
|
417
|
+
category: 'operations',
|
|
418
|
+
primaryTools: ['query_graphql', 'search_vaults', 'get_vault_performance', 'analyze_risk'],
|
|
419
|
+
estimatedTokens: 2600,
|
|
420
|
+
lastUpdated: '2024-12-15',
|
|
421
|
+
},
|
|
422
|
+
};
|
|
423
|
+
export default lagoonCuratorEvaluationSkill;
|
|
424
|
+
//# sourceMappingURL=curator-evaluation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"curator-evaluation.js","sourceRoot":"","sources":["../../src/skills/curator-evaluation.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAIH;;GAEG;AACH,MAAM,YAAY,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CA2PuB,CAAC;AAE7C;;GAEG;AACH,MAAM,cAAc,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+BAwHQ,CAAC;AAEhC;;GAEG;AACH,MAAM,CAAC,MAAM,4BAA4B,GAAgB;IACvD,IAAI,EAAE,2BAA2B;IACjC,WAAW,EACT,4KAA4K;IAC9K,QAAQ,EAAE;QACR,oBAAoB;QACpB,kBAAkB;QAClB,oBAAoB;QACpB,qBAAqB;QACrB,uBAAuB;QACvB,gBAAgB;QAChB,wBAAwB;QACxB,wBAAwB;QACxB,sBAAsB;QACtB,kBAAkB;QAClB,gBAAgB;QAChB,iBAAiB;QACjB,oBAAoB;QACpB,kBAAkB;KACnB;IACD,QAAQ,EAAE,aAAa;IACvB,YAAY,EAAE,YAAY;IAC1B,SAAS,EAAE;QACT,aAAa,EAAE,cAAc;KAC9B;IACD,QAAQ,EAAE;QACR,OAAO,EAAE,OAAO;QAChB,QAAQ,EAAE,YAAY;QACtB,YAAY,EAAE,CAAC,eAAe,EAAE,eAAe,EAAE,uBAAuB,EAAE,cAAc,CAAC;QACzF,eAAe,EAAE,IAAI;QACrB,WAAW,EAAE,YAAY;KAC1B;CACF,CAAC;AAEF,eAAe,4BAA4B,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Lagoon Customer Support Skill
|
|
3
|
+
*
|
|
4
|
+
* Provides consistent, professional support responses for the internal
|
|
5
|
+
* support team handling customer inquiries and issues.
|
|
6
|
+
*
|
|
7
|
+
* @module skills/customer-support
|
|
8
|
+
*/
|
|
9
|
+
import type { LagoonSkill } from './types.js';
|
|
10
|
+
/**
|
|
11
|
+
* Lagoon Customer Support Skill Definition
|
|
12
|
+
*/
|
|
13
|
+
export declare const lagoonCustomerSupportSkill: LagoonSkill;
|
|
14
|
+
export default lagoonCustomerSupportSkill;
|
|
15
|
+
//# sourceMappingURL=customer-support.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"customer-support.d.ts","sourceRoot":"","sources":["../../src/skills/customer-support.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAyd9C;;GAEG;AACH,eAAO,MAAM,0BAA0B,EAAE,WA8BxC,CAAC;AAEF,eAAe,0BAA0B,CAAC"}
|