Glossary51 terms

Plain-English definitions for every tech term in the TLP Universe

← Dashboard

πŸš€ TLP-Specific(9)

TLP

The Launch Pad, thelaunchpadtlp

The Launch Pad β€” the organisation that owns, builds, and operates all the projects described in this dashboard.

See also:

Universe

TLP Universe, The Universe

TLP'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.

See also:

OpenClaw

OpenClaw suite, OpenClaw apps

TLP'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.

See also:

rawrnot

raw'r'not, Rawrnot

TLP's flagship creative platform β€” nicknamed "The Digital Apex" β€” a dual-aesthetic website where users publish and discover raw creative work.

See also:

Glasshouse

Glasshouse site, glasshouse

TLP's editorial briefing site β€” a polished publication-style web app used for internal communications, creative briefings, and editorial content.

See also:

Hyperapp

hyperapp

The parent service that hosts Glasshouse β€” it's TLP's general-purpose hosting platform for web apps that don't belong to the rawrnot project.

See also:

1D3

1D3 drive, 1D3 volume

The nickname for TLP's external hard drive where all the OpenClaw native app projects live locally during development β€” the "D" stands for "Drive."

See also:

HANDOFF.md

HANDOFF, handoff file

A 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.

See also:

CLAUDE.md

claude.md, Claude instructions

An 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.

See also:

☁️ Cloud & Infrastructure(9)

GCP

Google Cloud Platform, Google Cloud

Google's collection of cloud services β€” servers, databases, storage, networking, and more β€” that TLP rents instead of owning physical hardware.

See also:

Cloud SQL

Google Cloud SQL

Google's managed database service β€” instead of maintaining a database server yourself, you rent one that Google keeps running, backed up, and up to date.

See also:

API

Application Programming Interface, Endpoint

A 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.

See also:

Service Account

SA, GCP Service Account

A "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.

See also:

SA Key

Service Account Key, SA credential

The 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.

See also:

Secret Manager

Google Secret Manager, Secrets vault

Google's secure digital vault where passwords, API keys, and other sensitive values are stored so they never appear in plain text inside the code.

See also:

IAM

Identity and Access Management, GCP IAM

Google Cloud's permission system β€” it controls exactly who (or what automated system) is allowed to do what inside your cloud account.

See also:

Cloud Run Service

Cloud Run deployment, Managed service

A live, publicly accessible web service running on Google's infrastructure that automatically handles more traffic when busy and costs nothing when idle.

See also:

Region

Cloud region, Data centre region

The 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.

See also:

πŸš€ Deployment & CI/CD(8)

CI

Continuous Integration

An automatic safety check that runs every time someone saves code, making sure nothing is broken before it goes any further.

See also:

CD

Continuous Deployment, Continuous Delivery

The automatic process that takes code which passed its safety checks and pushes it live to the internet without anyone having to do it manually.

See also:

Deploy

Deployment, Release

Publishing 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."

See also:

Build

Build step, Compile

The 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.

See also:

Pipeline

CI/CD Pipeline, Build pipeline

A series of automatic steps that code travels through β€” tests, safety checks, assembly, and publishing β€” before it reaches real users.

See also:

Docker

Container, Docker container

A 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.

See also:

Cloud Run

Google Cloud Run

Google'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.

See also:

Artifact Registry

Google Artifact Registry, Container Registry

Google'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.

See also:

πŸ› οΈ Tech Stack(11)

React

React.js, ReactJS

The JavaScript library TLP uses to build interactive web pages β€” it breaks the page into reusable pieces (components) that update automatically when data changes.

See also:

Vite

Vite.js

A development tool that makes building React apps dramatically faster β€” it reloads changes in the browser almost instantly while you're working.

See also:

Tailwind

Tailwind CSS, TailwindCSS

A CSS toolkit that lets developers style web pages by adding short descriptive words directly in the code, instead of writing separate style sheets.

See also:

TypeScript

TS

A 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.

See also:

Node.js

Node, NodeJS

A 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.

See also:

Swift

Swift language

Apple's programming language for building apps on Mac, iPhone, and iPad β€” fast, safe, and designed specifically for Apple devices.

See also:

SwiftUI

Swift UI

Apple's modern framework for describing what a Mac or iPhone app's interface looks like and how it behaves, using straightforward, readable code.

See also:

Vapor

Vapor framework, Swift Vapor

A 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.

See also:

PostgreSQL

Postgres, PSQL

A powerful open-source database that stores all structured data β€” user accounts, records, relationships β€” and is known for being reliable and feature-rich.

See also:

Next.js

NextJS, Next

A 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.

See also:

Drizzle

Drizzle ORM, ORM

A TypeScript tool that acts as a translator between your code and the database β€” you write normal TypeScript, and Drizzle converts it into database instructions.

See also:

πŸ’» Code & Version Control(7)

GitHub

Git hosting, Source control host

The 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.

See also:

Repo

Repository, Codebase

A project's code folder that also contains the complete history of every single change ever made to it, like a document with infinite undo.

See also:

Commit

Git commit, Checkpoint

A 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.

See also:

Branch

Git branch, Feature branch

A separate copy of the code where you can work on a new feature or fix without affecting the version everyone else is using.

See also:

PR

Pull Request, Merge request

A 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.

See also:

Merge

Git merge, Merge in

Combining the changes from one branch into another β€” the final step that brings completed work into the main codebase.

See also:

Main branch

main, master

The primary, production-ready version of the code β€” what gets deployed to real users and what every other branch is eventually merged back into.

See also:

πŸ€– AI & Automation(7)

MCP

Model Context Protocol

Anthropic'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.

See also:

MCP Server

MCP connector, MCP integration

A 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.

See also:

Claude

Claude AI, Anthropic Claude

Anthropic's AI assistant β€” the one writing this glossary β€” used across TLP for coding, writing, research, and running automated agent tasks.

See also:

Playwright

Microsoft Playwright, Browser automation

A tool that can control a web browser programmatically β€” TLP uses it to let AI assistants visit websites, click buttons, and extract information automatically.

See also:

LLM

Large Language Model, AI model

The 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.

See also:

Token

AI token, Token count

The 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.

See also:

Context window

Context length, Context limit

The 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.

See also:

Machine-readable:Β GET /api/glossaryΒ β€” returns all 51 terms as JSON, grouped by category.