**Purpose**: Execute tasks when user invokes via `/command` or direct skill call. **Frontmatter Requirements**: ```yaml --- name: skill-name description: Execute this when user requests [workflow/task description] user-invocable: true allowed-tools: ["Read", "Glob", "Bash(git:*)", "Task", ...] --- ``` **Writing Style Requirements**: - Use imperative voice: "Load...", "Create...", "Analyze...", "Execute..." - Never use declarative descriptions: avoid "is", "are", "provides" **Structure Require...
Scanned 2/12/2026
Install via CLI
openskills install majiayu000/claude-skill-registry# Instruction-Type Skill Template
**Purpose**: Execute tasks when user invokes via `/command` or direct skill call.
**Frontmatter Requirements**:
```yaml
---
name: skill-name
description: Execute this when user requests [workflow/task description]
user-invocable: true
allowed-tools: ["Read", "Glob", "Bash(git:*)", "Task", ...]
---
```
**Writing Style Requirements**:
- Use imperative voice: "Load...", "Create...", "Analyze...", "Execute..."
- Never use declarative descriptions: avoid "is", "are", "provides"
**Structure Requirements**:
- Phase-based workflow: "## Phase 1:", "## Phase 2:"
- Each phase has "**Goal**:" and "**Actions**:" sections
- Actions as numbered lists with clear steps
- Include linear process flow from start to completion
**Complete Template**:
```markdown
---
name: skill-name
description: Execute this when user requests [workflow/task description]
user-invocable: true
allowed-tools: ["Read", "Glob", "Bash(git:*)", "Task", ...]
---
# [Workflow/Task Title]
Execute automated workflow for $ARGUMENTS.
## Initialization (Optional)
[Environment setup, prerequisites, or configuration steps needed before workflow execution.]
**Actions**:
1. [Setup step 1]
2. [Setup step 2]
## Background Knowledge (Optional)
[Domain knowledge, context, or reference information required to execute this workflow effectively.]
- **[Knowledge Item 1]**: [Brief explanation]
- **[Knowledge Item 2]**: [Brief explanation]
## Phase 1: [Phase Name]
**Goal**: [What this phase accomplishes].
**Actions**:
1. [Action step 1]
2. [Action step 2]
3. [Action step 3]
4. [Action step 4]
## Phase 2: [Phase Name]
**Goal**: [What this phase accomplishes].
**Actions**:
1. [Action step 1]
2. [Action step 2]
3. [Action step 3]
4. [Action step 4]
## Phase N: [Final Phase Name]
**Goal**: [What this phase accomplishes].
**Actions**:
1. [Action step 1]
2. [Action step 2]
3. [Action step 3]
```
No comments yet. Be the first to comment!
Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...