Personal collection of agent skills: structured guides (typically SKILL.md plus supporting docs) that tell coding agents when and how to work in specific domains.
Each skill is a self-contained folder under skills/. Start from the root SKILL.md in that folder—agents use its front matter (name, description) for discovery and the body for procedures, rules, and links to deeper notes.
| Skill | Path | Summary |
|---|---|---|
| AG-UI Protocol | skills/ag-ui-protocol/ |
Implement, consume, and debug the AG-UI (Agent–User Interaction) event stream: FastAPI + LangGraph on the server, @ag-ui/client on the client, interrupts, state, tools, and reasoning. |
Supporting files for AG-UI (event catalog, server/client guides, interrupts, state/tools) live next to skills/ag-ui-protocol/SKILL.md.
The easiest way to install a skill from this repo is with Vercel Labs’ agent skills CLI (npx skills):
npx skills add https://github.com/uesleilima/skills --skill ag-ui-protocolThat pulls ag-ui-protocol into the skill location your environment uses (for example Cursor’s skills directory). Run npx skills --help for other subcommands and options.
If you are not using npx skills, attach a skill the old-fashioned way:
- Project: Point your agent config or rules at the skill’s
SKILL.md, or vendor the folder under your repo. - User-wide: Copy or symlink an individual skill directory (for example
ag-ui-protocol) into wherever your agent expects “available skills,” keepingSKILL.mdat the skill root.
After installation, the agent should read SKILL.md first; follow internal links to events.md, server.md, client.md, and the rest as needed.
- One logical skill ≈ one directory under
skills/<skill-name>/. SKILL.mdis required at the skill root; optional*.mdsiblings are fine for long references.- Keep front matter accurate: the
descriptionfield is often what triggers “use this skill” behavior.
This repository is released under the MIT License (Copyright 2026 Ueslei Lima).
- AG-UI documentation: docs.ag-ui.com
- AG-UI reference / Dojo: github.com/ag-ui-protocol/ag-ui