Thanks for your interest in contributing to the official Atlarix Skills Registry. We welcome contributors of all skill levels.
- Anyone can contribute.
- First-time open source contributors are welcome.
- If you’re unsure where to start, open a “New Skill Request” issue.
A good skill:
- Solves a real, recurring developer problem.
- Is tool-aware: references Atlarix tools where relevant (e.g.
read_file,write_file,search_code, Blueprint tools,db_query,db_mutate, etc.). - Is 100–400 lines (not a cheatsheet, not a textbook).
- Has a clear, specific “When to use this skill” section.
- Has been tested against at least one real project (even a small toy repo).
Every skill must be a skills/<id>/SKILL.md file with frontmatter and sections:
---
name: <display name>
version: 1.0.0
author: NorahLabs
tags: [tag1, tag2, ...]
compatibleModes: [Build, Review, Ask, Debug, Plan]
atlarixMinVersion: "7.0.0"
---
# <Skill Name>
## When to use this skill
...
## Core patterns
...
## Atlarix tool notes
...
## Common mistakes to avoid
...- Fork the repo.
- Create a new skill directory:
skills/<id>/ - Add
skills/<id>/SKILL.md - Add an entry to
index.json(see rules below). - Open a PR using the PR template.
- Update
skills/<id>/SKILL.md. - Bump the
versionin the skill frontmatter. - Bump the matching
versionfor that skill entry inindex.json. - In the PR description, explain what changed and why.
idmust be lowercase kebab-case and match the folder name underskills/.- The
files[].urlmust be the raw GitHub URL (not the repo page URL), e.g.:\nhttps://raw.githubusercontent.com/AmariahAK/atlarix-skills/main/skills/<id>/SKILL.md\n+- All fields in each skill entry are required.
- Maintainers aim to review PRs within 7 days.
- Feedback is given via GitHub review comments.
- Please respond to feedback and push updates in the same PR.
- Skills that reference non-existent Atlarix tools.
- Placeholder content (“TODO”, “lorem ipsum”, empty sections).
- Duplicates of existing skills without clear differentiation.
- Skills that are primarily marketing or vendor promotion.
By contributing, you agree that your contributions are licensed under the
Apache 2.0 license (see LICENSE).