Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

90 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tech team guidelines

Coding conventions and collaboration guidelines, shared across projects. These documents are the human-readable source of truth — they stand on their own, independently of any tooling.

Collaboration

Conventions

Shared configs

Claude Code plugins

These conventions are also published as a Claude Code plugin marketplace, so they can be installed as reusable skills in any project. The docs above stay the source of truth; the plugin skills are derived from them (regenerated with the repo-local /sync-plugins skill).

Marketplace name: cyrillrx-conventions. Available plugins:

Plugin Skills What it does
git-workflow /commit, /address-review Atomic Conventional Commits; PR review-comment workflow
kmp-conventions kmp-style (auto-invoked) Kotlin Multiplatform / Compose style and architecture

Install in a project

One-off, from any project in Claude Code:

/plugin marketplace add cyrillrx/coding-conventions
/plugin install git-workflow@cyrillrx-conventions

For a team project, commit this to the project's .claude/settings.json so the plugins install on trust:

{
  "extraKnownMarketplaces": {
    "cyrillrx-conventions": {
      "source": { "source": "github", "repo": "cyrillrx/coding-conventions" }
    }
  },
  "enabledPlugins": {
    "git-workflow@cyrillrx-conventions": true,
    "kmp-conventions@cyrillrx-conventions": true
  }
}

Heads up: enabledPlugins installs and enables these plugins for anyone who trusts the project folder, without an explicit /plugin install prompt. Only commit this once your team is comfortable trusting cyrillrx/coding-conventions as a code source — the skills can run git and gh commands on contributors' machines.

The plugins are derived from the convention docs and regenerated regularly, so they intentionally carry no version: a given install tracks the marketplace repo's main at the time /plugin marketplace add (or its auto-update) runs. Re-run /plugin marketplace update cyrillrx-conventions to pull the latest skills.

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors