feat: implement T01-T04 — Go module, canonical model, LDAP validator, error taxonomy
- T01: Go module (keycape), full directory skeleton, Makefile, CI workflow
- T02: spec/canonical-model.yaml with 6 entities + Go domain types
- T03: spec/ldap-schema.yaml + validator binary with structural/semantic rules
- T04: Error taxonomy — 4 stable error types, JSON format, HTTP helpers
28 tests pass, go vet clean, go build clean.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-13 01:27:54 +01:00
|
|
|
module keycape
|
|
|
|
|
|
2026-03-13 01:45:21 +01:00
|
|
|
go 1.23.0
|
feat: implement T01-T04 — Go module, canonical model, LDAP validator, error taxonomy
- T01: Go module (keycape), full directory skeleton, Makefile, CI workflow
- T02: spec/canonical-model.yaml with 6 entities + Go domain types
- T03: spec/ldap-schema.yaml + validator binary with structural/semantic rules
- T04: Error taxonomy — 4 stable error types, JSON format, HTTP helpers
28 tests pass, go vet clean, go build clean.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-13 01:27:54 +01:00
|
|
|
|
2026-03-13 01:35:34 +01:00
|
|
|
require (
|
2026-03-13 01:45:21 +01:00
|
|
|
github.com/go-ldap/ldap/v3 v3.4.12
|
2026-03-13 01:35:34 +01:00
|
|
|
github.com/rs/zerolog v1.34.0
|
|
|
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
require (
|
2026-03-13 01:45:21 +01:00
|
|
|
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
|
|
|
|
|
github.com/go-asn1-ber/asn1-ber v1.5.8-0.20250403174932-29230038a667 // indirect
|
|
|
|
|
github.com/google/uuid v1.6.0 // indirect
|
2026-03-13 01:35:34 +01:00
|
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
|
|
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
2026-03-13 01:45:21 +01:00
|
|
|
golang.org/x/crypto v0.36.0 // indirect
|
|
|
|
|
golang.org/x/sys v0.31.0 // indirect
|
2026-03-13 01:35:34 +01:00
|
|
|
)
|