SiftMarks CLAUDE.md

SiftMarks CLAUDE.md is an instructions file for coding agents from Lling0000/SiftMarks. It costs 2,337 tokens per session, scanned A, original, MIT.

Repository-specific instructions for Claude Code, covering a TypeScript monorepo whose command-line tools, web dashboard, and MCP server share one database. They also describe build, checking, and project-layer rules.

In plain words
What is it for?
Use it when installing dependencies, building packages or the web app, running the dashboard or command-line tools, type-checking, linting, or working across the monorepo's shared database and packages.
Why use it?
It gives the coding agent the project's structure and safe commands, including the fact that no test runner is configured. This helps avoid incorrect assumptions when changing or checking the code.

Instructions file

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.

agentmods
npx agentmods add instructions/lling0000/siftmarks/claude-md
Clone the repo
git clone --depth 1 https://github.com/Lling0000/SiftMarks

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 SiftMarks CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/lling0000/siftmarks/claude-md.svg)](https://agentmods.dev/instructions/lling0000/siftmarks/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/lling0000/siftmarks/claude-md"><img src="https://agentmods.dev/badge/instructions/lling0000/siftmarks/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,337 This file is loaded in full into every session.
When invoked 2,337 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.02337 $0.02337
Opus 5 $0.01169 $0.01169
Sonnet 5 $0.00467 $0.00467
Haiku 4.5 $0.00234 $0.00234

Measured 3d ago against content hash 14916fddaa0e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

SiftMarks CLAUDE.md 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 3d 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.

CLAUDE.md · 99 lines

How it starts

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

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Commands

  • Install: npm install
  • Build TS packages + CLI + MCP server (skips Next build): npm run build:packages
  • Build everything (packages + web): npm run build
  • Run the local dashboard at http://localhost:4399: npm run dev
  • Typecheck the workspace via project references: npm run typecheck (builds tsconfig.json references; the web app is not listed, so this passes even when Next would fail — see Caveats)
  • Lint: npm run lint (root config is minimal; the web app uses its own eslint.config.mjs via npm run lint -w apps/web)
  • Run the CLI after build:packages: npm run cli -- <command> (e.g. init, stats, doctor, search "...", rescue, index --limit 100, import ./bookmarks.html, export out.json, mcp)
  • Start MCP server directly: node apps/mcp-server/dist/index.js
  • There is no test runner configured — no npm test, no test files. Don't claim tests pass; verify by running CLI commands or hitting API routes.

Per-workspace builds use tsc (or next build for apps/web); workspaces are wired via npm workspaces. Build order matters: shared → db → ai → core → indexer → cli → mcp-server → web. npm run build:packages enforces this order — if you build a single workspace, build its deps first.

For experiments that should not touch the user's real bookmark library at ~/.siftmarks/, set SIFTMARKS_HOME=/tmp/siftmarks-test (read by getDataDir() in packages/db/src/database.ts).

Architecture

SiftMarks is a local-first TypeScript monorepo that turns browser bookmarks into a searchable, AI-augmented memory library. Everything runs on the user's machine; no account, no telemetry. The app data lives in a single SQLite file at ~/.siftmarks/siftmarks.sqlite (overridable via SIFTMARKS_HOME).

The four entry points share one database

All four apps open the same SQLite file via new SiftMarksDB() and call .initialize() on startup. database.ts is the single source of truth for SQL — neither the web routes nor the MCP tools issue raw SQL. Schema (packages/db/src/schema.ts) is idempotent (CREATE TABLE IF NOT EXISTS), so any entry point can boot a fresh DB.

Read the full file on GitHub · 99 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. 3d ago First seen · 99 lines · 2,337 tokens per session scan A 14916fddaa0e

Subscribe to this mod's changes

SiftMarks CLAUDE.md is an instructions file published in the GitHub repository Lling0000/SiftMarks (24 stars, last pushed 2mo ago), licensed MIT. It adds 2,337 tokens to every session, about $0.0117 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.