An AI agent skill that teaches your coding assistant how to write Glider queries for analyzing Solidity smart contracts — security vulnerabilities, labeling, and pattern detection.
Built by Hexens.
Via the plugin marketplace:
/plugin marketplace add Hexens/glider-skillsOr install locally:
git clone git@github.com:Hexens/glider-skills.git
cd glider-skills && /plugins install .Clone the repository into your Codex skills directory, then create a symbolic link to the skill:
git clone git@github.com:Hexens/glider-skills.git ~/.codex/skills/glider-skills
ln -s glider-skills/skills/glider-query-writing ~/.codex/skills/glider-query-writingClone into your Cursor skills directory:
git clone git@github.com:Hexens/glider-skills.git ~/.cursor/skills/glider-skillsThe skill is auto-detected via SKILL.md. Verify in Cursor Settings > Skills.
.claude-plugin/
plugin.json # Claude Code plugin metadata
skills/
glider-query-writing/
SKILL.md # Entry point — loaded first by the agent
references/
patterns.md # Common query patterns
techniques.md # Performance & debugging guidance
navigation.md # CFG, data flow, value tree
error-handling.md # NoneObject, anti-patterns
contracts-api.md # Contracts API reference
functions-api.md # Functions API reference
instructions-api.md # Instructions API reference
api-extended.md # State vars, events, structs, loops
recipes.md # Reusable snippets & helpers
The agent reads SKILL.md first, then loads reference files on demand to keep context usage efficient.