Writing

Field notes on AI coding context.

Field notes on AI coding assistants, team memory, token cost, security, and path-scoped context.

These are working notes, not announcements. Each one usually starts with a problem a team hit with an AI coding assistant — a rule that got ignored, context that did not survive a session, a stack convention the agent kept guessing wrong — and ends with the smallest durable fix we found.

We publish them in the open because the failure shapes are shared. CLAUDE.md, Cursor rules, AGENTS.md, and Copilot instructions tend to hit the same ceiling, and the way past it is the same idea: scoped context, delivered where the work actually happens.

EngineeringJune 9, 2026

What a Pathrule Pattern Is, and Why It Is Not a Skill

A pattern is not a single skill or rule. It is a small, opinionated bundle of memories, rules, and skills for one topic, each piece pre-scoped to the path it belongs to. Here is what that buys you and why the unit is bigger than a file.

Sertan HelvacıSertan Helvacı
SecurityJune 8, 2026

Secure-by-Default Scaffolding for AI Coding Agents

A coding agent writes the first draft now, and the easy default is almost always the insecure one. Here is how a security pattern puts the secure default in front of the agent before it writes a single line.

Sertan HelvacıSertan Helvacı
EngineeringJune 7, 2026

One Import Token, Scoped Across Your Tree

Sharing conventions usually means pasting a long file at the root. A pattern is imported with one token that expands into scoped pieces, each placed at the path it applies to. Here is why that difference matters.

Sertan HelvacıSertan Helvacı
EngineeringJune 6, 2026

Why a Context Layer Should Have an Open Core

The engine that decides what an AI agent sees on every run is too important to be a black box. Here is the case for keeping that core open, local, and inspectable, while the team layer stays separate.

Sertan HelvacıSertan Helvacı
SecurityJune 5, 2026

Where Your AI Context Layer Should Be Allowed to Run

For regulated and security-reviewed teams, the hard question about a context layer is not only what it stores. It is where it runs and who controls the data. Here is how to think about that line.

Sertan HelvacıSertan Helvacı
EngineeringMay 31, 2026

Context Engineering vs Prompt Engineering: What Actually Changed

Prompt engineering tunes the question. Context engineering decides what the model sees before it answers. Here is the difference, why it matters for coding agents, and how teams put it into practice.

Sertan HelvacıSertan Helvacı
EngineeringMay 30, 2026

What Is the Model Context Protocol (MCP) and Why Teams Use It

MCP is the open standard that lets AI assistants talk to external tools and data sources. Here is what it is, how clients and servers fit together, and where a team context layer plugs in.

Sertan HelvacıSertan Helvacı
EngineeringMay 29, 2026

Managing AI Coding Context in a Monorepo

A monorepo holds many projects under one root, which is exactly where a single AI instruction file breaks. Here is how to scope context per package so the assistant gets the right rules for the folder it is in.

Sertan HelvacıSertan Helvacı
EngineeringMay 28, 2026

GitHub Copilot Custom Instructions: What They Cover and Where They Stop

Copilot custom instructions let teams steer suggestions with a repository file. Here is what they do well, where they hit limits, and how a path-scoped layer extends them.

Sertan HelvacıSertan Helvacı
EngineeringMay 28, 2026

Why AI Coding Assistants Forget Your Codebase Between Sessions

AI coding assistants are stateless. Each new session starts from zero. Here is what actually persists, what does not, and how teams keep context across sessions.

Sertan HelvacıSertan Helvacı
EngineeringMay 27, 2026

How to Share Claude Code Memory Across a Team

Claude Code stores memory per project and per user by default. Here is how teams actually share that knowledge: what CLAUDE.md covers, where it stops, and what fills the gap.

Sertan HelvacıSertan Helvacı
SecurityMay 25, 2026

Claude Code Hooks vs CLAUDE.md: Where Enforcement Lives

CLAUDE.md is advisory. Hooks are deterministic. Here is the practical split, why teams should use both, and where a path-scoped knowledge layer fits.

Sertan HelvacıSertan Helvacı
EngineeringMay 23, 2026

Why Claude Code Skills Do Not Activate

Skills look like they install cleanly and then quietly do nothing. Here is why SKILL.md often fails to activate and what a working delivery path looks like.

Sertan HelvacıSertan Helvacı
EngineeringMay 21, 2026

Why Cursor Rules Get Silently Ignored

Cursor rules look loaded and then quietly do nothing. Here is what breaks, what to check first, and how a path-scoped layer keeps rules visible at the moment they matter.

Sertan HelvacıSertan Helvacı
EngineeringMay 17, 2026

Why Claude Code Ignores CLAUDE.md

CLAUDE.md is guidance, not enforcement. Learn why AI coding assistants skip long instruction files and how hooks plus path-scoped rules close the gap.

Sertan HelvacıSertan Helvacı
EngineeringMay 14, 2026

AGENTS.md vs Pathrule: When Each One Makes Sense

AGENTS.md gives AI coding agents one predictable file. Pathrule keeps it short by routing the right team knowledge slice per session.

Sertan HelvacıSertan Helvacı
EngineeringMay 12, 2026

Context Is a Team Interface, Not a Prompt File

A practical argument for treating AI context as shared team infrastructure, not another prompt file to maintain by hand.

Sertan HelvacıSertan Helvacı
SecurityMay 9, 2026

Why AI Coding Assistants Need Scoped Rules

Rules for AI coding assistants work best when they are attached to the files and folders where they actually apply.

Sertan HelvacıSertan Helvacı
Token CostMay 7, 2026

The Cost of Rediscovering Your Own Codebase

AI coding sessions often waste time and tokens rebuilding knowledge the team already has. Scoped context changes the first move.

Sertan HelvacıSertan Helvacı
EngineeringMay 4, 2026

From Tribal Knowledge to Reviewable Memory

Teams can make AI coding safer by turning scattered project knowledge into visible, scoped, reviewable memory.

Sertan HelvacıSertan Helvacı
SecurityMay 2, 2026

A Practical Model for Safer AI Coding Workflows

Safer AI coding starts with explicit boundaries, scoped rules, reviewable memory, and a clear source-code privacy line.

Sertan HelvacıSertan Helvacı
EngineeringApril 29, 2026

Why Global AI Instructions Break Down at Team Scale

Global AI instruction files start helpful, then lose signal as teams add more paths, exceptions, and local constraints.

Sertan HelvacıSertan Helvacı
EngineeringApril 27, 2026

Just-in-Time Context for AI Coding Agents

AI coding agents work better when relevant team knowledge arrives before the first useful action, not after a search loop.

Sertan HelvacıSertan Helvacı
EngineeringApril 24, 2026

Memory, Rules, and Skills: Three Kinds of Team Knowledge

Pathrule separates team knowledge into memories, rules, and skills so AI coding assistants receive the right kind of context.

Sertan HelvacıSertan Helvacı
SecurityApril 21, 2026

How Stale Team Knowledge Creates AI Mistakes

AI coding assistants can inherit stale assumptions when team knowledge is not reviewed, repaired, or retired over time.

Sertan HelvacıSertan Helvacı
EngineeringApril 19, 2026

One Knowledge Layer for Claude Code, Cursor, and Codex

Teams should not have to rewrite the same AI guidance for every coding assistant. Pathrule gives shared knowledge one home.

Sertan HelvacıSertan Helvacı
EngineeringApril 16, 2026

Design Rules Should Travel With the Work, Not the Tool

Design consistency is easier to keep when AI coding tools receive the same scoped product and interface rules.

Sertan HelvacıSertan Helvacı
EngineeringApril 14, 2026

Team Memory Should Not Change When AI Tools Do

Teams should be able to switch between AI coding tools without rewriting the knowledge that keeps work consistent.

Sertan HelvacıSertan Helvacı
SecurityApril 11, 2026

Audit Trails for AI Coding: What Changed, Who, and Why

An audit trail for AI coding shows who changed a rule, memory, or skill, when, and why. Here is why the context your assistants act on deserves the same review and history as code.

Sertan HelvacıSertan Helvacı
SecurityApril 9, 2026

Pathrule Stores Team Knowledge, Not Source Code

Pathrule is built around a narrow privacy boundary: store the knowledge teams choose to write down, not their repository source.

Sertan HelvacıSertan Helvacı
EngineeringApril 6, 2026

Small Teams Should Build a Context Layer Early

Small teams feel AI context problems early. Capturing knowledge before the team grows keeps onboarding, review, and AI work calmer.

Sertan HelvacıSertan Helvacı
Token CostApril 4, 2026

More Context Is Not Always Better for AI Assistants

AI assistants do not need every fact at once. They need the right context, at the right depth, for the task in front of them.

Sertan HelvacıSertan Helvacı
Case StudiesApril 1, 2026

A Real History Test: 30x-50x Lower Context Cost

A real Pathrule history query showed how scoped prior work can avoid broad local search and reduce tool-output token cost.

Sertan HelvacıSertan Helvacı