Skip to main content
Compendium / Governance & Risk / Sign-off / Sign-Off Granted Stamp
#583

Sign-Off Granted Stamp

Stamp recording that a governor has signed off — the terminal positive state in the sign-off lifecycle.

STABLE GO
#stamp #real-content #dark-mode-tested #responsive
Live

SPEC-204 · sign-off ledger

Governor accepts the release at the stated state. The gate is open; subsequent changes require a fresh request.

Sign-Off Granted
@governor · 2026-05-21 09:40Z
Spec

Intent

A granted sign-off is a contract: the governor takes responsibility for the artefact passing this gate. The stamp is loud and permanent.

Acceptance Criteria

  • [ ] Rotated stamp at -10deg
  • [ ] Success token framing
  • [ ] Records governor handle and grant timestamp
  • [ ] Negative: does NOT include a "rescind" affordance

Constraints

  • Pure CSS
  • Theme-aware
// signoff-granted-stamp.astro
---
import type { CompendiumMeta } from '../../../data/types';

export const meta: CompendiumMeta = {
  id: 583,
  slug: 'signoff-granted-stamp',
  name: 'Sign-Off Granted Stamp',
  category: 'governance-risk',
  subcategory: 'signoff',
  pillar: 'go',
  description: 'Stamp recording that a governor has signed off — the terminal positive state in the sign-off lifecycle.',
  spec: `## Intent
A granted sign-off is a contract: the governor takes responsibility for the artefact passing this gate. The stamp is loud and permanent.

## Acceptance Criteria
- [ ] Rotated stamp at -10deg
- [ ] Success token framing
- [ ] Records governor handle and grant timestamp
- [ ] Negative: does NOT include a "rescind" affordance

## Constraints
- Pure CSS
- Theme-aware`,
  tags: ['stamp', 'real-content', 'dark-mode-tested', 'responsive'],
  status: 'stable',
  health: { ics: 92, a11y: 'aa', themed: true, animated: false },
};

const grant = { spec: 'SPEC-204', at: '2026-05-21 09:40Z' };
---

<section data-this-component class="w-full bg-paper text-black border-4 border-black p-4 relative overflow-hidden">
  <div class="opacity-60">
    <p class="font-mono text-[9px] uppercase tracking-widest mb-1">{grant.spec} · sign-off ledger</p>
    <p class="text-[11px] leading-snug">
      Governor accepts the release at the stated state. The gate is
      open; subsequent changes require a fresh request.
    </p>
  </div>
  <div class="absolute top-1/2 start-1/2 -translate-x-1/2 -translate-y-1/2 rotate-[-10deg] pointer-events-none">
    <div
      class="border-4 border-success text-success bg-paper/40 px-3 py-2"
      style="box-shadow: inset 0 0 0 2px var(--color-success), 0 0 0 1px var(--color-paper);"
    >
      <div class="font-black text-[16px] uppercase tracking-[0.14em] leading-none">Sign-Off Granted</div>
      <div class="font-mono text-[8px] uppercase tracking-widest mt-1 text-center opacity-90">@governor · {grant.at}</div>
    </div>
  </div>
</section>