by akinalpfdn
A modular rules & skills system for Claude Code — organize, share, and supercharge your AI coding workflow
# Add to your Claude Code skills
git clone https://github.com/akinalpfdn/claude-groundGuides for using cli tools skills like claude-ground.
Last scanned: 5/30/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-30T16:36:51.031Z",
"npmAuditRan": true,
"pipAuditRan": true
}claude-ground is an open-source cli tools skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by akinalpfdn. A modular rules & skills system for Claude Code — organize, share, and supercharge your AI coding workflow. It has 109 GitHub stars.
Yes. claude-ground passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/akinalpfdn/claude-ground" and add it to your Claude Code skills directory (see the Installation section above).
claude-ground is primarily written in JavaScript. It is open-source under akinalpfdn on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other CLI Tools skills you can browse and compare side by side. Open the CLI Tools category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh claude-ground against similar tools.
No comments yet. Be the first to share your thoughts!
Top skills in this category by stars
A minimal rule system for Claude Code. Gives Claude the structural discipline it lacks by default — phase tracking, decision logging, honest pushback, debug discipline, language-specific best practices, and reusable skills.
Claude Code is capable. But left to its own defaults it tends to:
These aren't model failures — they're defaults that go unchallenged without explicit rules.
rules/common/ — Always active, every project:
| Rule file | What it does |
|---|---|
core.md |
Phase management, approval gates, honest opposition, time estimates, periodic analysis |
decisions.md |
Decision log format and rules |
git.md |
Branch strategy, conventional commits, commit discipline, versioning |
testing.md |
When to test, naming, structure, mocks vs integration, coverage |
debug.md |
Two-attempt rule, structured analysis, no error masking |
existing-code.md |
Read before touch, follow existing patterns, separate refactoring from features |
frontend.md |
Theme-first, no inline styles, intentional design (UI projects only) |
security.md |
Input validation, auth, secrets, headers, rate limiting essentials (production) |
deploy.md |
Server hardening, TLS, systemd, monitoring essentials (production) |
observability.md |
Structured logging, health checks, external monitoring essentials (production) |
oss-hygiene.md |
Branch protection, tag immutability, signing, governance (open source) |
rules/[language]/ — Language-specific best practices:
| Language | Key rules |
|---|---|
| Go | Goroutine lifecycle, error wrapping, interface design, package structure, table-driven tests |
| Swift | MVVM structure, async/await + actors, memory management, error handling, testable ViewModels |
| TypeScript | Component granularity, API layer separation, strict types, state discipline, RTL testing |
| Kotlin | Coroutine scopes, sealed UI state, Compose theming, repository pattern, coroutine testing |
| Flutter | Widget granularity, state management, AppTheme, platform isolation, widget/golden tests |
| Rust | Ownership patterns, thiserror/anyhow, tokio consistency, unsafe discipline, proptest |
| Python | Type hints, project structure, custom exceptions, dependency management, pytest |
| .NET | Constructor DI, layered architecture, async + CancellationToken, Result pattern, Testcontainers |
| Spring | Constructor injection, layered architecture, exception handling, transactions, Testcontainers |
commands/ — Reusable skills (slash commands):
| Skill | What it does |
|---|---|
cg-mac-release |
Build, sign, notarize, and publish a macOS app as a GitHub release with a professional DMG |
cg-devplan |
Generate structured development plans for Claude Code to follow |
cg-store-listing |
Generate ASO-optimized App Store / Google Play listing metadata |
cg-security-hardening |
Full security hardening guide — OWASP-aligned, multi-language, with validation tests |
cg-indie-deploy |
Deploy to a single VPS — Caddy/nginx, systemd, TLS, backups, rollback |
cg-indie-observability |
Structured logging, error tracking, uptime monitoring, alerting |
cg-oss-git-hygiene |
OSS repo setup — rulesets, signing, templates, Dependabot, triage |
All rules use MUST / SHOULD / RECOMMENDED severity levels so Claude knows what is a hard rule vs a best practice.
templates/ — Starting point for new projects:
CLAUDE.md — Project context file. Tech stack, architecture, active rules.DECISIONS.md — Empty decisions log, ready to fill.phases/PHASE-01.md — First phase template.Three things get installed — they go to different places:
| What | Where | Effect |
|---|---|---|
| Rules | ~/.claude/rules/ (global) |
Active in every project, every session |
| Skills | ~/.claude/commands/ (global) |
Slash commands available everywhere |
| Templates | Current working directory | CLAUDE.md, DECISIONS.md, phases/ for one project |
Rules and skills are always global. Templates are always local to whatever directory you run the command from.
npm install -g claude-ground
No dependencies — uses only Node.js built-ins.
claudeground # interactive — pick languages + skills
claudeground install go typescript # non-interactive — specify languages directly
This installs common rules + your chosen language rules to ~/.claude/rules/, and selected skills to ~/.claude/commands/. Done once, works everywhere.
From your project directory:
cd your-project
claudeground init # interactive — pick languages, skills, UI
claudeground init go swift # non-interactive — specific languages
This asks if the project has a UI (to enable frontend rules), then creates:
your-project/
├── CLAUDE.md ← fill this in
├── DECISIONS.md ← log your first stack decision
└── .claude/
├── commands/ ← project-level skills (if selected)
│ └── cg-mac-release.md
└── phases/
└── PHASE-01-active.md ← define your first phase
Open CLAUDE.md and fill in:
When you update the package (npm update -g claude-ground), re-apply your rules and skills:
claudeground update # re-installs using your saved preferences
Your language and skill selections are saved to ~/.claude/.claude-ground.json on first install — no need to re-select every time.
Long implementations use phase files to survive context resets:
.claude/phases/
├── PHASE-01-done.md ← completed
├── PHASE-02-done.md ← completed
├── PHASE-03-active.md ← Claude reads this when context fills
└── PHASE-04-pending.md ← not started
Each phase file contains: goal, task list, acceptance criteria. No code snippets — phases are goals, not implementations.
Claude checks the active phase file before continuing work. It will not start the next phase without your approval.
claude-ground/
├── cli.js
├── package.json
├── rules/
│ ├── common/
│ │ ├── core.md # phase management, approval gates, honest pushback
│ │ ├── decisions.md # decision log format and rules
│ │ ├── git.md # branch strategy, commits, versioning
│ │ ├── testing.md # test discipline, naming, coverage
│ │ ├── debug.md # two-attempt rule, structured analysis
│ │ ├── existing-code.md # read before touch, pattern respect
│ │ ├── frontend.md # theme-first, intentional design (UI only)
│ │ ├── security.md # security essentials → refs full guide
│ │ ├── deploy.md # deploy essentials → refs full guide
│ │ ├── observability.md # observability essentials → refs full guide
│ │ └── oss-hygiene.md # OSS repo essentials → refs full guide
│ ├── go/
│ │ └── go.md
│ ├── swift/
│ │ └── swift.md
│ ├── typescript/
│ │ └── typescript.md
│ ├── kotlin/
│ │ └── kotlin.md
│ ├── flutter/
│ │ └── flutter.md
│ ├── rust/
│ │ └── rust.md
│ ├── python/
│ │ └── python.md
│ ├── dotnet/
│ │ └── dotnet.md
│ └── spring/
│ └── spring.md
├── commands/
│ ├── cg-mac-release.md # macOS app release pipeline
│ ├── cg-devplan.md # development plan generator
│ ├── cg-store-listing.md # app store listing generator
│ ├── cg-security-hardening.md # full security hardening guide
│ ├── cg-indie-deploy.md # VPS deployment guide
│ ├── cg-indie-observability.md # production observability guide
│ └── cg-oss-git-hygiene.md # OSS repository setup guide
└── templates/
├── CLAUDE.md
├── DECISIONS.md
└── phases/
└── PHASE-01.md
Rules should be:
Skills should be:
.md file per skill in commands/New language rules, skills, corrections, and improvements are welcome.