mnela CLAUDE.md

mnela CLAUDE.md is an instructions file for coding agents from SmartDogg/mnela. It costs 3,014 tokens per session, scanned D, original, MIT.

A repository-specific instruction guide for working on the Mnela application. It documents the system's services, architecture, deployment and development paths, project suggestions, and AI call routing.

In plain words
What is it for?
Understanding Mnela's API, workers, orchestrator, MCP service, Telegram bot, configuration, projects, and related development conventions.
Why use it?
It gives coding agents the context and rules needed to work consistently in this particular codebase.

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/smartdogg/mnela/claude-md
Clone the repo
git clone --depth 1 https://github.com/SmartDogg/mnela

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/smartdogg/mnela/claude-md.svg)](https://agentmods.dev/instructions/smartdogg/mnela/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/smartdogg/mnela/claude-md"><img src="https://agentmods.dev/badge/instructions/smartdogg/mnela/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 3,014 This file is loaded in full into every session.
When invoked 3,014 The same file — it is already loaded in full.
Security scan D 3 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.03014 $0.03014
Opus 5 $0.01507 $0.01507
Sonnet 5 $0.00603 $0.00603
Haiku 4.5 $0.00301 $0.00301

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

Security

Grade D, and why

mnela CLAUDE.md scanned grade D with 3 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 5d 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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

- `scripts/install.sh` — one-command VPS bootstrap (`curl … | sudo bash`). Generates `.env` with random secrets, clones to `/opt/mnela`, materialises a Caddyfile, runs the `migrate` one-shot compose service, issues the i

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

- `scripts/install.sh` — one-command VPS bootstrap (`curl … | sudo bash`). Generates `.env` with random secrets, clones to `/opt/mnela`, materialises a Caddyfile, runs the `migrate` one-shot compose service, issues the i

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- `scripts/install.sh` — one-command VPS bootstrap (`curl … | sudo bash`). Generates `.env` with random secrets, clones to `/opt/mnela`, materialises a Caddyfile, runs the `migrate` one-shot compose service, issues the i
CLAUDE.md · 85 lines

How it starts

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

Mnela — developer guide for Claude Code

This file is read by Claude Code when working inside the Mnela repo. The Server-Brain instruction template that the runtime Claude subprocess uses lives at infra/claude/CLAUDE.md.template — DO NOT confuse the two.

Architecture overview

  • apps/api — NestJS HTTP API. /search/ask SSE stream, /admin/* panels, /system/config typed registry, /admin/providers LLM CRUD, /projects (incl. suggestions + preview + dismiss).
  • apps/orchestrator — NestJS process running BullMQ consumers: enrichment, project-context, vision (analyze_attachment), claude-status boot, and the new projects consumer (project_suggest debounced post-enrichment + project_autofill). See ADR-0051.
  • apps/worker — ingestion worker (parsers, attachment promotion).
  • apps/mcp — HTTP MCP transport for external tools.
  • apps/tg-bot — Telegram bot frontend over /search/ask + /documents/upload. Single-tenant: one TelegramBot singleton row + TelegramAllowedUser whitelist. Configured under /admin/system → Telegram; hot-reloaded via mnela:events telegram:reload channel. grammY + Bot API 9.5 sendMessageDraft streaming. Multi-modal turn bundling (debounce telegram.bundleWindowMs) merges voice + photo + text into one /ask call. See ADR-0053.
  • apps/web — Next.js 15 UI. v1 menu has three sections: Workspace (/, /graph, /ask), Library (/documents, /projects, /inbox shown as "Review"), Admin (/activity, /admin/system). /projects (Active/Suggested/Dismissed tabs), /projects/new (suggestion grid + manual create + autofill), /projects/[slug] (Files/Timeline/Entities/Decisions/Questions + Ask-scope deep-link) — the Decisions tab owns the per-project list and Create flow (no standalone /decisions page). /activity is the single home for ?tab=uploads (was /imports) and ?tab=queue (was /jobs); legacy URLs redirect there. /admin/system is the only admin route — it folds in AI Providers + Claude Code status (expand) + Storage stats + API tokens (was /admin/tokens). See ADR-0052.
  • packages/llm-providersthe only place AI calls flow through. See ADR-0049.
  • packages/mcp-tools@mnela/mcp-tools registry. invokeTool(name, input, ctx) is the shared entry point for both the MCP host and the in-process agent loop.
  • packages/coresystem-registry.ts: typed SystemConfig keys + readRegistryValue shared by api/orchestrator/worker.
  • packages/db — Prisma schema + repositories. Migrations are hand-written when migrate dev is impractical on Windows (see ADR-0048 stopgap pattern).
  • packages/claude-runner — low-level wrapper around the claude CLI subprocess. Never import directly from app code — go through @mnela/llm-providers.

Read the full file on GitHub · 85 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. 5d ago First seen · 85 lines · 3,014 tokens per session scan D 4f73d49b0c67

Subscribe to this mod's changes

mnela CLAUDE.md is an instructions file published in the GitHub repository SmartDogg/mnela (1 stars, last pushed 1mo ago), licensed MIT. It adds 3,014 tokens to every session, about $0.0151 per session on Opus 5. A static security scan graded it D with 3 findings (asks for root, downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.