umbraco-backoffice

umbraco-backoffice is an agent for coding agents from smithdak/claude-marketplace. It costs 20 tokens per session (1,772 once invoked), scanned A, original, MIT.

A code reviewer for Umbraco 14+ back-office extensions, which are custom tools inside an Umbraco content-management system. It checks Lit components, property editors, and outdated AngularJS code.

In plain words
What is it for?
Use it to review custom back-office screens, property editors, and Lit-based components in Umbraco projects.
Why use it?
It helps find code that uses an older front-end approach or does not follow current Umbraco patterns.

Agent

Part of the umbraco plugin — 3 skills, 2 agents shipped together

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 agents/smithdak/claude-marketplace/backoffice
Clone the repo
git clone --depth 1 https://github.com/smithdak/claude-marketplace

Or install umbraco, the plugin that ships this one along with the rest of its 3 skills, 2 agents.

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 umbraco-backoffice

README.md
[![agentmods](https://agentmods.dev/badge/agents/smithdak/claude-marketplace/backoffice.svg)](https://agentmods.dev/agents/smithdak/claude-marketplace/backoffice)
Your own site
<a href="https://agentmods.dev/agents/smithdak/claude-marketplace/backoffice"><img src="https://agentmods.dev/badge/agents/smithdak/claude-marketplace/backoffice.svg" alt="Measured on agentmods" height="20"></a>
Per session 20 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,772 The whole file, excluding the scripts and references it only reads on demand.
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.00020 $0.01772
Opus 5 $0.00010 $0.00886
Sonnet 5 $0.00004 $0.00354
Haiku 4.5 $0.00002 $0.00177

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

Security

Grade A, and why

umbraco-backoffice 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.

plugins/umbraco-analyzer/agents/backoffice.md · 306 lines

How it starts

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

Umbraco Backoffice Agent

Analyze backoffice extensions, Lit components, and property editors in Umbraco 14+ projects.

Analysis Areas

1. AngularJS in v14+ (Critical)

Detect legacy AngularJS code in modern Umbraco:

// Legacy AngularJS (should not exist in v14+)
angular.module('umbraco').controller('MyController', function($scope) {
    // ...
});

// Modern Lit (v14+)
import { LitElement, html } from '@umbraco-cms/backoffice/external/lit';

2. Lit Component Patterns

Check for proper Lit component implementation:

// Good: Proper Lit component
import { LitElement, html, customElement, property } from '@umbraco-cms/backoffice/external/lit';
import { UmbPropertyEditorUiElement } from '@umbraco-cms/backoffice/property-editor';

@customElement('my-property-editor')
export class MyPropertyEditor extends LitElement implements UmbPropertyEditorUiElement {
    @property({ type: String })
    value = '';

    render() {
        return html`
            <uui-input
                .value=${this.value}
                @change=${this.#onChange}
            ></uui-input>
        `;
    }

    #onChange(e: Event) {
        this.value = (e.target as HTMLInputElement).value;
        this.dispatchEvent(new CustomEvent('property-value-change'));
    }
}

3. umbraco-package.json Configuration

Check manifest registration:

// Good: Complete manifest
{
    "name": "My.Package",
    "version": "1.0.0",
    "extensions": [
        {
            "type": "propertyEditorUi",
            "alias": "My.PropertyEditor",
            "name": "My Property Editor",
            "element": "/App_Plugins/MyPackage/my-property-editor.js",
            "meta": {
                "label": "My Property Editor",
                "icon": "icon-edit",
                "group": "common",
                "propertyEditorSchemaAlias": "Umbraco.Plain.String"
            }
        }
    ]
}

4. TypeScript Quality

Check for type safety:

// Bad: Untyped
const handleClick = (e: any) => {
    const value = e.target.value;
};

// Good: Properly typed
const handleClick = (e: Event) => {
    const target = e.target as HTMLInputElement;
    const value = target.value;
};

Read the full file on GitHub · 306 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 · 306 lines · 20 tokens per session scan A af8de3061861

Subscribe to this mod's changes

umbraco-backoffice is an agent published in the GitHub repository smithdak/claude-marketplace (3 stars, last pushed 7mo ago), licensed MIT. It adds 20 tokens to every session and 1,772 once invoked, about $0.0001 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.