Quick Start
Daedalus is in active development (Phase 1). This guide will evolve as the platform matures.
Current state
Section titled “Current state”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)
Prerequisites
Section titled “Prerequisites”- Go 1.23+
- Python 3.10+
- Ollama with a model pulled (e.g.,
ollama pull qwen3.5:9b)
Run the API server
Section titled “Run the API server”git clone https://github.com/daedalushub/daedalus-platform.gitcd daedalus-framework/servergo mod tidygo build -o daedalus ./cmd/daedalus./daedalus -config config.yamlTest it
Section titled “Test it”# Health checkcurl http://localhost:8080/health
# Chat with a local modelcurl -X POST http://localhost:8080/chat \ -H "Content-Type: application/json" \ -d '{"message": "Hello, what can you do?"}'What’s coming next
Section titled “What’s coming next”- 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.