lyquor-skills
v0.1.0
Published
Public Lyquor skills for LDK agent workflows.
Downloads
432
Readme
Lyquor Skills
Public Lyquor skills for agents that help developers install, run, inspect, build, and deploy against the public Lyquor LDK workflow.
This repository is the single source of truth for Lyquor-maintained skills. Private Lyquor applications consume the published package; they do not keep a second copy of these skill files.
Package
The npm package name is:
lyquor-skillsInstall it in an agent host or application that knows how to read Lyquor skill catalogs:
npm install lyquor-skillsAgent hosts should resolve lyquor-skills/package.json, then read skills from:
<package-root>/skillsLocal development may point directly at this repository with an explicit override, but the default production path should use the package.
Included Skills
ldk-devnet-setupldk-devnet-startldk-devnet-statusldk-devnet-stopldk-devnet-uninstallldk-evm-interactldk-lyquid-createldk-lyquid-implementldk-lyquid-buildldk-lyquid-abildk-lyquid-deployldk-lyquid-status
Skill Structure
Each skill lives in:
skills/<skill-name>/
SKILL.md
lyquor.skill.jsonSome skills may also include scoped helper files:
skills/<skill-name>/scripts/
skills/<skill-name>/references/
skills/<skill-name>/assets/SKILL.md is the human-authored source. lyquor.skill.json is the runtime
manifest used by agent hosts. When a skill changes, update SKILL.md first,
then update the manifest to match the public runtime contract.
Public Scope
These skills cover public LDK workflows:
- install or remove the public LDK footprint
- start, stop, and inspect local managed devnet nodes
- query the EVM-compatible local devnet surface
- create Lyquid projects from public templates or examples
- implement one Lyquid boundary from clear requirements
- build, inspect, and deploy Lyquid projects
- query visible or hosted Lyquids from a running local devnet
They do not include internal Lyquor-only workflows, private deployment procedures, or product-specific console UI behavior.
Runtime State
This repository must not commit local runtime state, caches, build output, or developer scratch data. Examples that must stay out of git and npm packages:
lyquor_data/lyquid_tools_target/.local-kb/evals/.DS_Store- log files and local database files
If stable example data is needed, add a small, reviewed fixture under an
explicit fixtures/ directory instead of committing runtime output.
Package Preview
Preview the package contents before publishing:
npm run pack:dry-runThe preview should include only public docs, package metadata, and files under
skills/.
Publishing
Publish the public package with:
npm run publish:publicPrivate consumers should update their dependency version after the package is published. They should not copy files from this repository.
