# Agent Skills

> Explain, inspect, create, and maintain Bailongma Agent Skills packages built around SKILL.md instructions.

- Skill: `xiaoyuanda666-ship-it/agent-skills` (Agent Skill)
- Install (CLI): `npx skillmds@latest add xiaoyuanda666-ship-it/agent-skills`
- Raw SKILL.md: https://api.skillmd.com/api/skills/xiaoyuanda666-ship-it/agent-skills/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: xiaoyuanda666-ship-it (https://skillmd.com/u/xiaoyuanda666-ship-it)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/xiaoyuanda666-ship-it/agent-skills

---


# Agent Skills

Use this skill when the user asks about Bailongma skills, wants to list installed skills, or wants to create a reusable workflow package.

## Bailongma Skill Format

A Bailongma Agent Skill is a folder under the configured skills root. The required file is `SKILL.md`.

Minimum frontmatter:

```yaml
---
name: My Skill
description: A precise sentence describing when this skill should activate.
---
```

Optional metadata:

```yaml
tags:
  - docs
aliases:
  - alternate name
triggers:
  - phrase that should strongly activate this skill
```

Optional folders:

- `scripts/` for helper scripts.
- `references/` for detailed documentation.
- `assets/` for templates and reusable files.

## Authoring Guidance

- Keep `description` specific. Bailongma uses it during skill selection.
- Put the workflow rules in `SKILL.md`.
- Put long examples, templates, or API references in separate files and mention their paths.
- Treat third-party skills as untrusted. Read their instructions and scripts before using them.
- Do not execute bundled scripts unless the user's goal calls for it and normal tool safety rules allow it.

