We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfce37e commit 130abb3Copy full SHA for 130abb3
src/resources.ts
@@ -70,4 +70,24 @@ export const NEON_RESOURCES = [
70
};
71
},
72
73
+ {
74
+ name: 'neon-get-started',
75
+ uri: 'https://github.com/neondatabase-labs/ai-rules/blob/main/neon-get-started.mdc',
76
+ mimeType: 'text/plain',
77
+ description: 'Neon getting started guide',
78
+ handler: async (url) => {
79
+ const uri = url.host;
80
+ const rawPath = url.pathname;
81
+ const content = await fetchRawGithubContent(rawPath);
82
+ return {
83
+ contents: [
84
85
+ uri,
86
87
+ text: content,
88
+ },
89
+ ],
90
+ };
91
92
93
] satisfies (Resource & { handler: ReadResourceCallback })[];
0 commit comments