Creating Your Own Skills | LanMate User Guide
Using the Qianxin edition of LanMate?View Qianxin Edition User Guide

Creating Your Own Skills

Skill Structure

my-skill/
├── SKILL.md # Required
├── references/ # Optional
├── scripts/ # Optional
└── assets/ # Optional

SKILL.md Format

---
name: my-weekly-report
description: Generate structured weekly reports from Lansenger data
version: 1.0.0
---

# Weekly Report Skill

## When to Use
When the user asks for a weekly/daily report.

## Steps
1. Fetch this week's calendar via Lansenger API
2. Fetch todo completion status
3. Generate report using the template below

Installation

Package as zip and upload on the Skills page. Security audit runs automatically.

Loading Discipline

load_skill is the sole recognized entry point. Skills must be loaded before use; the skill directory is auto-granted read access after loading.

Distribution