← All articles

Shareable Pages

The communication layer that bridges engineering knowledge to human understanding.

Bert Carroll ·

The Problem

You build a feature, write an ADR, create a session doc. The engineering knowledge is captured. But the people who need to understand what you built —stakeholders, partners, customers, investors —don't read your repo. They don't open markdown files. They don't browse your docs folder.

Documentation that nobody reads is documentation that doesn't exist.

The Insight

Single shareable pages get read. Every time.

A URL that opens immediately in a browser, renders cleanly on mobile, and can be printed to PDF —this is the format that reaches humans. Not slide decks (too heavy). Not docs in a repo (invisible). Not email threads (lost in 48 hours).

One page. One URL. Immediate comprehension.

What Shareable Pages Are

Static HTML pages deployed to a fast CDN. Each page is:

  • Self-contained: Single index.html with inline CSS, no external dependencies
  • Access-controlled via obscurity: Hash-based URLs —not indexed, not guessable
  • Print-friendly: @media print rules, @page sizing, color-exact backgrounds
  • Mobile-first: Responsive layout, readable on any device
  • Trackable: View middleware logs first-visit events, optional team notifications

When to Create One

TriggerExample
Sales materialOne-pager for prospects
Release communicationWhat shipped, what changed, what's next
Decision that affects non-engineersADR summary for business stakeholders
HiringRole page that reads like an invitation
Client proposalScope, pricing, and how-it-works
Meeting prepParticipant bios, soundbites, coaching notes
Post-meeting debriefStrategic read, action items, transcript
Interactive toolROI calculator with live charts

Rule of thumb: If the audience is an AI agent or engineer on your team, it goes in the repo. If the audience is anyone else, it might need a shareable page.

Design Principles

  1. No external dependencies —everything inline. Pages must work offline and in 10 years.
  2. Print is a first-class output —many stakeholders print to PDF. Test it.
  3. One column on mobile —grids collapse gracefully below 640px.
  4. Accent color, not a rainbow —one brand color plus neutral grays.
  5. Small type, high density —these are reference documents, not blog posts.

The Relationship to SDLC

Shareable pages are NOT a core SDLC function. They are a communication layer on top of the SDLC:

Core SDLC FunctionCommunication Layer
ADRsDecision summary page for stakeholders
SessionsSprint/release summary for leadership
RCAsIncident summary for affected parties
Features (ROADMAP.md)Feature brief for partners/investors
PatternsBest practices article for community

The SDLC captures knowledge. Shareable pages distribute it.

The Multiplier Effect

In practice, shareable pages create a compounding communication advantage:

  1. Partner sees capabilities page —asks informed questions —productive meeting
  2. Investor reads feature brief —understands progress without a call —trust builds
  3. Customer gets incident page —feels informed —retention improves
  4. Team member reads release notes —knows what shipped —alignment improves

The 30 minutes spent creating a page saves hours of meetings, emails, and misunderstandings.

Based on 50+ shareable pages deployed across production projects, with tracked view analytics confirming 3-5x higher read rates vs traditional documentation distribution.


The Code

The template that powers these pages is open source: github.com/ubiquitouszero/hash-pages. Private, trackable, single-file pages with first-view notifications. No auth, no CMS.