creating-skills
Creates, validates, and packages Agent Skills following the open standard (agentskills.io). Portable across multiple AI agents. Use when building agent-discoverable capabilities with scripts, references, or assets.
SKILL.md
| Name | creating-skills |
| Description | Creates, validates, and packages Agent Skills following the open standard (agentskills.io). Portable across multiple AI agents. Use when building agent-discoverable capabilities with scripts, references, or assets. |
Coveo UI Kit
Quick Start with GitHub Codespaces
Get started in seconds with a fully configured development environment:
GitHub Codespaces provides a complete, cloud-based development environment with:
- ✅ All dependencies pre-installed (1.6GB of node_modules)
- ✅ Full project built and ready (~5 minutes of build time saved)
- ✅ VS Code extensions automatically installed
- ✅ Consistent environment across all developers
First-time setup: ~5 minutes | With prebuilds: ~30 seconds
See .devcontainer/README.md for details on the devcontainer configuration.
Projects
- Headless: Stateful middle-layer between UI elements and the Coveo Platform.
- Atomic: Coveo's web-component library for building modern search experiences.
- Quantic: Coveo's LWC library for building Salesforce search experiences.
- Bueno: A simple schema validator.
- Auth: Functions to help authenticate with the Coveo platform.
- Headless React Samples: Various code samples using Headless inside a React application.
Samples
Looking for code examples? Check out the samples directory for working examples using Atomic, Headless, and Headless SSR across various frameworks including React, Angular, Vue.js, and Next.js.
Install
To install all dependencies and link local packages, run:
pnpm install
To install a dependency in a specific package, specify the workspace:
pnpm add lodash -w @coveo/headless-react-samples
Build
To build all projects for production, run:
pnpm run build
To build a single project for production (for instance, the atomic package), run:
pnpm turbo run @coveo/atomic#build
Development mode
Add the --stencil switch if you are changing stencil files.
To start a single project in development (for instance, the quantic package), run:
pnpm turbo run @coveo/quantic#dev
To run a specific task in a package separate it with colon e.g. to run test:watch inside quantic
pnpm turbo test:watch --filter=@coveo/quantic
Test
To run the tests for a specific package (recommended) e.g. atomic package
pnpm turbo test --filter=@coveo/atomic
For e2e tests
pnpm turbo run @coveo/atomic#dev
# In a separate terminal
pnpm turbo run @coveo/atomic#e2e
To run e2e tests for specific files/components using the Cypress GUI
pnpm turbo e2e:watch --filter=@coveo/atomic
Lint
pnpm run lint:check
pnpm run lint:fix
Misc
The project uses git hooks with Husky. You can make sure hooks are correctly installed using the pnpm rebuild command.
Dev tooling / AI tooling
This repo includes configuration for the OpenCode CLI (including the Sisyphus agent).
- Setup guide:
internal-docs/opencode-setup.md
Recommended VS Code Settings
To ensure a consistent development experience, add the following to your .vscode/settings.json in the project root:
{
"editor.defaultFormatter": "biomejs.biome",
"editor.codeActionsOnSave": {
"source.organizeImports.biome": "explicit",
"source.fixAll.biome": "explicit"
},
"editor.formatOnSave": true
}
These settings will:
- Use Biome as the default code formatter.
- Automatically organize imports and fix issues with Biome on save.
Note:
Actual formatting is controlled by the project'sbiome.jsoncconfiguration.
The above settings ensure your editor behavior matches project standards.