Files
affaan-m--everything-claude…/docs/releases/2.0.0-rc.1/quickstart.md
T
wehub-resource-sync d48cda4081
CI / Test (ubuntu-latest, Node 18.x, bun) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 18.x, npm) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 18.x, pnpm) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 18.x, yarn) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 20.x, bun) (push) Failing after 17m13s
CI / Test (ubuntu-latest, Node 20.x, npm) (push) Failing after 18m42s
CI / Test (ubuntu-latest, Node 20.x, pnpm) (push) Failing after 15m0s
CI / Test (ubuntu-latest, Node 20.x, yarn) (push) Failing after 49m44s
CI / Test (ubuntu-latest, Node 22.x, bun) (push) Failing after 51m55s
CI / Test (ubuntu-latest, Node 22.x, pnpm) (push) Failing after 21m57s
CI / Test (ubuntu-latest, Node 22.x, npm) (push) Failing after 37m39s
CI / Test (ubuntu-latest, Node 22.x, yarn) (push) Failing after 34m7s
CI / Validate Components (push) Failing after 37m15s
CI / Python Tests (push) Failing after 10m1s
CI / Security Scan (push) Failing after 10m1s
CI / Lint (push) Failing after 17m12s
CI / Coverage (push) Failing after 20m19s
CI / Test (macos-latest, Node 18.x, bun) (push) Has been cancelled
CI / Test (macos-latest, Node 18.x, npm) (push) Has been cancelled
CI / Test (macos-latest, Node 18.x, pnpm) (push) Has been cancelled
CI / Test (macos-latest, Node 18.x, yarn) (push) Has been cancelled
CI / Test (windows-latest, Node 18.x, npm) (push) Has been cancelled
CI / Test (windows-latest, Node 18.x, pnpm) (push) Has been cancelled
CI / Test (windows-latest, Node 18.x, yarn) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, bun) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, npm) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, pnpm) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, yarn) (push) Has been cancelled
CI / Test (windows-latest, Node 20.x, npm) (push) Has been cancelled
CI / Test (windows-latest, Node 20.x, pnpm) (push) Has been cancelled
CI / Test (windows-latest, Node 20.x, yarn) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, bun) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, npm) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, pnpm) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, yarn) (push) Has been cancelled
CI / Test (windows-latest, Node 22.x, npm) (push) Has been cancelled
CI / Test (windows-latest, Node 22.x, pnpm) (push) Has been cancelled
CI / Test (windows-latest, Node 22.x, yarn) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 11:55:55 +08:00

2.1 KiB

ECC v2.0.0-rc.1 Quickstart

This path is for a new contributor who wants to verify the release surface before touching feature work.

Clone

git clone https://github.com/affaan-m/ECC.git
cd ECC

Start from a clean checkout. Do not copy private operator state, raw workspace exports, tokens, or local Hermes files into the repo.

Install

npm ci

This installs the Node-based validation and packaging toolchain used by the public release surface.

To install the rc.1 package from npm instead of working from a checkout:

npm install ecc-universal@next

next currently resolves to ecc-universal@2.0.0-rc.1; latest remains on 1.10.0 during the release-candidate window.

Verify

node tests/run-all.js

Expected result: every test passes with zero failures. For release-specific drift, run the focused check:

node tests/docs/ecc2-release-surface.test.js

Then check the local observability surface:

npm run observability:ready

This runs the observability readiness gate for loop status, session traces, harness audit, and ECC2 tool-risk logs.

First Skill

Read skills/hermes-imports/SKILL.md first.

It shows the intended ECC 2.0 pattern:

  • take a repeated operator workflow
  • remove credentials, private paths, raw workspace exports, and personal memory
  • keep the durable workflow shape
  • publish the sanitized result as a reusable SKILL.md

Do not start by importing a private Hermes workflow wholesale. Start by distilling one reusable skill.

Switch Harness

Use the same skill source across harnesses:

  • Claude Code consumes ECC through the Claude plugin and native hooks.
  • Codex consumes ECC through AGENTS.md, .codex-plugin/plugin.json, and MCP reference config.
  • OpenCode consumes ECC through the OpenCode package/plugin surface.

The portable unit is still skills/*/SKILL.md. Harness-specific files should load or adapt that source, not redefine the workflow.

Next Docs