Skip to content

Note

The Note type is the simplest built-in minion type — a freeform text note.

FieldTypeRequiredDescription
contenttextarea✅ yesThe note content
PropertyValue
Slugnote
IDbuiltin-note
Icon📝
SystemYes
Layer— (base type)
{
"title": "Meeting Notes",
"minionTypeId": "builtin-note",
"fields": {
"content": "Discussed Q2 roadmap priorities. Key takeaway: focus on developer experience."
},
"tags": ["meetings", "q2"]
}
import { TypeRegistry, createMinion } from 'minions-sdk';
const registry = new TypeRegistry();
const noteType = registry.getBySlug('note')!;
const { minion, validation } = createMinion({
title: 'Quick Thought',
fields: { content: 'This is a note.' },
}, noteType);