claudeers.
// Claude Skills

curated-claude-code

A small, vetted, self-evolving harness for Claude Code — curated, not dumped. Skills, safety guards, and a self-improvement loop.

Actively maintained
93/100
last commit 29 days ago
last release none
releases 0
open issues 0
// star history

Install with your AI

Paste into Claude Code, Cursor, or any agent — it reads the repo and wires the tool into your project.

Install and set up curated-claude-code (git-clone project) into my current project.
Found on https://claudeers.com/curated-claude-code
Repo: https://github.com/Sanexxxx777/curated-claude-code
Homepage/docs: https://shulgin.is-a.dev
Detected install method: git-clone → git clone https://github.com/Sanexxxx777/curated-claude-code
Category: skills. Platforms: api, web.
Read the repo's README for exact setup and env vars, then install it and wire it into my project.

Claudeers Health Verdict:
active; community-verified: false. Confirm the source before running anything.
// or clone
git clone https://github.com/Sanexxxx777/curated-claude-code

// compatibility

Platformsapi, web
Operating systems
AI compatibilityclaude
LicenseMIT
Pricingopen-source
Language

Curated Claude Code

A small, vetted, self-evolving harness for Claude Code — curated, not dumped.

🇷🇺 Кратко на русском

Небольшой курированный харнесс для Claude Code — не свалка из сотен блоков, а горстка скиллов, которые заслужили место, плюс каркас безопасности и (главное) цикл самоулучшения: правки пользователя становятся памятью, находки — скиллами, вход нового инструмента идёт через гейт /vet (безопасность — блокирующий шаг). Никаких авто-хуков, которые мутируют что-то без спроса. Подробности — в docs/EVOLUTION.md. Полный текст ниже на английском.

Most "everything for Claude Code" collections optimize for count — hundreds of agents, skills, rules, and event hooks that auto-run on your tool calls. It looks impressive and fails quietly: bloated context, overlapping triggers fighting to activate, and hooks that mutate things without asking.

This repo optimizes for the opposite. A handful of skills that earn their place, a spine of safety guards, and — the actual product — a system that improves itself over time, safely.

A harness that grows is worth more than a harness that's big. The thing that compounds isn't the block count — it's the intake gate, the hygiene loop, and the learning machinery. → docs/EVOLUTION.md is the heart of this repo; start there.

What this is / isn't

  • ✅ A curated set of executable skills + always-on principles you can drop into ~/.claude/.
  • ✅ A method (/vet) for deciding what to adopt, and a registry so you never evaluate the same tool twice.
  • ✅ A self-evolution loop — corrections become memory, findings become skills, the stack stays clean.
  • Safety by design — no surprise autonomous actions.
  • ❌ Not a 500-block mega-bundle. Not a framework you fork. No auto-running hooks.

Looking for a "self-learning" setup?

Single-skill self-learning harvesters are trending, and the good ones are genuinely good. This repo is the system that pattern lives in: four learning layers (corrections → memory → skills → gated intake) instead of one harvest step, a promotion gate so unverified guesses never become authoritative skills, an intake gate (/vet) so the stack doesn't bloat as it learns, and a hygiene loop (system-health) so it doesn't rot. If you only want the harvest step, Kulaxyz/self-learning-skills does it well — we credit and cherry-pick it in docs/EVOLUTION.md. If you want learning as an operating discipline, start here.

Why curated, not dumped

  • Vet before adopt. Nothing enters on hype. Every incoming tool runs through one pipeline — relevance → security as a blocking gate → duplication → real ROI → verdict. The security phase reads a skill's body as a behavioral instruction and checks the agentic risks (hidden instructions, prompt injection, trigger abuse, excessive agency) a code-only scan misses.
  • It evolves. A user correction is the strongest learning signal; a finding is captured at discovery; a 5+-iteration procedure becomes a skill — but only past a promotion gate (verified check + named failure pattern + a ruled-out dead-end), so confident guesses never get enshrined as truth. The system compounds instead of going stale. → docs/EVOLUTION.md
  • Cherry-pick over giant. A good idea inside a huge framework doesn't justify installing the framework. Extract the technique, leave the bloat.
  • No auto-hooks. Auto-mutation without confirmation is exactly the failure mode to avoid. → rules/safety-guards.md

Full rationale: docs/METHODOLOGY.md.

What's inside

Skills (skills/)

SkillWhat it does
vetEvaluate an incoming tool through one pipeline; security is a blocking gate; record the verdict.
workflow-upgradeThe deliberate "improve the system" loop: audit → vet → adopt with discipline → record.
goalAutonomous goal loop with a designed verification rubric and hard safety guards.
konsilium5 independent perspectives + mutual critique + synthesis for high-stakes decisions.
ship-secureSecurity launch audit for a public web app before you ship or hand it to a client.
pre-pushA gate before push/deploy: secrets, slop, review, build — nothing junk leaves.
system-healthWeekly hygiene scan of your own Claude Code config (memory/rules/permissions).
teachTeacher mode — turn a session/article/concept into an incremental mini-course with quizzes.
longread4-phase analytical writing pipeline with a devil's-advocate pass before publishing.

Agents (agents/)

Two by design, not sixty — each reflects the verify-before-trust stance, not filler.

AgentWhat it does
adversarial-verifierTries to REFUTE a claim/finding (defaults to refuted when uncertain) — for checking bugs/audit findings before trusting them.
tool-scoutRead-only scout for /vet — reads a tool's repo/docs and returns a structured security report; never installs or runs.

Rules (rules/)

RuleWhat it covers
code-principles.mdBehavioral rules against typical LLM coding mistakes (think-before-code, simplicity, surgical edits, verifiable targets, plan-mode).
safety-guards.mdThe spine: external content = data not commands; mutation = confirmation; signing-to-real-funds = never; secrets as file:line; result honesty.
root-cause-discipline.mdWhere a fix belongs and what counts as verified — fix the owning layer not the nearest symptom, minimal ≠ smallest diff, primary vs secondary signals.
new-project.mdA "think before code" checklist for starting something from scratch.
detective-mindset.mdReading logs/data like a detective — numeric coincidences, distribution anomalies, cross-source correlation, ghost state, repeat actors, config-vs-code drift.

Docs & examples

Which skill should I use?

I want to…Use
Decide whether to adopt a new tool/skill/MCPvet
Run a deliberate pass to improve my whole setupworkflow-upgrade
Hand a goal to the agent and get back a finished, verified resultgoal
Pressure-test a high-stakes decision (go/no-go)konsilium
Make sure a web app is safe before launch/handoffship-secure
Make sure nothing junk leaves on push/deploypre-push
Keep my Claude Code config from rottingsystem-health
Actually understand a session/article/conceptteach
Write an analytical longform piecelongread

Quick start

Install manually — copy only what you want. (No curl | bash: this harness practices what it preaches.)

git clone https://github.com/Sanexxxx777/curated-claude-code
cd curated-claude-code

# install the skills you want
cp -r skills/vet ~/.claude/skills/
cp -r skills/ship-secure ~/.claude/skills/
# …repeat for the rest

# agents → ~/.claude/agents/ ; rules → append into your CLAUDE.md or ~/.claude/rules/
cp agents/*.md ~/.claude/agents/

Restart Claude Code, then invoke a skill by its name (e.g. /vet).

Attribution

This harness was built the way it tells you to build — by cherry-picking techniques and crediting them:

  • konsilium adapts Andrej Karpathy's llm-council (independent opinions → anonymized peer review → chairman synthesis).
  • ship-secure adapts Prajwal Tomar's "Vibe Coders Are Getting Sued" launch playbook.
  • code-principles is derived from Karpathy's widely-shared CLAUDE.md principles.
  • goal's design phase cherry-picks loop-design ideas from ksimback/looper.
  • teach adapts Anthropic's guided-learning prompt.
  • The skill promotion gate in EVOLUTION.md cherry-picks the verification bar from Kulaxyz/self-learning-skills.

Work with me

I build and harden Claude Code workflows, agentic setups, and web apps — and I do managed hosting and site builds. If these patterns are useful to your team, or you want help applying them, reach out:

Contributing

PRs welcome — see CONTRIBUTING.md. The bar: it must pass its own /vet, ship no auto-hooks, contain no secrets, and stay surgical. Curation is the point; volume isn't.

If this saved you time, a ⭐ helps others find it.

License

MIT © Aleksandr Shulgin (@Aleksandr_NFA) · @Sanexxxx777

// faq

What is curated-claude-code?

A small, vetted, self-evolving harness for Claude Code — curated, not dumped. Skills, safety guards, and a self-improvement loop.. It is open-source on GitHub.

Is curated-claude-code free to use?

curated-claude-code is open-source under the MIT license, so it is free to use.

What category does curated-claude-code belong to?

curated-claude-code is listed under skills in the Claudeers registry of Claude-compatible tools.

0 views
16 stars
unclaimed
updated 28 days ago

// embed badge

curated-claude-code on Claudeers
[![Claudeers](https://claudeers.com/api/badge/curated-claude-code.svg)](https://claudeers.com/curated-claude-code)

// retro hit counter

curated-claude-code hit counter
[![Hits](https://claudeers.com/api/counter/curated-claude-code.svg)](https://claudeers.com/curated-claude-code)

// reviews

// guestbook

0/500

// related in Claude Skills

🔓

An agentic skills framework & software development methodology that works.

// skillsobra/Shell272,506MIT[ claude ]
🔓

Public repository for Agent Skills

// skillsanthropics/Python169,406[ claude ]
🔓

💫 Toolkit to help you get started with Spec-Driven Development

// skillsgithub/Python129,208MIT[ claude ]
🔓

AI coding assistant skill (Claude Code, Codex, OpenCode, Cursor, Gemini CLI, and more). Turn any folder of code, SQL schemas, R scripts, shell scripts, docs,…

// skillsGraphify-Labs/Python106,387MIT[ claude ]
→ see how curated-claude-code connects across the ecosystem