klayout-klink CLAUDE.md

klayout-klink CLAUDE.md is an instructions file for coding agents from klinkdev2026/klayout-klink. It costs 3,134 tokens per session, scanned A, original, Apache-2.0.

Instructions and a technical guide for controlling KLayout, an editor for integrated-circuit layouts, through an AI coding agent. KLayout layouts contain geometric shapes, layers, cells, and repeated component instances.

In plain words
What is it for?
Use it to draw and inspect layout shapes, manage cells and layers, place instances, run Python macros, generate layouts with gdsfactory, and verify changes through KLayout.
Why use it?
It gives the agent the project’s architecture and explains how to discover the currently available control methods instead of assuming a fixed tool set.

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/klinkdev2026/klayout-klink/claude-md
Clone the repo
git clone --depth 1 https://github.com/klinkdev2026/klayout-klink

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 klayout-klink CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/klinkdev2026/klayout-klink/claude-md.svg)](https://agentmods.dev/instructions/klinkdev2026/klayout-klink/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/klinkdev2026/klayout-klink/claude-md"><img src="https://agentmods.dev/badge/instructions/klinkdev2026/klayout-klink/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 3,134 This file is loaded in full into every session.
When invoked 3,134 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.03134 $0.03134
Opus 5 $0.01567 $0.01567
Sonnet 5 $0.00627 $0.00627
Haiku 4.5 $0.00313 $0.00313

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

Security

Grade A, and why

klayout-klink 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 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.

CLAUDE.md · 316 lines

How it starts

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

Let an AI agent (Claude Code / Codex) directly control the KLayout layout editor: draw shapes, manage cells/layers, place instances, run pya macros, and generate layouts with gdsfactory.

Architecture

AI agent
├── MCP: klink-mcp           ← klink RPCs exposed as MCP tools
├── Skill: klayout            ← RPC + pya macro domain knowledge
└── Skill: klayout-gdsfactory ← gdsfactory → KLayout bridge
       │
       ▼
KLayout (klink_plugin)        ← port 8765 (RPC) + 8082 (klive-compat)

Do not rely on a hard-coded RPC count. Query the live server:

from klink import KLinkClient

with KLinkClient().connect() as c:
    print([m["name"] for m in c.methods()["methods"]])

MCP tools are organized along two orthogonal axes (klink/mcp/catalog.py): intent/capability (read/write/verify/escape/all) and domain/area (device_photonics, routing_backends, …). tools/list always advertises every tool; call klink.find_tools to navigate them (no args → domain index; domain=<token> → that area's tools; query=<keywords> → ranked matches). --profile accepts both axes — default read,write,verify,escape.

Setup

Install the package (pip install klayout-klink) and the KLayout salt plugin, then configure your agent's MCP server:

{
  "mcpServers": {
    "klayout": {
      "command": "<python-that-has-klink>",
      "args": ["-m", "klink.mcp", "--profile", "read,write,verify,escape",
               "--session-id", "project-klink"],
      "env": {
        "KLINK_CONTEXT_ROOT": "<your-project>/.klink/sessions"
      }
    }
  }
}

Interpreter rule: optional libraries (gdsfactory, klayout, numpy, …) must live in the SAME Python that runs klink.mcp. klink does not bundle them — install the one a feature needs yourself; the tool error names it. klink.status reports interpreter and capabilities so you can verify.

Environment

  • klink core is pure Python; its only runtime dependencies are its own two Rust kernels (prebuilt wheels, byte-parity with the pure-Python reference), so pip install klayout-klink brings klink + both accelerators. They are speed-only (pure-Python fallbacks exist); pip install --no-deps gives the pure-Python core alone.
  • gdsfactory must be in the SAME interpreter that runs klink.mcp.
  • klink RPC port: 8765; klive-compat port: 8082.
  • interaction context memory: .klink/sessions/<session-id>/interaction_context.jsonl

Read the full file on GitHub · 316 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 · 316 lines · 3,134 tokens per session scan A 369af74dfcad

Subscribe to this mod's changes

klayout-klink CLAUDE.md is an instructions file published in the GitHub repository klinkdev2026/klayout-klink (26 stars, last pushed 4d ago), licensed Apache-2.0. It adds 3,134 tokens to every session, about $0.0157 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 instructions, from other repositories

firmware CLAUDE.md

Claude Code instructions for OpenIPC/firmware, covering claude.md, what this is, before you start: is this the right repository?, build and common tasks.

OpenIPC/firmware · 4,948 tokens

Tutorial_AwesomeModernCPP AGENTS.md

AGENTS.md instructions for Awesome-Embedded-Learning-Studio/Tutorial_AwesomeModernCPP, covering agents.md, 这是什么, 通用 essentials(所有 agent 必读) and 你来做什么?(按场景路由).

Awesome-Embedded-Learning-Studio/Tutorial_AwesomeModernCPP · 778 tokens

brilliant_sdk AGENTS.md

Instructions for brilliantlabsAR/brilliant_sdk, covering brilliant sdk — agent guide, how an app works (the pattern behind everything), minimal reading paths, verify without hardware and testing.

brilliantlabsAR/brilliant_sdk · 1,817 tokens

NeoMind CLAUDE.md

Claude Code instructions for camthink-ai/NeoMind, covering neomind — edge ai platform for iot, development commands, ecosystem repositories, extension package contract (.nep) and device type template contract (json).

camthink-ai/NeoMind · 4,457 tokens

zmk-config AGENTS.md

AGENTS.md instructions for urob/zmk-config, covering customization guide, ground rules, how the multi-board layout works, adding a new board and where to change what.

urob/zmk-config · 1,867 tokens

ext-apps CLAUDE.md

Claude Code instructions for modelcontextprotocol/ext-apps, a project described as: Official repo for spec & SDK of MCP Apps protocol - standard for UIs embedded AI chatbots, served by MCP servers.

modelcontextprotocol/ext-apps · 3 tokens