|
| 1 | +import { createNote } from '../graphql/queries/createNote' |
| 2 | +import { uuid } from '../utils' |
| 3 | +import { ToolDefinition } from './types' |
| 4 | + |
| 5 | +export type CreateNoteArgs = { |
| 6 | + title: string |
| 7 | + content: string |
| 8 | + groupIds: string[] |
| 9 | + coediting: boolean |
| 10 | + folders?: string[] |
| 11 | + authorId?: string |
| 12 | + draft?: boolean |
| 13 | +} |
| 14 | + |
| 15 | +export const createNoteTool: ToolDefinition<CreateNoteArgs> = { |
| 16 | + tool: { |
| 17 | + name: 'kibela_create_note', |
| 18 | + description: 'Create a new note in Kibela.', |
| 19 | + inputSchema: { |
| 20 | + type: 'object', |
| 21 | + properties: { |
| 22 | + title: { |
| 23 | + type: 'string', |
| 24 | + description: 'required: Title of the note', |
| 25 | + }, |
| 26 | + content: { |
| 27 | + type: 'string', |
| 28 | + description: 'required: Content of the note in markdown format', |
| 29 | + }, |
| 30 | + groupIds: { |
| 31 | + type: 'array', |
| 32 | + items: { |
| 33 | + type: 'string', |
| 34 | + }, |
| 35 | + description: 'required: IDs of the groups to create the note in.', |
| 36 | + }, |
| 37 | + folders: { |
| 38 | + type: 'array', |
| 39 | + items: { |
| 40 | + type: 'string', |
| 41 | + }, |
| 42 | + description: 'IDs of the folders to add the note to.', |
| 43 | + }, |
| 44 | + authorId: { |
| 45 | + type: 'string', |
| 46 | + description: |
| 47 | + 'ID of the author of the note. If not specified, the note will be created by the authenticated user.', |
| 48 | + }, |
| 49 | + coediting: { |
| 50 | + type: 'boolean', |
| 51 | + description: 'required: Whether to enable co-editing for the note', |
| 52 | + }, |
| 53 | + draft: { |
| 54 | + type: 'boolean', |
| 55 | + description: 'Whether to create the note as a draft', |
| 56 | + }, |
| 57 | + }, |
| 58 | + required: ['title', 'content'], |
| 59 | + }, |
| 60 | + }, |
| 61 | + handler: async ({ title, content, groupIds, folders, authorId, coediting, draft }) => { |
| 62 | + if (!title || !content || !groupIds || !coediting) { |
| 63 | + throw new Error('Title, content, groupIds, and coediting are required') |
| 64 | + } |
| 65 | + |
| 66 | + const response = await createNote({ |
| 67 | + input: { |
| 68 | + clientMutationId: uuid(), |
| 69 | + title, |
| 70 | + content, |
| 71 | + groupIds, |
| 72 | + folders, |
| 73 | + authorId, |
| 74 | + coediting, |
| 75 | + draft, |
| 76 | + }, |
| 77 | + }) |
| 78 | + |
| 79 | + return { |
| 80 | + content: [ |
| 81 | + { |
| 82 | + type: 'text', |
| 83 | + text: JSON.stringify(response.createNote, null, 2), |
| 84 | + }, |
| 85 | + ], |
| 86 | + } |
| 87 | + }, |
| 88 | +} |
0 commit comments