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:
2025-11-14 18:19:41 +01:00
parent 234dc7aca5
commit 669012872d
3 changed files with 21 additions and 0 deletions

View File

@@ -37,6 +37,7 @@ export default defineContentConfig({
type: 'data', type: 'data',
source: 'skills.json', source: 'skills.json',
schema: z.object({ schema: z.object({
description: z.string(),
body: z.array(z.object({ body: z.array(z.object({
id: z.string(), id: z.string(),
name: z.string(), name: z.string(),

View File

@@ -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": [ "body": [
{ {
"id": "Programming", "id": "Programming",

View File

@@ -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 return server
} }