├── .gitignore ├── README.md ├── cmd ├── attach │ └── main.go ├── client │ └── main.go ├── example │ └── main.go ├── opencode │ └── main.go └── server │ ├── main.go │ └── test.js ├── go.mod ├── go.sum ├── opencode-local ├── opencode-test ├── out ├── pkg ├── assert │ └── assert.go ├── cmd │ ├── cmd.go │ └── interface.go ├── config │ └── config.go └── program │ └── program.go └── test.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/daydream/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | I don't want PRs 2 | 3 | PLease leave me alone 4 | 5 | -------------------------------------------------------------------------------- /cmd/attach/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/daydream/HEAD/cmd/attach/main.go -------------------------------------------------------------------------------- /cmd/client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/daydream/HEAD/cmd/client/main.go -------------------------------------------------------------------------------- /cmd/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/daydream/HEAD/cmd/example/main.go -------------------------------------------------------------------------------- /cmd/opencode/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/daydream/HEAD/cmd/opencode/main.go -------------------------------------------------------------------------------- /cmd/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/daydream/HEAD/cmd/server/main.go -------------------------------------------------------------------------------- /cmd/server/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/daydream/HEAD/cmd/server/test.js -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/daydream/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/daydream/HEAD/go.sum -------------------------------------------------------------------------------- /opencode-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/daydream/HEAD/opencode-local -------------------------------------------------------------------------------- /opencode-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/daydream/HEAD/opencode-test -------------------------------------------------------------------------------- /out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/daydream/HEAD/out -------------------------------------------------------------------------------- /pkg/assert/assert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/daydream/HEAD/pkg/assert/assert.go -------------------------------------------------------------------------------- /pkg/cmd/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/daydream/HEAD/pkg/cmd/cmd.go -------------------------------------------------------------------------------- /pkg/cmd/interface.go: -------------------------------------------------------------------------------- 1 | package cmd 2 | 3 | type CLIInterface struct { 4 | } 5 | 6 | -------------------------------------------------------------------------------- /pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/daydream/HEAD/pkg/config/config.go -------------------------------------------------------------------------------- /pkg/program/program.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/daydream/HEAD/pkg/program/program.go -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- 1 | Hello World 2 | --------------------------------------------------------------------------------