| name | slite-note |
| description | Manage notes in Slite "ありすえメモ" collection - create, list, search, and read notes. Auto-triggers when creating or managing Slite notes. |
Overview
Skill for managing notes under the "ありすえメモ" collection in Slite.
Uses Slite MCP tools directly — no external scripts required.
Parent Collection
All notes MUST be created under the "ありすえメモ" collection.
- parentNoteId:
VSfehtphYIDN1C
Creating Notes
Use mcp__claude_ai_Slite__create-note to create a note.
Title Convention
Titles follow this format:
YYYY-MM-DD: TITLE
YYYY-MM-DD: Note creation date (ISO 8601)
TITLE: A concise title describing the note content (in Japanese)
Example: 2026-02-24: プロキシ内部トークン設計書
Content Format
Note body is written in Markdown following this template:
# Title
Body text...
## Section
Details...
Content Requirements
- Language: Write note content in Japanese
- Code Comments: Write comments inside code blocks in English
- Diagrams: Use Mermaid notation for diagrams
Example
{
parentNoteId: "VSfehtphYIDN1C",
title: "2026-02-24: プロキシ内部トークン設計書",
markdown: "# プロキシ内部トークン設計書\n\n..."
}
Listing Notes
Use mcp__claude_ai_Slite__get-note-children to list notes under the collection.
{
noteId: "VSfehtphYIDN1C"
}
Use the cursor parameter for pagination when needed.
Searching Notes
Use mcp__claude_ai_Slite__search-notes for keyword search.
{
query: "search keyword",
parentNoteId: "VSfehtphYIDN1C"
}
Reading Notes
Use mcp__claude_ai_Slite__get-note to retrieve note content.
{
noteId: "TARGET_NOTE_ID",
format: "md"
}
Workflow
When Creating a Note
- Get the current date with
TZ=Asia/Tokyo date +%Y-%m-%d (or use the session's injected current date)
- Generate a title in
YYYY-MM-DD: TITLE format
- Generate the body following the content template
- Create the note using
mcp__claude_ai_Slite__create-note
- Report the created note URL to the user
When Searching Notes
- First list recent notes using
mcp__claude_ai_Slite__get-note-children
- For specific keyword searches, use
mcp__claude_ai_Slite__search-notes
- To view details, retrieve content with
mcp__claude_ai_Slite__get-note