Note
The Note type is the simplest built-in minion type — a freeform text note.
Schema
Section titled “Schema”| Field | Type | Required | Description |
|---|---|---|---|
content | textarea | ✅ yes | The note content |
Metadata
Section titled “Metadata”| Property | Value |
|---|---|
| Slug | note |
| ID | builtin-note |
| Icon | 📝 |
| System | Yes |
| Layer | — (base type) |
Example
Section titled “Example”{ "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);from minions import TypeRegistry, create_minion
registry = TypeRegistry()note_type = registry.get_by_slug("note")
minion, validation = create_minion( {"title": "Quick Thought", "fields": {"content": "This is a note."}}, note_type,)