A text-based wireframing tool that prioritizes semantic structure and accessibility from the start. Built with a content-first approach using a Domain Specific Language (DSL) that enables screen reader users and non-designers to participate in the design process.
Traditional tools like Figma and Penpot prioritize visual layout before content and structure. This approach:
- Excludes screen reader users from the design process entirely
- Makes accessibility an afterthought instead of a foundation
- Creates barriers for non-designers to participate in early design decisions
- Focuses on pixels before meaning
This tool inverts that paradigm:
- Shift-Left Accessibility: Screen reader users can participate in wireframing and co-design
- Semantic Structure First: Define what things ARE before how they LOOK
- Inclusive Collaboration: Anyone comfortable with text documents can contribute
- Content-First Thinking: Forces clarity about information architecture and user flows
- LLM-Friendly: Structured text is perfect for AI-assisted design validation and testing
- Design in text: Build your wireframe using semantic patterns
- Copy for LLM: Get your design with full context included
- Test with AI agents: Ask LLMs to act as screen reader users, cognitive accessibility auditors, or service designers
- Iterate quickly: Fix issues in text before they become expensive to fix in code
- Export to Penpot: Use the "Export to Penpot" button to generate instructions for creating a Penpot file
Text is the most inclusive medium. By starting with text, you ensure everyone—including people with disabilities—can participate in creating better experiences.
Click the "Export to Penpot" button in the web tool to copy wireframe content with Penpot-specific instructions. Paste the result into ChatGPT, Gemini, Claude, or another LLM to generate a .penpot file. Then:
- Download the generated
.penpotfile - Open penpot.app
- Create a new design
- Import the
.penpotfile - Refine visually in Penpot
For local development and quality checks:
npm install
npx playwright install webkitRun the full test suite:
npm testOr run checks individually:
npm run lint:html # HTML validation
npm run scan:security # Security hygiene
npm run test:a11y # Accessibility scanHTML validation covers index.html; security and accessibility scans block on critical issues and warn on moderate ones.
The site runs as a static GitHub Pages site. No build step required—the HTML, CSS, and JavaScript files work directly.
Only source files are tracked in git. Dependencies (node_modules, package-lock.json) are only needed for local quality checks and are excluded via .gitignore.
Yes. AI was used in creating this tool. There be dragons!