/skill-packager
Authors Agent Skills v1.0 packages (SKILL.md plus references/scripts), runs package_skill to produce a standards-compliant zip, and uses install_skill to add skills from HTTPS, registry, workspace, or an uploaded archive. Use when the user wants to turn documentation, workflows,
$ npx -y skills add vixues/LeAgent --skill skill-packager --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/skill-packager
Context preview
The summary Claude sees to decide when to auto-load this skill.
Authors Agent Skills v1.0 packages (SKILL.md plus references/scripts), runs package_skill to produce a standards-compliant zip, and uses install_skill to add skills from HTTPS, registry, workspace, or an uploaded archive. Use when the user wants to turn documentation, workflows,
SKILL.md
skill-packager.SKILL.mdname: skill-packager
description: Authors Agent Skills v1.0 packages (SKILL.md plus references/scripts), runs package_skill to produce a standards-compliant zip, and uses install_skill to add skills from HTTPS, registry, workspace, or an uploaded archive. Use when the user wants to turn documentation, workflows, or code into a portable skill, export a skill zip, or install a skill from a link or file without leaving the chat.
license: Apache-2.0
metadata:
version: 1.0.0
category: platform
tags: [skills, skill, zip, pack, install, export, cursor, agentskills]
Skill packager
Help the user create, package, and install [Agent Skills v1.0](https://agentskills.my/specification) bundles.
When to use
- User finished a doc, workflow, or code and wants it **reusable as a skill**.
- User pastes an **https://** link to a `.zip` / `.tar.gz` skill bundle to **install**.
- User wants a **.zip** to import into Cursor (`~/.cursor/skills/` or `.cursor/skills/`) or another agent.
Authoring layout
- One directory per skill: directory name **must** equal the `name` field in `SKILL.md` frontmatter (kebab-case).
- Put long prose in `references/` or `assets/`; keep `SKILL.md` concise with links to those files.
- Optional `scripts/` for helpers; script execution may require server env flags—document that.
Tools (LeAgent)
| Goal | Tool | |------|------| | Validate + zip a folder | `package_skill` with `skill_directory` (optional `output_path`) | | Install from URL | `install_skill` with `source_type: url`, `url`, optional `sha256` | | Install from registry | `install_skill` with `source_type: registry`, `registry_skill_name` | | Install from project folder | `install_skill` with `source_type: workspace`, `workspace_path`, `target_skill_name` | | Install from uploaded archive | `install_skill` with `source_type: uploaded_archive`, `file_id` |
After installation, use `load_skill` with the returned skill name to pull instructions.
Cursor / desktop import (manual)
If the user only needs Cursor (not LeAgent runtime): give them the zip from `package_skill` and instruct them to extract so one top-level folder `skill-name/` contains `SKILL.md`, then copy that folder into `%USERPROFILE%\.cursor\skills\` or the project’s `.cursor/skills/`. Do **not** place skills in `~/.cursor/skills-cursor/` (reserved for built-ins).
Quality checklist
- [ ] `description` in frontmatter states **what** the skill does and **when** to use it (third person).
- [ ] Directory name matches `name` in `SKILL.md`.
- [ ] Run `package_skill` before sharing the zip; fix validation errors if any.
Read more
name: skill-packager description: Authors Agent Skills v1.0 packages (SKILL.md plus references/scripts), runs package_skill to produce a standards-compliant zip, and uses install_skill to add skills from HTTPS, registry, workspace, or an uploaded archive. Use when the user wants to turn documentation, workflows, or code into a portable skill, export a skill zip, or install a skill from a link or file without leaving the chat. license: Apache-2.0 metadata: version: 1.0.0 category: platform tags: [skills, skill, zip, pack, install, export, cursor, agentskills]
Skill packager
Help the user create, package, and install [Agent Skills v1.0](https://agentskills.my/specification) bundles.
When to use
- User finished a doc, workflow, or code and wants it **reusable as a skill**.
- User pastes an **https://** link to a `.zip` / `.tar.gz` skill bundle to **install**.
- User wants a **.zip** to import into Cursor (`~/.cursor/skills/` or `.cursor/skills/`) or another agent.
Authoring layout
- One directory per skill: directory name **must** equal the `name` field in `SKILL.md` frontmatter (kebab-case).
- Put long prose in `references/` or `assets/`; keep `SKILL.md` concise with links to those files.
- Optional `scripts/` for helpers; script execution may require server env flags—document that.
Tools (LeAgent)
| Goal | Tool | |------|------| | Validate + zip a folder | `package_skill` with `skill_directory` (optional `output_path`) | | Install from URL | `install_skill` with `source_type: url`, `url`, optional `sha256` | | Install from registry | `install_skill` with `source_type: registry`, `registry_skill_name` | | Install from project folder | `install_skill` with `source_type: workspace`, `workspace_path`, `target_skill_name` | | Install from uploaded archive | `install_skill` with `source_type: uploaded_archive`, `file_id` |
After installation, use `load_skill` with the returned skill name to pull instructions.
Cursor / desktop import (manual)
If the user only needs Cursor (not LeAgent runtime): give them the zip from `package_skill` and instruct them to extract so one top-level folder `skill-name/` contains `SKILL.md`, then copy that folder into `%USERPROFILE%\.cursor\skills\` or the project’s `.cursor/skills/`. Do **not** place skills in `~/.cursor/skills-cursor/` (reserved for built-ins).
Quality checklist
- [ ] `description` in frontmatter states **what** the skill does and **when** to use it (third person).
- [ ] Directory name matches `name` in `SKILL.md`.
- [ ] Run `package_skill` before sharing the zip; fix validation errors if any.
Open-source desktop AI agent that gets work done — plans & self-corrects, agentic visual workflows, generative UI, and 100+ offline tools in one self-hostable stack.
Repo: vixues/LeAgent
Other skills on leagent.
- /attendance-signin-sheet
Generate printable attendance / 签到表 spreadsheets from name lists. Use when the user asks for 签到表, attendance sheet, meeting sign-in table, or similar printable roster tables (not full payroll attendance scoring unless asked).
Open skill - /data-analyzer
Guidance for analyzing structured data, generating statistics and producing data-driven insights. Use when the user asks to analyze data, compute statistics, find patterns, or generate analytical reports.
Open skill - /document-processor
Guidance for processing documents, extracting content, and transforming structured information. Use when the user asks to process, parse, extract, or transform document content such as PDFs, Word files, or spreadsheets.
Open skill - /procurement-audit
Review procurement contracts and purchase packages against uploaded compliance rules (招标/采购制度). Use for 采购审核, contract compliance checklists, or procurement statistics rollups.
Open skill - /travel-expense-audit
Audit travel / 差旅报销 claims against uploaded policy handbooks and rate tables (lodging caps, transport, per diem). Use for 差旅费审核, travel expense review, or lodging over-limit checks.
Open skill - /workflow-helper
Guidance for creating, managing and executing workflow automations that chain multiple tools and agents together. Use when the user asks about building, listing, running or composing workflows and automated task pipelines.
Open skill

