Qualia Framework

4.1.0 · active · verified Tue Apr 21

Qualia Framework, currently at version 4.1.0, is a specialized harness engineering framework designed to structure and streamline AI-assisted development workflows, specifically with Claude Code. It installs into the user's `~/.claude/` directory and acts as an opinionated workflow layer, guiding Claude through a complete project lifecycle from initial concept to client handoff. Unlike traditional application frameworks, Qualia Framework does not generate code, run servers, or process data; instead, it focuses on enforcing a structured process of planning, execution, verification, and deployment. Version 4, dubbed the 'Full Journey release,' introduces end-to-end project mapping from kickoff to handoff, allowing for highly automated workflows with minimal human intervention, often requiring only two human gates per project in `--auto` mode. Key features include a story-file plan format, goal-backward verification, and a 4-dimension scoring rubric. While a specific release cadence isn't published, its reliance on `npx @latest` for updates suggests an active development cycle. The framework differentiates itself by providing a robust, opinionated scaffolding for managing complex AI development projects, emphasizing process over code generation.

Common errors

Warnings

Install

Quickstart

Demonstrates the initial installation, team code requirement, and a full automatic project setup within Claude Code.

# Install the Qualia Framework globally using npx.
# It's crucial to use '@latest' to prevent npx from running a stale, cached version.
npx qualia-framework@latest install

# When prompted during installation, you will need to enter your team code (e.g., from 'Fawzi').

# Navigate to your project directory where you want to start a new AI-assisted project.
cd my-new-ai-project

# Within Claude Code, initiate a new project in fully automatic mode.
# This command orchestrates the entire project journey from kickoff to client handoff,
# automatically chaining planning, building, and verification phases per milestone.
# Human approval is typically required only at the project start and at each milestone boundary.
/qualia-new --auto

# If you need to diagnose the current state or understand the next steps within Claude Code:
/qualia-idk

# To check the installed Qualia Framework version or for updates outside of Claude Code:
npx qualia-framework@latest version

view raw JSON →