rdev/ideas/aeres/go.mod
jordan d69da6d627 feat: add structured logging infrastructure and SDLC extensions
Major changes:
- Add internal/logging package with field constants, context propagation,
  sensitive data auto-redaction, and per-component log levels
- Add worker timeout constants (TimeoutQuickOp, TimeoutHealthCheck, etc.)
- Extend SDLC with callback handlers, generate endpoints, and executor
- Add new cookbook trees for aeries and slackpath progression
- Add skeleton templates for queue, realtime, and microservices
- Add worker component template with async job processing
- Refactor services and handlers to use new logging infrastructure
- Split component.go into component_infra.go and component_listing.go

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-04 22:56:04 -07:00

55 lines
2.2 KiB
Modula-2

module agent-creator
go 1.25.5
require (
github.com/google/uuid v1.6.0
github.com/gorilla/websocket v1.5.3
github.com/orchard9/peach/pkg/persona v0.0.0
github.com/orchard9/peach/pkg/personagen v0.0.0
)
require (
cloud.google.com/go v0.116.0 // indirect
cloud.google.com/go/auth v0.9.3 // indirect
cloud.google.com/go/compute/metadata v0.5.0 // indirect
github.com/chai2010/webp v1.4.0 // indirect
github.com/ebitengine/purego v0.8.3 // indirect
github.com/gen2brain/avif v0.4.4 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/s2a-go v0.1.8 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
github.com/orchard9/peach/pkg/gemini v0.0.0 // indirect
github.com/orchard9/peach/pkg/httpclient v0.0.0 // indirect
github.com/orchard9/peach/pkg/laozhang v0.0.0 // indirect
github.com/orchard9/peach/pkg/mediagen v0.0.0 // indirect
github.com/orchard9/peach/pkg/routing v0.0.0 // indirect
github.com/orchard9/peach/pkg/textgen v0.0.0 // indirect
github.com/tetratelabs/wazero v1.9.0 // indirect
go.opencensus.io v0.24.0 // indirect
golang.org/x/crypto v0.36.0 // indirect
golang.org/x/image v0.35.0 // indirect
golang.org/x/net v0.38.0 // indirect
golang.org/x/sys v0.31.0 // indirect
golang.org/x/text v0.33.0 // indirect
google.golang.org/genai v1.41.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
google.golang.org/grpc v1.66.2 // indirect
google.golang.org/protobuf v1.34.2 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
replace (
github.com/orchard9/peach/pkg/gemini => ../../pkg/gemini
github.com/orchard9/peach/pkg/grok => ../../pkg/grok
github.com/orchard9/peach/pkg/httpclient => ../../pkg/httpclient
github.com/orchard9/peach/pkg/laozhang => ../../pkg/laozhang
github.com/orchard9/peach/pkg/mediagen => ../../pkg/mediagen
github.com/orchard9/peach/pkg/persona => ../../pkg/persona
github.com/orchard9/peach/pkg/personagen => ../../pkg/personagen
github.com/orchard9/peach/pkg/routing => ../../pkg/routing
github.com/orchard9/peach/pkg/synap => ../../pkg/synap
github.com/orchard9/peach/pkg/textgen => ../../pkg/textgen
)