A collection of skills for AI coding agents. Skills are packaged instructions and scripts that extend agent capabilities.
Skills follow the Agent Skills format.
Use the licia utility library to simplify JavaScript/TypeScript code. Contains 443 utilities covering type checking, string manipulation, object/array operations, DOM helpers, data structures, encoding, and more.
Use when:
- Writing utility functions that licia already provides
- Simplifying code with well-tested utilities
- Refactoring hand-rolled helpers into library calls
- Performing type checking, string processing, data manipulation
Categories covered:
- Type Checking (isStr, isArr, isObj, isFn, ...)
- String Manipulation (camelCase, truncate, template, ...)
- Array/Object Utilities (unique, flatten, pick, omit, ...)
- Function Utilities (debounce, throttle, memoize, curry, ...)
- DOM Helpers (jQuery-like $, $class, $css, ...)
- Data Structures (Heap, LinkedList, Trie, LRU, ...)
- Encoding, Date/Time, Color, and more
npx skills add liriliri/agent-skillsSkills are automatically available once installed. The agent will use them when relevant tasks are detected.
Each skill contains:
SKILL.md- Instructions for the agentscripts/- Helper scripts for automation (optional)references/- Supporting documentation (optional)
MIT