154 skills · proprietary library · built for Claude Code

Make Claude Code work
the way you do.

154 ready-made skills that teach Claude your coding standards, your testing patterns, and your tools. Install once. Loaded automatically every session.

8 skills · instant download · no card required

or

Cancel anytime · Lifetime access unlocks at month 3

  • 154 skills, 14 domains
  • Plain Markdown — read every line before installing
  • Updates free, forever
The repetition

You should not have to teach Claude the same thing twice.

Every session begins with the same setup work: pasting coding conventions, restating testing patterns, re-explaining project structure.

cyberg7-skills replace that repetition with a one-time install.

Claude reads them automatically at the start of every session, and each one continues from where the last finished.

What you get

154 skills, ready to install in 30 seconds.

Organized into 14 domains so you only install what your stack needs. Every skill ships with the same three files: the procedure, a self-test, and what fails when an agent runs it unsupervised.

Language patterns

8

Idiomatic patterns Claude follows for the language you write in

  • python-patterns
  • rust-patterns
  • golang-patterns
  • +5 more

Testing

13

How Claude writes tests that match your team's conventions

  • python-testing
  • rust-testing
  • testing-fuzzing
  • +10 more

Web frameworks

11

Django, Laravel, Spring Boot, Ktor — patterns that match each framework

  • django-patterns
  • laravel-patterns
  • springboot-patterns
  • +8 more

Frontend & Next.js

9

React, Tailwind, components, and modern Next.js patterns

  • frontend-patterns
  • react-component-generator
  • ui-polish
  • +6 more

Multi-agent coordination

13

For when one Claude session isn't enough

  • beads-workflow
  • agent-mail
  • multi-agent-coordination
  • +10 more

Claude Code setup

10

Hooks, settings, and harness configuration done right

  • cc-hooks
  • configure-ecc
  • verification-loop
  • +7 more

Memory & session

6

Make Claude remember what happened in your last session

  • cass
  • cass-memory
  • continuous-learning-v2
  • +3 more

DevOps & infrastructure

10

Vercel, Supabase, gcloud, GitHub Actions — pre-wired patterns

  • vercel
  • supabase
  • gh-actions
  • +7 more

Mobile

3

Compose Multiplatform, Android, Kotlin coroutines

  • android-clean-architecture
  • compose-multiplatform-patterns
  • kotlin-coroutines-flows

API & backend

8

Stripe checkout, MCP servers, database migrations

  • stripe-checkout
  • mcp-server-patterns
  • database-migration-expert
  • +5 more

Developer tooling

9

Terminals, debuggers, productivity — Claude knows your tools

  • gdb-for-debugging
  • wezterm
  • rg-optimized
  • +6 more

Code quality & review

10

Cleaner code, fewer bugs, better review feedback

  • plankton-code-quality
  • multi-pass-bug-hunting
  • de-slopify
  • +7 more

Research & analysis

8

Planning, research, A/B testing, GA4 — make Claude analytical

  • planning-workflow
  • research-software
  • ab-testing
  • +5 more

E2E & integration testing

6

Playwright, browser automation, real-service testing

  • e2e-testing
  • browser-extension-automation
  • claude-chrome
  • +3 more
How it works

Three commands. No accounts required.

The full install is below. Copy, paste, done. The same procedure is documented in the repo if you want to review it before running anything.

  1. Install

    One command clones the library and symlinks every skill into ~/.claude/skills. The csm CLI lands on your PATH for future updates.

    terminal
    # Clone + install in one go
    gh repo clone Cyberg7tech/cyberg7-skills ~/cyberg7-skills
    cd ~/cyberg7-skills && ./install.sh
    ✓ 154 skills installed
  2. Invoke

    Type a skill name as a slash command, or describe the task in natural language. Claude loads the skill automatically and follows the documented procedure.

    terminal
    # In any Claude Code session:
    /python-testing
    /cc-hooks
    /stripe-checkout
    → Loading procedure. Ready.
  3. Stay current

    When new skills ship or existing ones improve, one command pulls the updates and re-verifies every symlink. Free, forever.

    terminal
    # Anytime:
    csm sync
    ✓ Synced — 154 skills, all healthy

Total install time: under a minute. No package registry, no API key, no SaaS account.

Before / after

Same prompt. Two very different responses.

The difference is not the model — it is what Claude knows about your conventions. cyberg7-skills load your team's testing patterns, fixtures, and edge-case discipline at the start of every session.

Without cyberg7-skills
YOUWrite a test for the createUser function.
CLAUDE
def test_create_user():
    user = create_user("test@example.com")
    assert user.email == "test@example.com"

# Done.
Generic boilerplate. No async. No fixtures. Tests one path. Misses the duplicate-email and validation cases the function actually has to handle.
With cyberg7-skills loaded
YOUWrite a test for the createUser function.
CLAUDE
# Using your team's pytest layout
# (python-testing skill loaded)

@pytest.mark.asyncio
async def test_create_user_with_valid_email(
    db_session, sample_user_data
):
    user = await create_user(db_session, **sample_user_data)
    assert user.email == sample_user_data["email"]
    assert user.id is not None

@pytest.mark.parametrize("invalid", [
    "", "no-at-sign", "@no-local-part"
])
async def test_create_user_rejects_invalid_email(
    db_session, invalid
):
    with pytest.raises(ValueError, match="invalid email"):
        await create_user(db_session, email=invalid)
Uses your project's async pytest layout. Reuses team fixtures. Covers valid path plus parametrized invalid-input cases. Match-pattern asserts the right error message.
From the field

Stories from teams running Claude Code in production.

Anonymized by request. Real names and company logos return once we have explicit permission from launch partners.

The cc-hooks skill named a failure I'd never seen documented anywhere. Would have saved me an entire morning.
Senior Staff Engineer
fintech infrastructure team
First library where I could read what the skill would do when something went wrong, before deploying it.
Engineering Lead
developer tools company
Solved our duplicate-work problem in an afternoon. Self-test caught two misunderstandings before we deployed.
Principal Engineer
B2B SaaS, autonomous code review pipeline
Pricing

Two ways in. The same destination.

Both paths reach the same destination: lifetime access plus every skill we ever ship. The difference is whether you prefer monthly billing or a single transaction.

Monthly

$20/ month

Cancel anytime. After three consecutive payments, your account automatically converts to lifetime access and billing stops.

  • All 154 skills, available immediately
  • Free updates while subscribed
  • Automatic lifetime conversion at month 3
  • Cancel anytime with one click
  • Single-developer license
Most-considered choice

Lifetime

$60once

Lifetime access from day one. Same total as three months of monthly billing, charged once. No recurring fees.

  • All 154 skills, available immediately
  • Free updates for life
  • No recurring billing, ever
  • 30-day money-back guarantee
  • Single-developer license
$20 × 3 months = $60·Lifetime once = $60

Same total. The lifetime option ends the recurring billing.

Need licenses for a team? support@cyberg7.com.sg

Frequently asked

The questions we hear most often.

If yours is not here, email support@cyberg7.com.sg. We answer everything within one business day.

Do I need to be an engineer to use this?

No. If you've ever opened a terminal and run a command (or copied one from a tutorial), you can install cyberg7-skills. We give you the exact commands, and the install is one paste.

Will this work with Claude Desktop and claude.ai chat?

Yes. The skills install into Claude Code (the CLI) with one command. For Claude Desktop / claude.ai, we include ready-to-upload .zip files that you drag into Settings → Customize → Skills.

What if I don't like it?

Monthly subscribers can cancel anytime. No charge for the next cycle, and access continues through the end of the paid period. Lifetime customers have a 30-day money-back guarantee; email support@cyberg7.com.sg within 30 days for a full refund. The 8-skill starter pack stays yours either way.

Will I get updates?

Yes. Updates are free for as long as you have access. Lifetime customers, whether they paid $60 up front or auto-converted from monthly at month 3, receive every new skill we ship. We add about five new skills per month.

I'm on the monthly plan. How does lifetime access actually start?

After three consecutive monthly charges ($60 total), your account automatically upgrades to lifetime access. Stripe billing stops, your access continues indefinitely, and we send a confirmation email when the upgrade processes. No action required.

Is the code I write going through your servers?

No. cyberg7-skills run entirely on your machine. Nothing leaves your laptop. We don't see your code, your prompts, or your data. The skills are plain Markdown files; you can read every line before you install.

What's the difference between this and Anthropic's official skills?

Anthropic's skills cover the happy path. cyberg7-skills are documented for what actually happens when you use Claude in real projects, including the edge cases that break things at 2am. We bundle 154 of them so you don't have to find each one yourself.

Can I purchase this for my whole team?

Yes. Per-seat pricing applies below five developers: $20 per developer per month, or $60 per developer for lifetime access. For teams of five or more seats, email support@cyberg7.com.sg with your team size. We'll send a custom quote, typically with a 15-25% volume discount and annual billing.

Do I need a GitHub account?

Yes. The library is hosted on GitHub. We'll grant you private repo access after purchase, and the install walks you through the GitHub authentication options (gh CLI, SSH, or token). Most people use gh CLI; it takes one minute.
Ready when you are

Three paths to start. Pick the one that fits.

The starter pack stays free no matter which path you choose later. For team licensing or enterprise terms, email support@cyberg7.com.sg.

Free

Starter pack

8 of the most-used skills. Email it to yourself in 10 seconds.

$20 / month

Monthly

Full library. Cancel anytime. Auto-upgrades to lifetime at month 3.

$60 once

Lifetime

Skip the monthly. Same total, paid once, no recurring billing.

Prefer to talk first? Book a 15-minute intro call.