一键导入
slite-note
Manage notes in Slite "ありすえメモ" collection - create, list, search, and read notes. Auto-triggers when creating or managing Slite notes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage notes in Slite "ありすえメモ" collection - create, list, search, and read notes. Auto-triggers when creating or managing Slite notes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create a Claude Code rule, skill, or agent — global (~/.claude) or project-local (.claude)
Code review using OpenAI Codex CLI with project context (rules, diff, conventions)
Multi-perspective code review from base branch with 3 independent reviewer agents
Analyze working tree changes, map to existing commits, and create fixup commits for autosquash
Analyze working tree changes, plan logically minimal NEW atomic commits per hunk (no fixup), and execute them
Review every commit message since base branch and add reword fixups where the message needs improvement (non-interactive)
| name | slite-note |
| description | Manage notes in Slite "ありすえメモ" collection - create, list, search, and read notes. Auto-triggers when creating or managing Slite notes. |
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__claude_ai_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__claude_ai_Slite__create-note call
{
parentNoteId: "VSfehtphYIDN1C",
title: "2026-02-24: プロキシ内部トークン設計書",
markdown: "# プロキシ内部トークン設計書\n\n..."
}
Use mcp__claude_ai_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__claude_ai_Slite__search-notes for keyword search.
// Search by keyword
{
query: "search keyword",
parentNoteId: "VSfehtphYIDN1C"
}
Use mcp__claude_ai_Slite__get-note to retrieve note content.
// Retrieve note content
{
noteId: "TARGET_NOTE_ID",
format: "md"
}
TZ=Asia/Tokyo date +%Y-%m-%d (or use the session's injected current date)YYYY-MM-DD: TITLE formatmcp__claude_ai_Slite__create-notemcp__claude_ai_Slite__get-note-childrenmcp__claude_ai_Slite__search-notesmcp__claude_ai_Slite__get-note