dekko-notes

dekko-notes is a skill for Claude Code from aahlijia/dekko. It costs 94 tokens per session (627 once invoked), scanned A, original, MIT.

A repository note system that stores short explanations linked to code symbols in a committed `.dekko/` file.

In plain words
What is it for?
Use it to read notes while inspecting symbols and to add explanations after non-obvious changes, renames, moves, or signature edits.
Why use it?
It preserves decisions, constraints, and workarounds that are easy to lose when reading only the code, and helps keep notes attached after code moves or renames.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the dekko plugin — 5 skills, 3 commands, 1 MCP server shipped together

Good fit Use it to read notes while inspecting symbols and to add explanations after non-obvious changes, renames, moves, or signature edits.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aahlijia/dekko/dekko-notes
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 aahlijia/dekko --skill dekko-notes
Clone the repo
git clone --depth 1 https://github.com/aahlijia/dekko

Made for: Claude Code.

Or install dekko, the plugin that ships this one along with the rest of its 5 skills, 3 commands, 1 MCP server.

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 dekko-notes

README.md
[![agentmods](https://agentmods.dev/badge/skills/aahlijia/dekko/dekko-notes.svg)](https://agentmods.dev/skills/aahlijia/dekko/dekko-notes)
Your own site
<a href="https://agentmods.dev/skills/aahlijia/dekko/dekko-notes"><img src="https://agentmods.dev/badge/skills/aahlijia/dekko/dekko-notes.svg" alt="Measured on agentmods" height="20"></a>
Per session 94 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 627 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.
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.00094 $0.00627
Opus 5 $0.00047 $0.00313
Sonnet 5 $0.00019 $0.00125
Haiku 4.5 $0.00009 $0.00063

Measured 7d ago against content hash ad6f9b163445, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

dekko-notes 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 7d 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.

integrations/claude/skills/dekko-notes/SKILL.md · 59 lines

How it starts

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

Keeping dekko notes current

dekko stores symbol-anchored notes in .dekko/notes.json, keyed by symbol id (path::Qualified.name). They are committed to git and shown inline by query_symbol / get_context_pack (CLI: dekko query symbol / dekko context). See the dekko-orient skill for target syntax (bare name, Class.method, file.py:name, or the tolerated :: form) and for when to reach for dekko over grep/Read generally.

Consult notes before editing

Whenever you pull a symbol's context, read any note: lines first — they record rationale, gotchas, and constraints the code alone does not show. Call the list_notes MCP tool (or dekko note list <sym>) directly if you need to see a symbol's notes outside a context pack.

Write a note after a non-obvious change

After a change whose reasoning is not evident from the diff — a workaround, an invariant that must hold, a deliberate trade-off — add a note so the next reader (human or agent) sees it. Call the add_note MCP tool directly, or:

dekko note add path/to/file.py:func "why this is the way it is"

Keep notes short and about why, not what.

Re-anchor notes when a symbol moves

Note ids embed the file path and qualified name, so renaming or moving a symbol orphans its notes. After such a change:

  1. Find orphans: dekko note list --orphaned.
  2. For each orphan that still applies, re-anchor it to the new id:
    dekko note add <new-target> "<the note text>"
    dekko note rm  <old-target>
    
    (the old id is shown in the orphaned listing).
  3. Remove notes that no longer apply: dekko note rm <old-target>.

Run this sweep after any rename, file move, or signature change that alters a symbol's qualified name.

Boundaries

  • Notes are for human/agent rationale, not generated data — never put machine state or large output in them.
  • Do not edit .dekko/notes.json by hand; use the note commands or the add_note / list_notes tools so the file stays valid and git-tracked.

Read the full file on GitHub · 59 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. 7d ago First seen · 59 lines · 94 tokens per session scan A ad6f9b163445

Subscribe to this mod's changes

dekko-notes is a skill published in the GitHub repository aahlijia/dekko (3 stars, last pushed 5d ago), licensed MIT. It adds 94 tokens to every session and 627 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-31.

Related

Other skills, from other repositories

symbiote-init

Initialize Symbiote for the current project. Scans the codebase and extracts developer DNA (coding preferences), project constraints, and architectural decisions from the current context. Use when the developer runs /symbiote-init, asks to "initialize symbiote", "set up symbiote", or "scan my project". Requires…

MohmmedAshraf/symbiote · 87 tokens

symbiote-dna

Manage Symbiote's Developer DNA — the learned coding preferences, style rules, and anti-patterns that persist across sessions. This skill should be used when the user asks to "show my coding preferences", "manage DNA", "update my coding style", "what are my coding rules", "switch DNA profile", "export DNA", "import…

MohmmedAshraf/symbiote · 84 tokens

symbiote-scan

Trigger a full codebase rescan to update Symbiote's knowledge graph with latest changes. This skill should be used when the user asks to "rescan the project", "update the code graph", "rebuild symbiote index", "rescan codebase", or "refresh symbiote". Optionally regenerates embeddings for semantic search.

MohmmedAshraf/symbiote · 77 tokens

roam

Codebase comprehension via roam-code CLI. Use when exploring codebases, planning modifications, debugging failures, assessing PR risk, or checking architecture health. Triggers on: understanding project structure, pre-change safety checks, finding symbols/files, blast radius analysis, affected tests, health scoring…

Cranot/roam-code · 86 tokens

durable-session-state

Persist plans, scope decisions, evidence, and reviewer/critic verdicts to durable files during long or multi-phase tasks so work survives context compaction, session resumes, and handoffs. Use for swarm-mode tasks, before context grows large, when recording approval gates, and when resuming after compaction or a…

ZaxbyHub/opencode-swarm · 70 tokens

alive:save

The human wants to checkpoint. Or: the stash has grown heavy — 5+ items, 30+ minutes, a natural pause in the work. The squirrel doesn't decide when to save. It surfaces the need and lets the human pull the trigger. Runs the full save protocol: confirms stash, writes log, updates state, generates projections…

alivecontext/alive · 78 tokens