umbraco-entry-point

Entry Points are extensions that execute JavaScript code when the Umbraco backoffice starts up. The Backoffice Entry Point runs after user authentication and is used for initialization logic, loading external libraries, registering UI extensions dynamically, or including global CSS. An optional onUnload function handles cleanup.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "umbraco-entry-point" with this command: npx skills add umbraco/umbraco-cms-backoffice-skills/umbraco-umbraco-cms-backoffice-skills-umbraco-entry-point

Umbraco Entry Point

What is it?

Entry Points are extensions that execute JavaScript code when the Umbraco backoffice starts up. The Backoffice Entry Point runs after user authentication and is used for initialization logic, loading external libraries, registering UI extensions dynamically, or including global CSS. An optional onUnload function handles cleanup.

Documentation

Always fetch the latest docs before implementing:

Workflow

  • Fetch docs - Use WebFetch on the URLs above

  • Ask questions - What initialization is needed? Any external libraries? Cleanup required?

  • Generate files - Create manifest + entry point based on latest docs

  • Explain - Show what was created and how to test

Minimal Examples

Manifest (umbraco-package.json)

{ "name": "My Package", "extensions": [ { "type": "backofficeEntryPoint", "alias": "My.EntryPoint", "name": "My Entry Point", "js": "/App_Plugins/MyPackage/index.js" } ] }

Implementation (index.ts)

import type { UmbEntryPointOnInit } from '@umbraco-cms/backoffice/extension-api';

export const onInit: UmbEntryPointOnInit = (host, extensionRegistry) => { console.log('My package initialized');

// Register extensions dynamically extensionRegistry.register({ type: 'dashboard', alias: 'My.Dashboard', name: 'My Dashboard', element: () => import('./dashboard.js'), meta: { label: 'My Dashboard', pathname: 'my-dashboard' } }); };

// Optional cleanup export const onUnload = () => { console.log('My package unloaded'); };

That's it! Always fetch fresh docs, keep examples minimal, generate complete working code.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

umbraco-openapi-client

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

umbraco-skill-code-analyzer

No summary provided by upstream source.

Repository SourceNeeds Review
General

umbraco-backoffice

No summary provided by upstream source.

Repository SourceNeeds Review
General

umbraco-dashboard

No summary provided by upstream source.

Repository SourceNeeds Review