experimentalv1.0.0

AI Sandbox

Interactive experimentation sandbox for prototyping @dcyfr/ai integrations and agent patterns.

Code Preview

{
  "name": "@dcyfr/ai-sandbox",
  "version": "1.0.0",
  "description": "Interactive experimentation sandbox for prototyping @dcyfr/ai integrations and agent patterns.",
  "scripts": {
    "dev": "next dev",
    "build": "next build",
    "start": "next start",
    "test": "vitest"
  },
  "dependencies": {
    "@dcyfr/ai": "^1.0.0",
    "@dcyfr/design-system": "*",
    "next": "^15",
    "react": "^19",
    "react-dom": "^19"
  }
}

Setup

1

Clone the template

npx create-dcyfr-app my-app --template dcyfr-ai-sandbox
2

Install dependencies

cd my-app && npm install
3

Configure environment

cp .env.example .env.local
4

Start developing

npm run dev