home/claude/skills/slite-note/SKILL.md
Manage notes in Slite "ありすえメモ" collection - create, list, search, and read notes. Auto-triggers when creating or managing Slite notes.
npx skillsauth add lambdalisue/dotfiles slite-noteInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Skill for managing notes under the "ありすえメモ" collection in Slite. Uses Slite MCP tools directly — no external scripts required.
All notes MUST be created under the "ありすえメモ" collection.
VSfehtphYIDN1CUse mcp__slite__create-note to create a note.
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: プロキシ内部トークン設計書
Note body is written in Markdown following this template:
# Title
Body text...
## Section
Details...
// Example mcp__slite__create-note call
{
parentNoteId: "VSfehtphYIDN1C",
title: "2026-02-24: プロキシ内部トークン設計書",
markdown: "# プロキシ内部トークン設計書\n\n..."
}
Use mcp__slite__get-note-children to list notes under the collection.
// Retrieve notes under the collection
{
noteId: "VSfehtphYIDN1C"
}
Use the cursor parameter for pagination when needed.
Use mcp__slite__search-notes for keyword search.
// Search by keyword
{
query: "search keyword",
parentNoteId: "VSfehtphYIDN1C"
}
Use mcp__slite__get-note to retrieve note content.
// Retrieve note content
{
noteId: "TARGET_NOTE_ID",
format: "md"
}
mcp__time__get_current_time (timezone: Asia/Tokyo)YYYY-MM-DD: TITLE formatmcp__slite__create-notemcp__slite__get-note-childrenmcp__slite__search-notesmcp__slite__get-notetools
Update the title and body of an existing pull request WITHOUT asking for approval
tools
Create a pull request with title and body based on commits WITHOUT asking for approval
tools
Create a Conventional Commit from already staged changes WITHOUT asking for approval
tools
Map staged changes to existing commits and create fixup commits for autosquash WITHOUT asking for approval