SPIRE plugins: Keylime node attestor (Go)
Find a file
2026-02-18 10:47:09 -05:00
cmd Initial scaffolding: specs, plugins, pkg/shellstream 2026-02-18 10:47:09 -05:00
deploy Initial scaffolding: specs, plugins, pkg/shellstream 2026-02-18 10:47:09 -05:00
docs Initial scaffolding: specs, plugins, pkg/shellstream 2026-02-18 10:47:09 -05:00
pkg Initial scaffolding: specs, plugins, pkg/shellstream 2026-02-18 10:47:09 -05:00
proto Initial scaffolding: specs, plugins, pkg/shellstream 2026-02-18 10:47:09 -05:00
specs Initial scaffolding: specs, plugins, pkg/shellstream 2026-02-18 10:47:09 -05:00
test/fixtures Initial scaffolding: specs, plugins, pkg/shellstream 2026-02-18 10:47:09 -05:00
.gitignore Initial scaffolding: specs, plugins, pkg/shellstream 2026-02-18 10:47:09 -05:00
buf.gen.yaml Initial scaffolding: specs, plugins, pkg/shellstream 2026-02-18 10:47:09 -05:00
buf.yaml Initial scaffolding: specs, plugins, pkg/shellstream 2026-02-18 10:47:09 -05:00
go.mod Initial scaffolding: specs, plugins, pkg/shellstream 2026-02-18 10:47:09 -05:00
LICENSE Initial scaffolding: specs, plugins, pkg/shellstream 2026-02-18 10:47:09 -05:00
Makefile Initial scaffolding: specs, plugins, pkg/shellstream 2026-02-18 10:47:09 -05:00
README.md Initial scaffolding: specs, plugins, pkg/shellstream 2026-02-18 10:47:09 -05:00

Guildhouse SPIRE Plugins

SPIRE plugins and specifications for governed SSH access via SPIFFE identity.

This repository extends the SPIFFE ecosystem with SSH certificate issuance, governance-aware credential lifecycle management, and Guildhouse platform integration.

Specifications

The primary deliverables are three formal specifications in specs/:

Plugins

Four SPIRE plugins in cmd/:

Plugin SPIRE Type Runs In Purpose
oidc-attestor WorkloadAttestor Agent OIDC token verification, claim-to-selector mapping
ssh-credential-composer CredentialComposer Server SSH certificate generation with Shellstream extensions
governance-notifier Notifier Server Credential event notification, merkle anchoring
substrate-keymanager KeyManager Server Governance-aware signing key management

Packages

Shared Go libraries in pkg/:

  • shellstream — Encode/decode Shellstream SSH certificate extensions (fully implemented)
  • oidc — OIDC token verification (scaffolded)
  • governance — GovernanceService/CeremonyService gRPC client (scaffolded)
  • sshcert — SSH certificate builder (scaffolded)
  • config — Plugin configuration loading (scaffolded)

Building

make build    # Build all plugin binaries
make test     # Run tests
make lint     # Run go vet
make clean    # Remove build artifacts

Proto Code Generation

Proto files in proto/ are copies from the Guildhouse monorepo. To regenerate Go bindings:

make proto-gen

Requires buf to be installed.

License

Apache License 2.0 — see LICENSE.