mirror of
https://github.com/ArthurDanjou/artmcp.git
synced 2026-01-14 14:34:22 +01:00
feat: ajouter une description des compétences et une nouvelle invite pour récupérer les compétences d'Arthur Danjou
This commit is contained in:
@@ -37,6 +37,7 @@ export default defineContentConfig({
|
||||
type: 'data',
|
||||
source: 'skills.json',
|
||||
schema: z.object({
|
||||
description: z.string(),
|
||||
body: z.array(z.object({
|
||||
id: z.string(),
|
||||
name: z.string(),
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"description": "As a software engineer and mathematics student, I combine scientific rigor with technical pragmatism to design solutions tailored to the challenges of data and mathematical projects. My approach focuses on a deep understanding of needs, from data preparation to deployment, while emphasizing modeling and performance optimization.Passionate about artificial intelligence and data science, I strive to balance innovation with statistical robustness. Always eager to learn, I explore both technological advancements and entrepreneurial or financial challenges. Curious and enthusiastic, I enjoy sharing knowledge and discovering new concepts, whether in theorems or emerging technologies.",
|
||||
"body": [
|
||||
{
|
||||
"id": "Programming",
|
||||
|
||||
@@ -319,6 +319,25 @@ function createServer() {
|
||||
}
|
||||
)
|
||||
|
||||
server.registerPrompt(
|
||||
'artmcp-skills',
|
||||
{
|
||||
title: 'Get Skills of Arthur Danjou',
|
||||
description: 'Get a list of skills that Arthur Danjou masters'
|
||||
},
|
||||
async () => {
|
||||
return {
|
||||
messages: [{
|
||||
role: 'user',
|
||||
content: {
|
||||
type: 'text',
|
||||
text: `Provide me a list of skills that Arthur Danjou masters.`
|
||||
}
|
||||
}]
|
||||
}
|
||||
}
|
||||
)
|
||||
|
||||
return server
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user