A collection of reusable skills for AI coding agents, following Codely's conventions and workflows.
-
Install the skills with the
skills.shinstaller:npx skills@latest add codelytv/skills
-
Pick the skills you want and the coding agents you want to install them on.
-
Run a skill in your agent, for example
/create-doc. -
Done. Your agent now follows Codely's conventions.
Skills are grouped by category under skills/:
| Skill | What it does |
|---|---|
create-doc |
Generates convention documentation from the current conversation, turning feedback and corrections into reusable docs. |
Two ways to use create-doc:
- After a conversation: run
/create-docto turn the corrections the agent received during the session into a new doc. - Before a conversation: run
/create-doc <description>to formalize a convention you want to document upfront.
| Skill | What it does |
|---|---|
create-plan |
Breaks a task into reviewable phases (vertical slices), defines the public contracts to change, and saves an approved plan file. |
execute-plan |
Executes a single phase of a plan at a time, updates its checkboxes, and stops for review without committing automatically. |
Typical flow:
- Plan the work with
/create-plan <task>to produce a phased plan file under.agents/plans/. - Execute it phase by phase with
/execute-plan <plan-file-path>, reviewing and committing after each one.
Point your AI agent to this repository's skills directory so the agent can discover and load them. Then invoke a skill:
- Automatically: the agent picks the right skill when a task matches its description.
- Explicitly: type
/<skill-name>(for example,/create-doc) to run it on demand.
Learn more about AI-assisted programming in the Agentic AI Programming: Practical Foundations course.