Skip to main content
Run any Skill in Manus
with one click
$pwd:
umbraco
GitHub creator profile

umbraco

Repository-level view of 121 collected skills across 6 GitHub repositories, including approximate occupation coverage.

skills collected
121
repositories
6
occupation fields
3
updated
2026-05-06
occupation focus
Major fields detected across this creator.
repository explorer

Repositories and representative skills

#001
Umbraco-CMS-Backoffice-Skills
76 skills2312updated 2026-04-23
63% of creator
Showing top 8 of 76 collected skills in this repository.
#002
Umbraco-MCP-Base
15 skills21updated 2026-05-01
12% of creator
mcp-patterns
Software Developers

Load MCP development patterns and best practices for building tools with the @umbraco-cms/mcp-server-sdk. Use when starting tool development or needing pattern reference.

2026-05-01
mcp-cli
Software Developers

Guide for configuring and running Umbraco MCP servers via the CLI. Use when the user wants to set up an MCP server for Claude Code, configure auth, filtering, dry-run, readonly mode, or use introspection commands to understand available tools.

2026-04-28
add-eval
Software Quality Assurance Analysts & Testers

Add or update an LLM eval test for a specific tool or collection. Creates a new eval scenario or updates an existing one to cover new tools. Use when adding eval coverage for new or modified tools.

2026-04-28
add-test
Software Quality Assurance Analysts & Testers

Add an integration test for a specific tool in an existing collection. Creates a test file following the collection's established patterns. Use when adding tests for new or modified tools, or re-creating deleted tests.

2026-04-28
add-tool
Software Developers

Add a new tool to an existing MCP collection. Creates the tool file, updates the collection index, optionally adds integration tests and eval tests. Use when adding new API endpoints to collections already created by '/build-tools'.

2026-04-28
build-evals
Software Quality Assurance Analysts & Testers

Build LLM eval tests for MCP tool collections. Reads .discover.json and creates eval setup and scenario test files per collection. Use after running '/build-tools'.

2026-04-28
build-tools
Software Developers

Build MCP tool collections from discovered API groups. Reads .discover.json and generates tools and collection registrations. Use after running 'npx @umbraco-cms/create-umbraco-mcp-server discover'.

2026-04-28
build-tools-tests
Software Quality Assurance Analysts & Testers

Build integration tests for MCP tool collections. Reads .discover.json and creates test setup, builders, helpers, and test files per collection. Use after running '/build-tools'.

2026-04-28
Showing top 8 of 15 collected skills in this repository.
#003
Umbraco.AI
14 skills2818updated 2026-05-06
12% of creator
release-management
Software Developers

Orchestrates the complete release preparation process - detects changed products, analyzes commits for version bumps, updates version.json files, generates manifests and changelogs, and creates release branches. Use when preparing a new release.

2026-05-06
add-provider
Software Developers

Scaffolds a new AI provider package (Umbraco.AI.X) following the established provider plugin pattern. Use when adding support for a new AI vendor (e.g., Cohere, Groq, xAI, DeepSeek). Covers code, config, marketplace metadata, install scripts, and CI registration.

2026-05-05
worktree-cleanup
Software Developers

Clean up a git worktree and its local branch after a feature has been merged. Use after a PR is merged or a feature branch is no longer needed.

2026-04-07
changelog-management
Software DevelopersComputer Occupations, All Other

Generates changelogs for products from conventional commit history. Use when preparing a release, updating release documentation, or previewing unreleased changes before creating a release branch.

2026-04-02
checkout-pr
Software Developers

Check out a pull request into an isolated git worktree. Use when you want to review, test, or inspect a PR without affecting your current working directory.

2026-04-02
demo-site-automation
Web Developers

Automates browser-based interactions with Umbraco.AI demo site using Playwright. Handles login, navigation, and editing of AI entities (connections, profiles, prompts, agents). Use when testing UI workflows, creating or editing AI entities through the backoffice, or demonstrating Umbraco.AI features.

2026-04-02
demo-site-management
Software Developers

Manages the Umbraco.AI demo site for development. Handles starting with DemoSite-Claude profile, port discovery via named pipes, and OpenAPI client generation. Use when starting, stopping, or checking the demo site, or when generating OpenAPI clients for frontend development.

2026-04-02
post-release-cleanup
Software Developers

Merges a release or hotfix branch back into main and dev, bumps version.json on dev so nightly builds produce versions higher than the released version, and optionally deletes the release branch. Use after a release has been deployed and tagged.

2026-04-02
Showing top 8 of 14 collected skills in this repository.
#004
Umbraco-CMS
13 skills5.2k2.9kupdated 2026-05-06
11% of creator
umb-bump-version
Software Developers

Bump the Umbraco CMS version across all required files. Use when the user asks to bump, update, or set the version number — e.g., "bump version to 17.3.4", "set version to 18.0.0-rc", "update version". Accepts the target version as an argument.

2026-05-06
general-add-value-summary
Software Developers

Add a value summary extension so a feature's typed value can be displayed compactly in collection views (e.g., table columns). Use when a feature or property editor already has a value type and needs a renderer for collection table cells. Two variants — simple (element only, no API call) and resolver (batch API resolution needed). Prerequisite: a value type constant must already exist — use the general-add-value-type skill first if it doesn't.

2026-05-06
general-add-value-type
Software Developers

Add a new value type — a named, typed string constant that extends UmbValueTypeMap. Use when a feature needs to declare what type of value it holds so it can be referenced in collection columns or value summary manifests. Also use when a property editor needs to expose its value type for use in collection views.

2026-05-06
general-create-repository
Software Developers

Create or extend a repository in the Umbraco backoffice. Covers detail (CRUD), item (batch lookup), collection (paginated list), and action-specific (publish, duplicate, move, etc.) repositories. Use when the user says "create a repository", "add a data source", or when a feature needs to fetch or post data. Each repository type has its own template — pick the right one based on the operation.

2026-04-14
umb-review
Software Quality Assurance Analysts & Testers

Automated PR code review for Umbraco CMS. Analyzes changed files for intent, impact on consumers, breaking changes, architecture compliance, and code quality. Non-interactive — outputs a full structured review. Use this skill whenever the user asks to review a branch, review a PR, check their changes for issues, analyze a diff, or validate breaking change patterns — even if they don't say "review" explicitly. Does NOT apply to writing new code, fixing bugs, refactoring, explaining architecture, writing tests, or reviewing documentation content.

2026-04-01
general-create-package
Software Developers

Create a new package in the Umbraco backoffice client with its first module. Use when adding a new domain feature area that needs its own package under src/packages/ — e.g., a new CMS feature like data types, tags, or relations. Packages are self-contained domain modules that can theoretically be uninstalled independently. Also use when the user says things like "scaffold a new package", "add a new feature package", or "create a new domain module".

2026-03-31
general-create-workspace
Software Developers

Create a new workspace for an entity in the Umbraco backoffice. Supports two workspace types — default (simple, manifest-only, for root/listing pages) and routable (entity detail editing with create/edit flows). Use when the user says "create a workspace", "add a workspace for X", or "scaffold a workspace". For routable workspaces, the entity must already have a package, entity type, repository, and data source.

2026-03-31
core-add-module
Software Developers

Add a new module to the core package (src/packages/core/). Use when adding shared UI framework infrastructure that all packages can use — e.g., a new extension system feature, a new utility, a new shared component pattern, a new picker, or a new workspace primitive. Core modules are imported as @umbraco-cms/backoffice/{module-name}. Also use when the user says things like "add a module to core", "create a new core feature", or "add shared infrastructure".

2026-03-27
Showing top 8 of 13 collected skills in this repository.
#005
UmbracoDocs
2 skills289825updated 2026-03-25
1.7% of creator
Showing 6 of 6 repositories
All repositories loaded