skill-management

Create, edit, and delete custom managed skills in a workspace.

1|Updated Mar 30, 2026
One-click install
npx skills add https://github.com/Logarn/Worklin-ai --skill skill-management-logarn
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: skill-management
Source: https://github.com/Logarn/Worklin-ai/tree/main/assistant/src/config/bundled-skills/skill-management
Command: npx skills add https://github.com/Logarn/Worklin-ai --skill skill-management-logarn

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? It removes the manual work of authoring, structuring, and maintaining custom skills by scaffolding valid SKILL.md files with proper frontmatter, activation hints, and structured bodies that load reliably. ## Core Features & Use Cases - Skill Scaffolding: Generate a new managed skill with YAML frontmatter, description, activation hints, and a structured markdown body via the scaffold_managed_skill tool. - Skill Editing and Deletion: Rewrite an existing skill in place or remove a managed skill directory with the delete_managed_skill tool, always with explicit user confirmation. - Authoring Guidance: Enforces best practices such as When to Use blocks, point-of-action warnings, explicit branching, artifact-bound completion criteria, and a 500-line limit. - Use Case: A user says "build me a skill that drafts weekly retention reports" and the assistant confirms scope, scaffolds the SKILL.md, and verifies it loads and activates on the intended trigger. ## Quick Start Ask the assistant to create a new skill for a repeatable workflow, describing what it should do and when it should activate.

Frequently Asked Questions about skill-management

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

FAQPage Schema
How do I create a custom skill from a description?▼

Describe what the skill should do, when it should activate, its major steps, and any destructive actions. The assistant confirms scope, then uses scaffold_managed_skill to write a SKILL.md with frontmatter, description, and activation hints.

What makes a SKILL.md file valid and discoverable?▼

A valid SKILL.md needs YAML frontmatter with at least a name and description, plus activation-hints in the metadata. The markdown body should open with a When to Use block so the model recognizes when the skill applies.

How do I delete a managed skill from my workspace?▼

Use the delete_managed_skill tool with the skill's ID. Deletion requires explicit user confirmation and removes the skill directory from the workspace skills folder.

Why is my new skill not activating on the intended trigger?▼

Activation usually fails when the description or activation-hints do not match how the user phrases the request. Rewrite the hints using the user's own trigger words, reload the skill, and test again.

What are the limitations when testing a skill with side effects?▼

Skills that send messages, delete data, or mutate external state must not be exercised live during creation. Only confirm they load and activate statically, then ask the user before any real run.