ompsure

Getting Started

Install Composure and set up your first project in under 5 minutes.

Getting Started

Composure adds code quality enforcement, architecture guidance, and a structural code graph to Claude Code. Install once, use in every project.

Prerequisites

  • Claude Code (the CLI tool)
  • Node.js 22.5+ (required for the code graph)

Install

# Add the marketplace
claude plugin marketplace add hrconsultnj/claude-plugins

# Install Composure (includes Sentinel, Testbench, Shipyard, Design Forge)
claude plugin install composure@my-claude-plugins

Then restart Claude Code (Ctrl+C then claude) and run /composure:auth login to connect your account.

Creating an account is free. The free tier includes the code graph, basic skills, and all enforcement hooks. No credit card required.

Initialize Your Project

Navigate to your project directory and run:

/composure:initialize

Composure will:

  1. Detect your stack — framework, language, package manager, database
  2. Build the code graph — indexes every function, class, type, table, and dependency
  3. Install companion plugins — Sentinel (security), Testbench (testing), Shipyard (CI/CD), Design Forge (UI) — based on what your project needs
  4. Set up the task queue — tracks code quality findings

What You Get

Free (every account)

FeatureWhat it does
Code GraphSQLite knowledge graph — 8 languages, 13 node types. Query functions, dependencies, blast radius instantly.
Enforcement HooksBlock as any, @ts-ignore, hardcoded secrets, SQL injection — on every Edit/Write. Zero token cost.
Architecture RoutingStack-aware guidance loaded automatically when you build features.
17 SkillsBlueprint, initialize, commit, audit, review, code-organizer, and more.
Security ScanningSentinel: SAST, secret detection, dependency CVE audit.
Test GenerationTestbench: convention-aware test generation from existing test files.
CI/CD GenerationShipyard: GitHub Actions, GitLab CI, Dockerfiles, preflight checks.

Pro ($39 one-time)

Everything in Free, plus:

FeatureWhat it does
22 Architecture PatternsEntity registry, ID prefixes, 4-level auth, RLS policies, trigger denormalization — battle-tested across 322+ migrations.
Schema Guard HookBlocks boolean status columns, missing tenant columns, inline role definitions — cites the exact pattern doc in each violation.
Priority SupportDirect access for architecture questions and pattern guidance.

Next Steps

Run your first audit

/composure:audit

Get a scored health report with letter grades across Architecture, Security, Code Quality, Dependencies, and Test Coverage.

Plan a feature with Blueprint

/composure:blueprint add user authentication

Blueprint scans your code graph, asks scope questions, analyzes blast radius, and writes a per-file implementation spec — before you write a single line of code.

Explore the graph

/composure:view-graph

Opens an interactive visualization of your entire codebase — functions, imports, dependencies, test coverage — in your browser.

Manage Your Account

/composure:auth status     # Check your plan and features
/composure:auth upgrade    # Open pricing page
/composure:auth logout     # Sign out

See the Subscription Guide for plan details and billing.

On this page