notes/ディレクトリへのメモ保存スキル。調査結果、企画、アイデア、会議メモなどを保存する時に使用。「メモして」「ノートにまとめて」「notesに保存」「notesにまとめて」「まとめておいて」で発動。「最近のメモ教えて」「メモの内容教えて」でメモ一覧・内容確認も可能。
npx skills add https://github.com/karaage0703/ai-assistant-workspace --skill xs-note-taking
調査結果・企画・アイデア・会議メモなどを notes/ に保存・確認する。
ワークスペースの notes/ ディレクトリ
notes/、その日の生ログは memory/ に残す「最近のメモ教えて」「メモの内容教えて」で発動。
# 最新10件を表示
ls -lt notes/*.md | head -10
最近のメモ(直近10件)
1. Claude_Code調査メモ (2/1)
2. プロジェクト企画 (2/1)
3. 会議メモ (1/31)
番号で指定してくれたら内容見せるよ!
ユーザーが指定したメモを読み、要約または全文を提示。
YYYYMMDD_タイトル.md
例:
20260201_プロジェクト企画.md20260201_会議メモ.md20260201_Claude_MCP調査.mddate +%Y%m%d で取得)---
title: ノートのタイトル
date: YYYY-MM-DD
type: memo # memo, idea, plan, review, research, meeting, prompt, presentation
tags:
- タグ1
- タグ2
status: draft # draft, in-progress, completed
---
| type | 用途 |
|------|------|
| memo | 日々のメモ、気づき |
| idea | アイデア、ひらめき |
| plan | 企画、計画 |
| research | 調査結果 |
| review | レビュー、分析 |
| meeting | 会議メモ |
| prompt | プロンプト関連 |
| presentation | プレゼン資料 |
date +%Y%m%d
# → 20260201
notes/YYYYMMDD_タイトル.md にファイルを作成。
git diff -- notes/YYYYMMDD_タイトル.md
確認すること:
git add notes/ && git commit -m "メモ追加: タイトル" && git push
公開リポジトリや共有リポジトリへ push する場合は、実行前に対象操作をユーザーへ確認する。
workspace-RAG を使っている場合、保存後にインデックス更新すると次回以降の検索に出る。
curl -s -X POST "http://127.0.0.1:7890/reindex"
サーバーが動いていない場合は省略してよい。省略した場合は報告に「RAG再インデックスは未実施」と書く。
GitHub上でもリンクが機能するMarkdown形式を使用:
# 推奨(GitHub対応)
[表示名](YYYYMMDD_ファイル名.md)
# 非推奨(Obsidian専用)
[[ファイル名]]
| 場所 | 用途 | 例 |
|------|------|-----|
| notes/ | アウトプット向け、まとまった内容 | 調査結果、企画、日記、レビュー |
| memory/ | 内部ログ、会話記録 | その日やったこと、調べたこと |
迷ったら:
notes/memory/AGENTS.mdMEMORY.md保存前に確認:
YYYYMMDD_タイトル.md 形式かGuide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.
Intelligently organizes your files and folders across your computer by understanding context, finding duplicates, suggesting better structures, and automating cleanup tasks. Reduces cognitive load and keeps your digital workspace tidy without manual effort.
Generates creative domain name ideas for your project and checks availability across multiple TLDs (.com, .io, .dev, .ai, etc.). Saves hours of brainstorming and manual checking.
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
Implements Manus-style file-based planning for complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when starting complex multi-step tasks, research projects, or any task requiring >5 tool calls.
Creative research ideation and exploration. Use for open-ended brainstorming sessions, exploring interdisciplinary connections, challenging assumptions, or identifying research gaps. Best for early-stage research planning when you do not have specific observations yet. For formulating testable hypotheses from data use hypothesis-generation.
Comprehensive GitHub project management with swarm-coordinated issue tracking, project board automation, and sprint planning
Interview the user relentlessly about a plan or design until reaching shared understanding, resolving each branch of the decision tree. Use when user wants to stress-test a plan, get grilled on their design, or mentions "grill me".
Take karaage0703/xs-note-taking from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.