Claude Skills Czl banner
Cristhianzl Cristhianzl

Claude Skills Czl

Development community

Description

Battle-tested Claude Code configs — opinionated CLAUDE.md baselines, skills, slash commands and enforcement hooks you drop into any project

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

claude-skills-czl

[![CI](https://github.com/Cristhianzl/claude-skills-czl/actions/workflows/ci.yml/badge.svg)](https://github.com/Cristhianzl/claude-skills-czl/actions/workflows/ci.yml) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)

Battle-tested [Claude Code](https://docs.claude.com/en/docs/claude-code) configurations — opinionated `CLAUDE.md` baselines, **skills**, **slash commands**, and **enforcement hooks** you drop into any project so the AI follows your engineering standards by default.

Stop re-explaining your standards every session. Drop a config into your project's `.claude/` folder and the agent already knows your rules for code style, output language, security, testing, commits, and docs — and the hooks **enforce** the non-negotiable ones mechanically.

What's in here

Two ready-to-use configurations:

Config Use it when Highlights
`configs/agnostic` Any project, any language A clean, language-agnostic baseline. Nothing assumes a stack; the hooks never fight a language's idioms.
`configs/langflow` Working in the Langflow codebase Everything in agnostic, plus Langflow-specific rules, a building-langflow-components skill, and a hook that enforces Langflow conventions.

Both are **self-contained** — each is a complete `.claude/` folder.

Repository layout

claude-skills-czl/
├── configs/
│   ├── agnostic/            # generic, language-agnostic config
│   │   ├── CLAUDE.md            # the short, enforced baseline
│   │   ├── settings.json        # registers the hooks + permissions
│   │   ├── commands/            # slash commands (/check, /done, /pr, …)
│   │   ├── hooks/               # PostToolUse / Stop / PreToolUse checks
│   │   ├── rules/               # optional per-stack rules (auto-applied by globs)
│   │   └── skills/              # the detailed "how" playbooks
│   └── langflow/