Divine Prometheus is an experimental React + TypeScript project showcasing advanced AI tooling. The codebase includes a DryRun environment for testing application logic without side effects and an EchoMind workbench for refining AI prompts. Together they provide a playground for exploring prompt engineering and simulated execution flows.
npm install
npm install --save-dev @rollup/rollup-linux-x64-gnu \
lightningcss-linux-x64-gnu \
@tailwindcss/oxide-linux-x64-gnu
npm run dev # start Vite development server
npm run build # compile TypeScript and build for production
npm run css:build # generate dist/tailwind.css using PostCSSsrc/dryrun/– Components supporting the DryRun environment.DryRunProvidermanages simulation state andDryRunDashboardvisualizes events.src/echomind/– The prompt tooling suite.PromptEngineanalyzes and enhances prompts whilePromptWorkbenchoffers an interactive UI to experiment with prompt strategies.
This repository uses pre-commit for linting, formatting, and TypeScript checks. Run pre-commit install once to enable Git hooks, or manually execute pre-commit run --all-files before committing.
The project currently has a placeholder test script. Run npm test to execute it. Continuous integration also runs pre-commit hooks and the test script.