Skip to content

Quick Start

Daedalus is in active development (Phase 1). This guide will evolve as the platform matures.

The Go API server is functional with:

  • Local model chat via Ollama (Qwen 3.5, Llama, and others)
  • Knowledge search via the Python intelligence bridge
  • OpenSpec CRUD for specification management
  • OIDC auth middleware (ready for Pocket ID or AWS Cognito)
Terminal window
git clone https://github.com/daedalushub/daedalus-platform.git
cd daedalus-framework/server
go mod tidy
go build -o daedalus ./cmd/daedalus
./daedalus -config config.yaml
Terminal window
# Health check
curl http://localhost:8080/health
# Chat with a local model
curl -X POST http://localhost:8080/chat \
-H "Content-Type: application/json" \
-d '{"message": "Hello, what can you do?"}'
  • Web frontend (PWA) — Phase 2
  • Mobile experience — Phase 3
  • Multi-framework execution — Phase 4
  • Open source release — Phase 5

See the Roadmap for the full plan.