INSTALLATION · PUBLIC NPM PACKAGES
Install from npm
Every released Coordiation package is public under the @coordiation scope. Install only the compiler and integrations your project needs.
Release candidate 1.0.0-rc.1 is available through the next tag. The latest tag remains on 0.1.0, or 0.2.0 for the CLI, until stable promotion is approved.
Start with the release candidate
For a Vite project, install the compiler and adapter from the coordinated next release train.
npm install -D @coordiation/css@next @coordiation/vite@next viteContinue with the complete configuration, CSS entry, scanning, and hot-update guide.
Choose additional packages
Packages are independently versioned so applications and AI agents can declare an exact, auditable toolchain.
@coordiation/cssCompiler, scanner, utility registry, preflight, and the coordiation-css binary.
@coordiation/viteRecommended Vite integration with virtual CSS and hot updates.
@coordiation/postcssPostCSS 8 adapter for existing CSS pipelines.
@coordiation/cliOpen-code installer for Coordiation components and themes.
@coordiation/agentCompact project manifests and task-specific context packs for AI agents.
@coordiation/uiVersioned snapshots of the official component registry.
@coordiation/iconsSolar Linear and Iconsax Line Oval icon components.
@coordiation/themesVersioned application-theme registry and complete template payloads.
@coordiation/formatterCanonical class sorting for source files and automation.
@coordiation/language-serverCompletion, hover, diagnostics, and editor inspection.
@coordiation/upgradeSafe migration plans and source codemods.
@coordiation/oxideOptional native scanner with a portable JavaScript fallback.
Add icons, themes, or registry source
Install the matching RC registry snapshots when your build or AI workflow needs the source locally.
npm install @coordiation/icons@next @coordiation/themes@next @coordiation/ui@nextThe recommended open-code workflow uses the CLI to copy a selected component or theme into your repository.
npx @coordiation/cli@next add component button
npx @coordiation/cli@next add theme editorial-advisorBuild without Vite
The compiler package includes a standalone binary. Use the PostCSS adapter when an existing pipeline already owns CSS processing.
npx coordiation-css \
--input src/coordiation.css \
--output dist/coordiation.css \
--content srcPrepare compact context for AI agents
Install the public agent package and CLI to create a small, deterministic manifest instead of sending the entire repository to an agent.
npm install -D @coordiation/agent@next @coordiation/cli@next
npx @coordiation/cli@next inspect --write
npx @coordiation/cli@next context pricingAI INSTALLATION CONTRACT
Keep dependencies traceable
Agents should select packages from the published catalog instead of inventing package names or copying registry payloads manually.
- Use the exact
@coordiation/*package names listed above. - Read
/llms.txtand/api/capabilitiesbefore generating framework code. - Use literal
co-*classes so scanning and diagnostics remain reliable. - Prefer the CLI for open-code components and themes.
- Pin versions in CI and automated agent environments.
