π TLP-Specific(9)
TLP
The Launch Pad, thelaunchpadtlpThe Launch Pad β the organisation that owns, builds, and operates all the projects described in this dashboard.
Universe
TLP Universe, The UniverseTLP's name for the unified ecosystem of all its projects, services, and infrastructure β the goal is for everything to eventually feel like one connected whole.
OpenClaw
OpenClaw suite, OpenClaw appsTLP's family of native Mac and iOS apps β including FLOU, Arc, Lamigra, and others β all built with Apple's Swift language and designed for Apple devices.
rawrnot
raw'r'not, RawrnotTLP's flagship creative platform β nicknamed "The Digital Apex" β a dual-aesthetic website where users publish and discover raw creative work.
Glasshouse
Glasshouse site, glasshouseTLP's editorial briefing site β a polished publication-style web app used for internal communications, creative briefings, and editorial content.
Hyperapp
hyperappThe parent service that hosts Glasshouse β it's TLP's general-purpose hosting platform for web apps that don't belong to the rawrnot project.
1D3
1D3 drive, 1D3 volumeThe nickname for TLP's external hard drive where all the OpenClaw native app projects live locally during development β the "D" stands for "Drive."
HANDOFF.md
HANDOFF, handoff fileA summary file placed in every project that describes exactly where things stand β written so the next developer (or AI agent) can pick up seamlessly without a verbal briefing.
CLAUDE.md
claude.md, Claude instructionsAn instructions file that tells Claude how to work in a specific project β conventions to follow, tools to use, and behaviours to always (or never) do.
βοΈ Cloud & Infrastructure(9)
GCP
Google Cloud Platform, Google CloudGoogle's collection of cloud services β servers, databases, storage, networking, and more β that TLP rents instead of owning physical hardware.
Cloud SQL
Google Cloud SQLGoogle's managed database service β instead of maintaining a database server yourself, you rent one that Google keeps running, backed up, and up to date.
API
Application Programming Interface, EndpointA defined way for two programs to talk to each other β like a waiter who takes your order to the kitchen and brings back your food without you going in yourself.
Service Account
SA, GCP Service AccountA "robot user" created in Google Cloud that automated systems log in as so they can perform tasks on your behalf, without using a real person's login.
SA Key
Service Account Key, SA credentialThe credential file (like a password on a USB stick) that proves a service account is who it says it is when connecting to Google Cloud.
Secret Manager
Google Secret Manager, Secrets vaultGoogle's secure digital vault where passwords, API keys, and other sensitive values are stored so they never appear in plain text inside the code.
IAM
Identity and Access Management, GCP IAMGoogle Cloud's permission system β it controls exactly who (or what automated system) is allowed to do what inside your cloud account.
Cloud Run Service
Cloud Run deployment, Managed serviceA live, publicly accessible web service running on Google's infrastructure that automatically handles more traffic when busy and costs nothing when idle.
Region
Cloud region, Data centre regionThe physical location on the map where your cloud server actually lives β for example, europe-west1 means the server is in a Google data centre in Belgium.
π Deployment & CI/CD(8)
CI
Continuous IntegrationAn automatic safety check that runs every time someone saves code, making sure nothing is broken before it goes any further.
CD
Continuous Deployment, Continuous DeliveryThe automatic process that takes code which passed its safety checks and pushes it live to the internet without anyone having to do it manually.
Deploy
Deployment, ReleasePublishing code so it is live and accessible to real users β think of it as flipping the switch from "in progress" to "out in the world."
Build
Build step, CompileThe step where the computer takes your raw code and assembles it into a finished, runnable program, the same way a factory takes parts and assembles a product.
Pipeline
CI/CD Pipeline, Build pipelineA series of automatic steps that code travels through β tests, safety checks, assembly, and publishing β before it reaches real users.
Docker
Container, Docker containerA way of packaging an app and everything it needs to run into one self-contained box, so it behaves identically on any computer or server.
Cloud Run
Google Cloud RunGoogle's hosting service that takes a packaged app and runs it on the internet automatically, turning itself off when nobody is using it to save money.
Artifact Registry
Google Artifact Registry, Container RegistryGoogle's private storage locker for packaged apps β before an app can be deployed it gets stored here, like a backstage area before going on stage.
π οΈ Tech Stack(11)
React
React.js, ReactJSThe JavaScript library TLP uses to build interactive web pages β it breaks the page into reusable pieces (components) that update automatically when data changes.
Vite
Vite.jsA development tool that makes building React apps dramatically faster β it reloads changes in the browser almost instantly while you're working.
Tailwind
Tailwind CSS, TailwindCSSA CSS toolkit that lets developers style web pages by adding short descriptive words directly in the code, instead of writing separate style sheets.
TypeScript
TSA stricter version of JavaScript that checks for obvious mistakes while you're writing code β like spell-check but for logic β so fewer bugs reach users.
Node.js
Node, NodeJSA runtime that lets JavaScript β normally only used inside web browsers β run on a server, so the same language can power both the front end and back end.
Swift
Swift languageApple's programming language for building apps on Mac, iPhone, and iPad β fast, safe, and designed specifically for Apple devices.
SwiftUI
Swift UIApple's modern framework for describing what a Mac or iPhone app's interface looks like and how it behaves, using straightforward, readable code.
Vapor
Vapor framework, Swift VaporA web server framework written in Swift β it lets TLP's back-end services be built in the same language as the Mac apps, keeping the team's expertise unified.
PostgreSQL
Postgres, PSQLA powerful open-source database that stores all structured data β user accounts, records, relationships β and is known for being reliable and feature-rich.
Next.js
NextJS, NextA framework built on top of React that adds server-side features β it can pre-render pages for speed, handle back-end logic, and manage routing all in one project.
Drizzle
Drizzle ORM, ORMA TypeScript tool that acts as a translator between your code and the database β you write normal TypeScript, and Drizzle converts it into database instructions.
π» Code & Version Control(7)
GitHub
Git hosting, Source control hostThe website where all of TLP's code is stored, tracked, and shared β every change is recorded so you can always go back to an earlier version.
Repo
Repository, CodebaseA project's code folder that also contains the complete history of every single change ever made to it, like a document with infinite undo.
Commit
Git commit, CheckpointA saved snapshot of the code at a specific moment, with a message explaining what changed β like a checkpoint in a video game you can always return to.
Branch
Git branch, Feature branchA separate copy of the code where you can work on a new feature or fix without affecting the version everyone else is using.
PR
Pull Request, Merge requestA formal request to add your branch's changes into the main codebase, giving the team a chance to review and discuss the work before it goes live.
Merge
Git merge, Merge inCombining the changes from one branch into another β the final step that brings completed work into the main codebase.
Main branch
main, masterThe primary, production-ready version of the code β what gets deployed to real users and what every other branch is eventually merged back into.
π€ AI & Automation(7)
MCP
Model Context ProtocolAnthropic's standard plug-and-play system for connecting AI assistants to outside tools and services, so Claude can search the web, read files, send messages, and more.
MCP Server
MCP connector, MCP integrationA small bridge program that gives an AI assistant the ability to use one specific tool or service β for example, the GitHub MCP server lets Claude read and write code.
Claude
Claude AI, Anthropic ClaudeAnthropic's AI assistant β the one writing this glossary β used across TLP for coding, writing, research, and running automated agent tasks.
Playwright
Microsoft Playwright, Browser automationA tool that can control a web browser programmatically β TLP uses it to let AI assistants visit websites, click buttons, and extract information automatically.
LLM
Large Language Model, AI modelThe AI brain behind assistants like Claude, ChatGPT, and Gemini β a very large model trained on enormous amounts of text that can read, write, and reason about almost anything.
Token
AI token, Token countThe tiny unit of text that an AI processes β roughly a word or part of a word β and also the "currency" that determines how much an AI interaction costs.
Context window
Context length, Context limitThe amount of text an AI can hold in its "working memory" at once during a conversation β once the limit is reached, earlier parts of the chat start to fade.
Machine-readable:Β GET /api/glossaryΒ β returns all 51 terms as JSON, grouped by category.