Skip to main content
在 Manus 中运行任何 Skill
一键导入
$pwd:
umbraco
GitHub 创作者资料

umbraco

按仓库查看 6 个 GitHub 仓库中的 121 个已收集 skills,并展示近似职业覆盖。

已收集 skills
121
仓库
6
职业领域
3
更新
2026-05-06
仓库浏览

仓库与代表性 skills

#001
Umbraco-CMS-Backoffice-Skills
76 个 skills2312更新于 2026-04-23
占该创作者 63%
当前展示该仓库 Top 8 / 76 个已收集 skills。
#002
Umbraco-MCP-Base
15 个 skills21更新于 2026-05-01
占该创作者 12%
mcp-patterns
软件开发工程师

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
软件开发工程师

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
软件质量保证分析师与测试员

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
软件质量保证分析师与测试员

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
软件开发工程师

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
软件质量保证分析师与测试员

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
软件开发工程师

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
软件质量保证分析师与测试员

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
当前展示该仓库 Top 8 / 15 个已收集 skills。
#003
Umbraco.AI
14 个 skills2818更新于 2026-05-06
占该创作者 12%
release-management
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师其他计算机职业

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
软件开发工程师

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
网页开发工程师

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
软件开发工程师

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
软件开发工程师

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
当前展示该仓库 Top 8 / 14 个已收集 skills。
#004
Umbraco-CMS
13 个 skills5.2k2.9k更新于 2026-05-06
占该创作者 11%
umb-bump-version
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件质量保证分析师与测试员

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
当前展示该仓库 Top 8 / 13 个已收集 skills。
#005
UmbracoDocs
2 个 skills289825更新于 2026-03-25
占该创作者 1.7%
已展示 6 / 6 个仓库
已展示全部仓库