Getting Started

Six phases from install to ongoing development.

1

Install the Plugin

In any Claude Code session, run these two commands:

# Add the marketplace
/plugin marketplace add duniecdawid/ultra-claude-code

# Install the plugin
/plugin install uc@ultra-claude

This registers the marketplace and installs Ultra Claude as a plugin. All skills become available as /uc:* slash commands.

Auto-updates: Enable automatic updates so the plugin stays current: /plugin marketplace auto-update duniecdawid/ultra-claude-code

2

Initialize Your Project

Navigate to your target project and run the initialization skill:

Works for any project state. /uc:init-project handles greenfield projects, existing documentation migration, and mixed states — all in one skill. After init, run /uc:doc-code-verification-mode to verify and improve the generated docs.

3

Build Your Documentation Foundation

The init skill drafts architecture and requirements docs from your codebase. Review and refine them — these become the source of truth that governs code growth.

Why this matters: every planning skill (feature mode, debug mode, verification mode) reads these docs to make informed decisions. Feature mode, for example, reads your architecture and requirements to challenge scope, find conflicts, and classify impact. The more context it has, the better the plans it produces. If docs are missing, planning skills handle it — but they work best with a solid foundation.

What gets created:

Documentation governs code. Agents read these docs and validate against them. When code diverges from specs, you fix the spec first.

4

Plan Your First Feature

Run /uc:feature-mode add user authentication (replace with your feature). Feature mode acts as a senior tech lead — it challenges your scope, researches your codebase, and produces a structured plan before any code is written.

What happens when you run it:

When to use feature mode:

Not for small fixes. For bug fixes, use /uc:debug-mode instead. For library research, run /uc:tech-research. Feature mode is for work that benefits from upfront planning — scope challenge, research, and structured task breakdown.

Review and approve the plan, then execute it in Phase 4.

5

Execute

6

Ongoing Development

Each skill links to detailed documentation in the Documentation tabs.