Skip to main content
Welcome to Comet (@rpamis/comet). This section covers classic Spec mode. Comet connects OpenSpec and Superpowers into a five-phase workflow, then adds CodeGraph-assisted context retrieval so long-running coding work uses fewer tokens. You do not need to remember the original OpenSpec or Superpowers Skill commands. Use /comet, and Comet routes the request through proposal, design, implementation, verification, and archive. It detects the current phase from files, so you can resume after interruptions.

Introduction

Understand what Comet is, what it solves, and how the workflow operates.

Quickstart

Install Comet and run your first recoverable /comet workflow.

Workflow

Learn the five phases: open, design, build, verify, and archive.

Platforms

See the 33 supported AI coding platforms and their install capabilities.

CLI reference

Use the Comet CLI for installation, status, diagnostics, Skill work, evals, and publishing.

Core scripts

Understand the Node launchers behind state, guards, handoff, archive, and routing.

Compose any Skill

Use /comet-any to compose arbitrary Skills into evaluable, publishable Skill bundles.

Evaluate any Skill

Score Skills with rubrics, pass@k, pass^k, HTML reports, and failure attribution.

Get started in three steps

1

Install the Comet CLI globally

Install from npm so the comet command is available on your machine.
npm install -g @rpamis/comet
2

Run comet init in your project

Go to the project root and initialize Comet. The wizard lets you choose project or global install scope, preferred Skill language, and target AI platforms.
cd your-project
comet init
3

Call /comet from your AI coding tool

Open Claude Code, Codex, Cursor, or another supported platform, then type /comet. Comet reads project state, detects the phase, uses intent routing, and continues the workflow.
/comet what you want to build

AI-native docs

You can connect the Comet docs site to your agent through MCP, so your assistant can retrieve up-to-date docs during conversations.

Use with Claude Code

claude mcp add --transport http docs-comet --scope user https://docs.comet.rpamis.com/mcp

Use with Codex CLI

codex mcp add docs-comet --url https://docs.comet.rpamis.com/mcp

Use with Cursor/Antigravity

{
  "mcpServers": {
    "docs-comet": {
      "url": "https://docs.comet.rpamis.com/mcp"
    }
  }
}

Use with VS Code

{
  "servers": {
    "docs-comet": {
          "url": "https://docs.comet.rpamis.com/mcp"
    }
  }
}
Last modified on July 6, 2026