Skills
By placing the SKILL.md file in your project, you can communicate Lism CSS design rules, Props, tokens, and naming conventions to AI agents.
GitHub: lism-css/skills/lism-css-guide/
Setup
Via skills.sh
With skills.sh, you can easily fetch the skill using the following command:
npx skills add lism-css/lism-cssVia gh command
If you use the GitHub CLI, you can also fetch the skill with gh skill install:
gh skill install lism-css/lism-css lism-css-guide@mainVia lism-cli
You can also fetch the same skill with lism-cli’s lism skill add. It only supports installing into the project directory, but offers the skill check command to compare the bundled skill with your local files.
npx lism-cli skill addIn interactive mode, the CLI detects project-root markers (.claude/, .cursor/, etc.) and pre-checks matching destinations. To target tools non-interactively, pass the flags directly:
# Single toolnpx lism-cli skill add --claude
# Multiple toolsnpx lism-cli skill add --claude --cursor
# All toolsnpx lism-cli skill add --allDestinations
| Flag | Destination |
|---|---|
--claude | .claude/skills/lism-css-guide |
--codex | .agents/skills/lism-css-guide |
--cursor | .cursor/skills/lism-css-guide |
--windsurf | .windsurf/skills/lism-css-guide |
--cline | .cline/skills/lism-css-guide |
--copilot | .github/skills/lism-css-guide |
--gemini | .gemini/skills/lism-css-guide |
--junie | .junie/skills/lism-css-guide |
Update
You can diff your local files against the bundled skill and force-update as needed.
# Diff the bundled skill against local files (shows changed / added / removed summary)npx lism-cli skill check
# Overwrite with the latest versionnpx lism-cli skill update --claudeskill check compares each installed file with the bundled one by sha256, then lists the changed / added / removed files. For upstream changes, see the GitHub repository directly.