melania-skill-master-administrator

Governs creation, validation, versioning, and packaging of Claude Skills under a Three Laws protocol.

5|Updated Jun 13, 2026
One-click install
npx skills add https://github.com/PatriotAi/ai-lab --skill melania-skill-master-administrator-patriotai
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: melania-skill-master-administrator
Source: https://github.com/PatriotAi/ai-lab/tree/main/melania-skills-ecosystem/skills/melania-skill-master-administrator
Command: npx skills add https://github.com/PatriotAi/ai-lab --skill melania-skill-master-administrator-patriotai

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Managing a growing library of Claude Skills leads to version drift, lost updates from parallel sessions, unvalidated changes, and broken packages. This Skill enforces a governed lifecycle for every skill: re-read from disk before editing, show diffs before applying, validate with a regression guard, bump versions, and package safely. ## Core Features & Use Cases - Master Administrator Protocol: A command table (update skill, add rule, version bump, repackage, rollback) with a mandatory diff-and-confirm workflow before any change is applied. - Three Laws Safety Core: Immutable priority hierarchy that blocks harmful directives such as deleting safety rules or skipping validation. - Self-Development Engine: Post-use gap and pattern assessment that generates improvement proposals without applying them autonomously. - Regression Guard & Packaging: A Python guard script validates canonical terms and line counts, and packaging rules produce upload-safe .skill files. - Use Case: You ask to update a skill's routing rules; the Skill re-reads the current file from disk, drafts the change, shows you a diff, waits for approval, then updates the CHANGELOG, bumps the version, snapshots, and repackages. ## Quick Start Ask the assistant to update a named skill, for example by saying it should add a new rule to the semantic-router skill and bump its version.

Frequently Asked Questions about melania-skill-master-administrator

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I safely update a Claude Skill without losing changes?▼

Re-read the current SKILL.md from disk before editing, since parallel sessions may have updated it. Apply changes as surgical patches over the disk version, show a diff for confirmation, then snapshot, bump the version, and update the CHANGELOG.

How do I package a Claude Skill into a .skill file?▼

Package with the official package_skill.py script so the .skill archive contains the skill folder at its root. Remove dot-prefixed paths like .snapshots first, because the skill store uploader rejects archives containing them.

What is the Three Laws protocol in skill governance?▼

It is an immutable priority hierarchy: protect humans first, obey the Master Administrator second, and preserve skill integrity third. Directives that would remove safety rules or skip validation are automatically blocked under Law I.

Does this skill work outside Claude Code?▼

Yes, the core governance protocol works on Claude.ai, Codex CLI, Cursor, and Copilot. Only the hooks and context:fork features are Claude Code specific and are safely ignored by other agents.

Why does my skill package fail to install after upload?▼

The store uploader rejects paths starting with a dot, and every skill contains a scripts/.snapshots directory. Repackage using a tool that strips dot-path segments and excludes the evals folder before uploading.

When should I not use the Master Administrator skill?▼

Do not use it for tasks unrelated to the skill lifecycle, such as writing marketing content or general coding. Pure skill authoring belongs to the creation guide, and marketplace publishing belongs to the distribution skill after the safety gate passes.