Public repository of Agent Skills by Augenta — portable, version-controlled folders that teach an AI coding agent a specialized workflow. Every skill here follows the open Agent Skills standard, so the same folder works in Claude Code, OpenAI Codex, Gemini CLI, GitHub Copilot, Cursor, and dozens of other harnesses.
Inside your coding agent, type:
Install the agent skill: https://github.com/AugentaAI/skills/blob/main/skills/augenta-memory-curation/SKILL.md
Swap augenta-memory-curation for any folder under skills/. See Install for other routes.
What's a skill? A folder with a
SKILL.mdinside — YAML metadata (name+description) plus instructions the agent loads on demand. The agent sees the description at all times but only pulls the full instructions into context when a task actually calls for them, so you can keep many skills installed for almost no cost.
| Skill | What it does |
|---|---|
| augenta-memory-curation | Decide what an agent should remember, forget, update, or consolidate in long-term memory — and which "home" (personal memory, shared AGENTS.md/CLAUDE.md, searchable history, or a skill) each fact belongs in. |
A skill is just a folder, so "installing" it means putting that folder where your agent looks for skills. Pick whichever route fits how you work.
Inside your coding agent just type:
Install the agent skill: https://github.com/AugentaAI/skills/blob/main/skills/augenta-memory-curation/SKILL.md
For other agent skills replace augenta-memory-curation with the appropriate folder.
Agents load skills through progressive disclosure:
- Discovery — at startup the agent reads only each skill's
nameanddescription. - Activation — when a task matches that description, it reads the full
SKILL.mdinto context. - Execution — it follows the instructions, running any bundled scripts or reading referenced files as needed.
The full body loads only when it's relevant, so a shelf full of installed skills stays cheap until one is actually used.
- agentskills.io — the open Agent Skills standard and specification
- Client showcase — every harness that supports skills
- Claude Code skills docs