docs/releases/2.0.0-rc.1/quickstart.md
This path is for a new contributor who wants to verify the release surface before touching feature work.
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.
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 [email protected]; latest remains on
1.10.0 during the release-candidate window.
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.
Read skills/hermes-imports/SKILL.md first.
It shows the intended ECC 2.0 pattern:
SKILL.mdDo not start by importing a private Hermes workflow wholesale. Start by distilling one reusable skill.
Use the same skill source across harnesses:
AGENTS.md, .codex-plugin/plugin.json, and MCP reference config.The portable unit is still skills/*/SKILL.md. Harness-specific files should load or adapt that source, not redefine the workflow.