mcpbookmarks GEMINI.md

mcpbookmarks GEMINI.md is an instructions file for Gemini CLI from linonon/mcpbookmarks. It costs 8,423 tokens per session, scanned A, a copy of mcpbookmarks CLAUDE.md, MIT.

A set of Gemini CLI instructions for the MCP Bookmarks VS Code extension, which lets AI and developers mark important code locations with notes.

In plain words
What is it for?
Use it when developing or maintaining the extension, its bookmark tools, or its documentation.
Why use it?
Bookmarks grouped by file, editor markers, and hover notes make unfamiliar code easier to understand and navigate.

Instructions file for Gemini CLI

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/linonon/mcpbookmarks/gemini-md
Clone the repo
git clone --depth 1 https://github.com/linonon/mcpbookmarks

Made for: Gemini CLI.

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 mcpbookmarks GEMINI.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/linonon/mcpbookmarks/gemini-md.svg)](https://agentmods.dev/instructions/linonon/mcpbookmarks/gemini-md)
Your own site
<a href="https://agentmods.dev/instructions/linonon/mcpbookmarks/gemini-md"><img src="https://agentmods.dev/badge/instructions/linonon/mcpbookmarks/gemini-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 8,423 This file is loaded in full into every session.
When invoked 8,423 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod 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.08423 $0.08423
Opus 5 $0.04211 $0.04211
Sonnet 5 $0.01685 $0.01685
Haiku 4.5 $0.00842 $0.00842

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

Security

Grade A, and why

mcpbookmarks GEMINI.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 4d 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.

Origin

This is a copy

100% identical to mcpbookmarks CLAUDE.md — 2 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

GEMINI.md · 923 lines

How it starts

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

MCP Bookmarks - VSCode Extension

这个文档应该与 ./CLAUDE.md 中的说明保持同步更新, 应该保持一模一样的内容.

項目概述

這是一個 VSCode 擴展,提供「AI 書籤」功能。AI(通過 Claude Code)可以在代碼中標記重要位置,並寫入詳細說明,幫助理解和導航代碼庫。

核心功能

  1. AI 可調用的書籤工具 - 通過 MCP 協議暴露書籤操作
  2. 手動書籤管理 - 用戶可直接在 VSCode 中創建、編輯、刪除書籤
  3. 書籤側邊欄 - 在 VSCode 中顯示所有書籤,按文件分組
  4. 行內標記 - 在編輯器 gutter 區域顯示書籤圖標
  5. 懸浮預覽 - hover 時顯示書籤說明

技術架構

┌─────────────────────────────────────────────────────────┐
│                      VSCode                              │
│  ┌─────────────────┐    ┌─────────────────────────────┐ │
│  │  擴展 UI         │◄───│  MCP Server (內嵌)          │ │
│  │  - TreeView     │    │  - add_bookmark             │ │
│  │  - Decorations  │    │  - list_bookmarks           │ │
│  │  - HoverProvider│    │  - remove_bookmark          │ │
│  └─────────────────┘    │  - update_bookmark          │ │
│                          └──────────▲──────────────────┘ │
└─────────────────────────────────────│────────────────────┘
                                      │ MCP (stdio)
                              ┌───────┴───────┐
                              │  Claude Code   │
                              └───────────────┘

雙版本 MCP Server 架構 (重要!)

本項目有兩套獨立的 MCP Server 實現, 修改功能時必須同時修改兩邊:

版本 用途 文件
Embedded VSCode 擴展內嵌運行 server.ts, handlers.ts, bookmarkStore.ts
Standalone Claude Code 獨立運行 serverStandalone.ts, handlersStandalone.ts, bookmarkStoreStandalone.ts

為什麼有兩個版本?

  • Embedded: 在 VSCode 進程內運行, 可以直接訪問 VSCode API (如 vscode.workspace)
  • Standalone: 通過 npx 獨立運行, 不依賴 VSCode, Claude Code 使用這個版本

修改功能時的注意事項

任何 MCP 工具的修改都需要同時修改兩套文件!

例如添加新工具:

  1. src/store/types.ts - 添加類型定義 (共用)
  2. src/store/bookmarkStore.ts + bookmarkStoreStandalone.ts - 添加存儲邏輯
  3. src/mcp/handlers.ts + handlersStandalone.ts - 添加處理函數
  4. src/mcp/server.ts + serverStandalone.ts - 添加工具定義和 switch case

重要: Serena MCP 行號偏移問題

使用 Serena MCP 獲取代碼符號位置時, 必須進行行號轉換:

Read the full file on GitHub · 923 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. 4d ago First seen · 923 lines · 8,423 tokens per session scan A cba43c77bf19

Subscribe to this mod's changes

mcpbookmarks GEMINI.md is an instructions file published in the GitHub repository linonon/mcpbookmarks (1 stars, last pushed 6mo ago), licensed MIT. It adds 8,423 tokens to every session, about $0.0421 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to mcpbookmarks CLAUDE.md, differing in 2 lines, and is treated as a copy.

Related

Other instructions, from other repositories

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,182 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,345 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

next.js AGENTS.md

Instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens