refactor(ux): consolidate BMAD skills, update design system, and clean up Prisma generated client

This commit is contained in:
Sepehr Ramezani
2026-04-19 19:21:27 +02:00
parent 5296c4da2c
commit 25529a24b8
2476 changed files with 127934 additions and 101962 deletions

43
mcp-server/check-notes.js Normal file
View File

@@ -0,0 +1,43 @@
#!/usr/bin/env node
/**
* Vérifier les propriétés des notes
*/
import { PrismaClient } from '../keep-notes/prisma/client-generated/index.js';
const prisma = new PrismaClient({
datasources: {
db: { url: 'file:/Users/sepehr/dev/Keep/keep-notes/prisma/dev.db' },
},
});
async function checkNotes() {
const notes = await prisma.note.findMany({
where: {
title: { startsWith: '📘' },
},
select: {
id: true,
title: true,
isMarkdown: true,
type: true,
color: true,
labels: true,
},
});
console.log('📋 Notes trouvées:\n');
for (const note of notes) {
console.log(`Titre: ${note.title}`);
console.log(` isMarkdown: ${note.isMarkdown}`);
console.log(` type: ${note.type}`);
console.log(` color: ${note.color}`);
console.log(` labels: ${note.labels}`);
console.log(` id: ${note.id}`);
console.log('');
}
}
checkNotes()
.catch(console.error)
.finally(() => prisma.$disconnect());