xs-note-taking

xs-note-taking is a skill for Claude Code, Codex from karaage0703/ai-assistant-workspace. It costs 91 tokens per session (1,292 once invoked), scanned A, original, MIT.

A note-management workflow for saving research, plans, ideas, meeting notes, and reviews in a workspace’s notes directory. It uses dated filenames and optional metadata to keep notes organised.

In plain words
What is it for?
Use it to save new notes, inspect recent notes, open a selected note, and record research or project information with titles and tags.
Why use it?
It gives reusable information a consistent home and makes older notes easier to search. It also separates long-term notes from raw daily records stored elsewhere.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions AGENTS.md.

Good fit Use it to save new notes, inspect recent notes, open a selected note, and record research or project information with titles and tags.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/karaage0703/ai-assistant-workspace/xs-note-taking
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add karaage0703/ai-assistant-workspace --skill xs-note-taking
Clone the repo
git clone --depth 1 https://github.com/karaage0703/ai-assistant-workspace

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for xs-note-taking

README.md
[![agentmods](https://agentmods.dev/badge/skills/karaage0703/ai-assistant-workspace/xs-note-taking/github.svg)](https://agentmods.dev/skills/karaage0703/ai-assistant-workspace/xs-note-taking)
Your own site
<a href="https://agentmods.dev/skills/karaage0703/ai-assistant-workspace/xs-note-taking"><img src="https://agentmods.dev/badge/skills/karaage0703/ai-assistant-workspace/xs-note-taking/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for xs-note-taking

Your own site · 80×15
<a href="https://agentmods.dev/skills/karaage0703/ai-assistant-workspace/xs-note-taking"><img src="https://agentmods.dev/badge/skills/karaage0703/ai-assistant-workspace/xs-note-taking.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 91 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,292 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00091 $0.01292
Opus 5 $0.00046 $0.00646
Sonnet 5 $0.00018 $0.00258
Haiku 4.5 $0.00009 $0.00129

Measured 12d ago against content hash 86e2192446ec, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

xs-note-taking scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/xs-note-taking/SKILL.md · 165 lines

How it starts

The opening of the file, as written. The whole thing — 165 lines — stays where its author put it; the contents beside it link to each section on GitHub.

notes/ 管理スキル

調査結果・企画・アイデア・会議メモなどを notes/ に保存・確認する。

保存先

ワークスペースの notes/ ディレクトリ


基本方針

  • ファイルに保存してから「保存した」と報告する
  • 保存先のパスを必ず報告する
  • 後で再利用したい内容は notes/、その日の生ログは memory/ に残す
  • 調査結果、企画、レビュー、会議メモは、検索しやすいタイトルとタグを付ける
  • 個人情報、トークン、秘密情報を公開リポジトリに入れない
  • Git管理している場合、commit / push が必要かはユーザーの運用ルールに従う

メモの確認

「最近のメモ教えて」「メモの内容教えて」で発動。

最近のメモ一覧を表示

# 最新10件を表示
ls -lt notes/*.md | head -10

報告フォーマット

最近のメモ(直近10件)

1. Claude_Code調査メモ (2/1)
2. プロジェクト企画 (2/1)
3. 会議メモ (1/31)

番号で指定してくれたら内容見せるよ!

特定のメモの内容を確認

ユーザーが指定したメモを読み、要約または全文を提示。


ファイル命名規則(必須!)

YYYYMMDD_タイトル.md

例:

  • 20260201_プロジェクト企画.md
  • 20260201_会議メモ.md
  • 20260201_Claude_MCP調査.md

重要

  • 日付は必ず今日の日付date +%Y%m%d で取得)
  • 日付プレフィックスなしは NG
  • タイトルは日本語 OK

フロントマター(推奨)

---
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 の種類

type 用途
memo 日々のメモ、気づき
idea アイデア、ひらめき
plan 企画、計画
research 調査結果
review レビュー、分析
meeting 会議メモ
prompt プロンプト関連
presentation プレゼン資料

保存手順

Step 1: 日付を取得

date +%Y%m%d
# → 20260201

Step 2: ファイル作成

notes/YYYYMMDD_タイトル.md にファイルを作成。

Step 3: 保存後の確認

git diff -- notes/YYYYMMDD_タイトル.md

確認すること:

  • 日付プレフィックスがあるか
  • 内容が後から読める粒度か
  • private な値が混ざっていないか
  • MarkdownリンクがGitHubでも読める形式か

Step 4: 同期(Git管理の場合)

git add notes/ && git commit -m "メモ追加: タイトル" && git push

公開リポジトリや共有リポジトリへ push する場合は、実行前に対象操作をユーザーへ確認する。

リンク形式

GitHub上でもリンクが機能するMarkdown形式を使用:

# 推奨(GitHub対応)
[表示名](YYYYMMDD_ファイル名.md)

# 非推奨(Obsidian専用)
[[ファイル名]]

notes/ vs memory/ の使い分け

場所 用途
notes/ アウトプット向け、まとまった内容 調査結果、企画、日記、レビュー
memory/ 内部ログ、会話記録 その日やったこと、調べたこと

迷ったら:

  • 「後で見返したい、他で使いたい」→ notes/
  • 「今日の作業記録」→ memory/
  • 「行動ルールとして毎回効かせたい」→ AGENTS.md
  • 「長期的な好み・環境・継続案件」→ MEMORY.md

Read the full file on GitHub · 165 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 165 lines · 91 tokens per session scan A 86e2192446ec

Subscribe to this mod's changes

xs-note-taking is a skill published in the GitHub repository karaage0703/ai-assistant-workspace (137 stars, last pushed 24d ago), licensed MIT. It adds 91 tokens to every session and 1,292 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

Cortex

Operate Cortex, the LifeOS memory system — the typed Knowledge Archive (People, Companies, Ideas, Research with typed related: links) plus recall of prior work sessions, ISAs, and conversations. Search, add, harvest, develop, ingest, distill, graph-navigate, recall. USE WHEN cortex, knowledge, knowledge base, search…

danielmiessler/LifeOS · 196 tokens

Migrate

Intakes external content, classifies chunks against LifeOS taxonomy, commits with provenance. Sources: .md/.txt, stdin, LifeOS dirs, CLAUDE.md/Cursor/OpenAI Custom Instructions, Obsidian/Notion/Apple Notes exports. MigrateScan classifies → routing table. MigrateApprove with…

danielmiessler/LifeOS · 158 tokens

daily-briefing

Proactive daily briefing that fires on a recurring schedule, pulls recent memory and workspace context, composes a structured summary (action items, progress, radar, next steps), and delivers it to all active channels. Enable with a time like "set up my daily briefing at 9am". Disable, reschedule, or check status at…

vellum-ai/vellum-assistant · 75 tokens

company-brain

Your team's shared, AI-ready knowledge base — people, companies, meetings, SOPs, and decisions structured so Claude can answer questions on your team's behalf. Team-scope sibling to second-brain (which is personal-scope). Seven modes — capture (drop something into the right structured dir), compile (process into wiki…

coreyhaines31/makerskills · 322 tokens

email-assistant

Read, search, draft, and send emails via Himalaya CLI or Python IMAP/SMTP. Requires email account configuration.

fuyuxiang/echo-agent · 29 tokens

calendar

Manage calendar events via CalDAV (Google/iCloud/Nextcloud) or local ICS files. View, create, and query events.

fuyuxiang/echo-agent · 29 tokens