{"total":51,"categories":["deployment","cloud","code","tech-stack","ai","tlp"],"byCategory":{"deployment":[{"term":"CI","plain":"An automatic safety check that runs every time someone saves code, making sure nothing is broken before it goes any further.","category":"deployment","aliases":["Continuous Integration"],"seeAlso":["CD","Pipeline"]},{"term":"CD","plain":"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.","category":"deployment","aliases":["Continuous Deployment","Continuous Delivery"],"seeAlso":["CI","Pipeline","Deploy"]},{"term":"Deploy","plain":"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.\"","category":"deployment","aliases":["Deployment","Release","Ship"],"seeAlso":["Build","Pipeline","Cloud Run"]},{"term":"Build","plain":"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.","category":"deployment","aliases":["Build step","Compile"],"seeAlso":["Pipeline","Docker"]},{"term":"Pipeline","plain":"A series of automatic steps that code travels through — tests, safety checks, assembly, and publishing — before it reaches real users.","category":"deployment","aliases":["CI/CD Pipeline","Build pipeline"],"seeAlso":["CI","CD","Deploy"]},{"term":"Docker","plain":"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.","category":"deployment","aliases":["Container","Docker container","Docker image"],"seeAlso":["Cloud Run","Artifact Registry","Build"]},{"term":"Cloud Run","plain":"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.","category":"deployment","aliases":["Google Cloud Run"],"seeAlso":["Docker","GCP","Region"]},{"term":"Artifact Registry","plain":"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.","category":"deployment","aliases":["Google Artifact Registry","Container Registry"],"seeAlso":["Docker","Cloud Run","GCP"]}],"cloud":[{"term":"GCP","plain":"Google's collection of cloud services — servers, databases, storage, networking, and more — that TLP rents instead of owning physical hardware.","category":"cloud","aliases":["Google Cloud Platform","Google Cloud"],"seeAlso":["Cloud Run","Cloud SQL","Secret Manager","IAM"]},{"term":"Cloud SQL","plain":"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.","category":"cloud","aliases":["Google Cloud SQL"],"seeAlso":["PostgreSQL","GCP"]},{"term":"API","plain":"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.","category":"cloud","aliases":["Application Programming Interface","Endpoint","REST API"],"seeAlso":["MCP","Service Account"]},{"term":"Service Account","plain":"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.","category":"cloud","aliases":["SA","GCP Service Account"],"seeAlso":["SA Key","IAM","GCP"]},{"term":"SA Key","plain":"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.","category":"cloud","aliases":["Service Account Key","SA credential","JSON key"],"seeAlso":["Service Account","Secret Manager"]},{"term":"Secret Manager","plain":"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.","category":"cloud","aliases":["Google Secret Manager","Secrets vault"],"seeAlso":["SA Key","GCP","IAM"]},{"term":"IAM","plain":"Google Cloud's permission system — it controls exactly who (or what automated system) is allowed to do what inside your cloud account.","category":"cloud","aliases":["Identity and Access Management","GCP IAM","Permissions"],"seeAlso":["Service Account","GCP"]},{"term":"Cloud Run Service","plain":"A live, publicly accessible web service running on Google's infrastructure that automatically handles more traffic when busy and costs nothing when idle.","category":"cloud","aliases":["Cloud Run deployment","Managed service"],"seeAlso":["Cloud Run","Docker","Region"]},{"term":"Region","plain":"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.","category":"cloud","aliases":["Cloud region","Data centre region"],"seeAlso":["GCP","Cloud Run"]}],"code":[{"term":"GitHub","plain":"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.","category":"code","aliases":["Git hosting","Source control host"],"seeAlso":["Repo","Commit","Branch","PR"]},{"term":"Repo","plain":"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.","category":"code","aliases":["Repository","Codebase","Git repo"],"seeAlso":["GitHub","Commit","Branch"]},{"term":"Commit","plain":"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.","category":"code","aliases":["Git commit","Checkpoint","Change set"],"seeAlso":["Branch","PR","Repo"]},{"term":"Branch","plain":"A separate copy of the code where you can work on a new feature or fix without affecting the version everyone else is using.","category":"code","aliases":["Git branch","Feature branch"],"seeAlso":["Main branch","PR","Merge"]},{"term":"PR","plain":"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.","category":"code","aliases":["Pull Request","Merge request"],"seeAlso":["Branch","Merge","Main branch"]},{"term":"Merge","plain":"Combining the changes from one branch into another — the final step that brings completed work into the main codebase.","category":"code","aliases":["Git merge","Merge in"],"seeAlso":["PR","Branch","Main branch"]},{"term":"Main branch","plain":"The primary, production-ready version of the code — what gets deployed to real users and what every other branch is eventually merged back into.","category":"code","aliases":["main","master","trunk"],"seeAlso":["Branch","Merge","Deploy"]}],"tech-stack":[{"term":"React","plain":"The JavaScript library TLP uses to build interactive web pages — it breaks the page into reusable pieces (components) that update automatically when data changes.","category":"tech-stack","aliases":["React.js","ReactJS"],"seeAlso":["Next.js","TypeScript","Vite","Tailwind"]},{"term":"Vite","plain":"A development tool that makes building React apps dramatically faster — it reloads changes in the browser almost instantly while you're working.","category":"tech-stack","aliases":["Vite.js"],"seeAlso":["React","TypeScript"]},{"term":"Tailwind","plain":"A CSS toolkit that lets developers style web pages by adding short descriptive words directly in the code, instead of writing separate style sheets.","category":"tech-stack","aliases":["Tailwind CSS","TailwindCSS"],"seeAlso":["React","Next.js"]},{"term":"TypeScript","plain":"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.","category":"tech-stack","aliases":["TS"],"seeAlso":["React","Node.js","Drizzle"]},{"term":"Node.js","plain":"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.","category":"tech-stack","aliases":["Node","NodeJS"],"seeAlso":["TypeScript","Next.js"]},{"term":"Swift","plain":"Apple's programming language for building apps on Mac, iPhone, and iPad — fast, safe, and designed specifically for Apple devices.","category":"tech-stack","aliases":["Swift language"],"seeAlso":["SwiftUI","Vapor"]},{"term":"SwiftUI","plain":"Apple's modern framework for describing what a Mac or iPhone app's interface looks like and how it behaves, using straightforward, readable code.","category":"tech-stack","aliases":["Swift UI"],"seeAlso":["Swift","Vapor"]},{"term":"Vapor","plain":"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.","category":"tech-stack","aliases":["Vapor framework","Swift Vapor"],"seeAlso":["Swift","PostgreSQL","Cloud Run"]},{"term":"PostgreSQL","plain":"A powerful open-source database that stores all structured data — user accounts, records, relationships — and is known for being reliable and feature-rich.","category":"tech-stack","aliases":["Postgres","PSQL","pg"],"seeAlso":["Cloud SQL","Drizzle"]},{"term":"Next.js","plain":"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.","category":"tech-stack","aliases":["NextJS","Next"],"seeAlso":["React","Node.js","Tailwind"]},{"term":"Drizzle","plain":"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.","category":"tech-stack","aliases":["Drizzle ORM","ORM"],"seeAlso":["PostgreSQL","TypeScript"]}],"ai":[{"term":"MCP","plain":"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.","category":"ai","aliases":["Model Context Protocol"],"seeAlso":["MCP Server","Claude","LLM"]},{"term":"MCP Server","plain":"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.","category":"ai","aliases":["MCP connector","MCP integration"],"seeAlso":["MCP","Claude"]},{"term":"Claude","plain":"Anthropic's AI assistant — the one writing this glossary — used across TLP for coding, writing, research, and running automated agent tasks.","category":"ai","aliases":["Claude AI","Anthropic Claude"],"seeAlso":["LLM","MCP","Token","Context window"]},{"term":"Playwright","plain":"A tool that can control a web browser programmatically — TLP uses it to let AI assistants visit websites, click buttons, and extract information automatically.","category":"ai","aliases":["Microsoft Playwright","Browser automation"],"seeAlso":["MCP Server"]},{"term":"LLM","plain":"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.","category":"ai","aliases":["Large Language Model","AI model","Foundation model"],"seeAlso":["Claude","Token","Context window"]},{"term":"Token","plain":"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.","category":"ai","aliases":["AI token","Token count"],"seeAlso":["LLM","Context window"]},{"term":"Context window","plain":"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.","category":"ai","aliases":["Context length","Context limit","Window size"],"seeAlso":["LLM","Token","Claude"]}],"tlp":[{"term":"TLP","plain":"The Launch Pad — the organisation that owns, builds, and operates all the projects described in this dashboard.","category":"tlp","aliases":["The Launch Pad","thelaunchpadtlp"],"seeAlso":["Universe","rawrnot","OpenClaw"]},{"term":"Universe","plain":"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.","category":"tlp","aliases":["TLP Universe","The Universe"],"seeAlso":["TLP","universe-infrastructure"]},{"term":"OpenClaw","plain":"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.","category":"tlp","aliases":["OpenClaw suite","OpenClaw apps"],"seeAlso":["Swift","SwiftUI","1D3","FLOU"]},{"term":"rawrnot","plain":"TLP's flagship creative platform — nicknamed \"The Digital Apex\" — a dual-aesthetic website where users publish and discover raw creative work.","category":"tlp","aliases":["raw'r'not","Rawrnot","The Digital Apex"],"seeAlso":["Vapor","React","GCP","Cloud Run"]},{"term":"Glasshouse","plain":"TLP's editorial briefing site — a polished publication-style web app used for internal communications, creative briefings, and editorial content.","category":"tlp","aliases":["Glasshouse site","glasshouse"],"seeAlso":["Hyperapp","Cloud Run"]},{"term":"Hyperapp","plain":"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.","category":"tlp","aliases":["hyperapp"],"seeAlso":["Glasshouse","Cloud Run","GCP"]},{"term":"1D3","plain":"The nickname for TLP's external hard drive where all the OpenClaw native app projects live locally during development — the \"D\" stands for \"Drive.\"","category":"tlp","aliases":["1D3 drive","1D3 volume"],"seeAlso":["OpenClaw","FLOU"]},{"term":"HANDOFF.md","plain":"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.","category":"tlp","aliases":["HANDOFF","handoff file"],"seeAlso":["CLAUDE.md"]},{"term":"CLAUDE.md","plain":"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.","category":"tlp","aliases":["claude.md","Claude instructions"],"seeAlso":["HANDOFF.md"]}]},"entries":[{"term":"CI","plain":"An automatic safety check that runs every time someone saves code, making sure nothing is broken before it goes any further.","category":"deployment","aliases":["Continuous Integration"],"seeAlso":["CD","Pipeline"]},{"term":"CD","plain":"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.","category":"deployment","aliases":["Continuous Deployment","Continuous Delivery"],"seeAlso":["CI","Pipeline","Deploy"]},{"term":"Deploy","plain":"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.\"","category":"deployment","aliases":["Deployment","Release","Ship"],"seeAlso":["Build","Pipeline","Cloud Run"]},{"term":"Build","plain":"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.","category":"deployment","aliases":["Build step","Compile"],"seeAlso":["Pipeline","Docker"]},{"term":"Pipeline","plain":"A series of automatic steps that code travels through — tests, safety checks, assembly, and publishing — before it reaches real users.","category":"deployment","aliases":["CI/CD Pipeline","Build pipeline"],"seeAlso":["CI","CD","Deploy"]},{"term":"Docker","plain":"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.","category":"deployment","aliases":["Container","Docker container","Docker image"],"seeAlso":["Cloud Run","Artifact Registry","Build"]},{"term":"Cloud Run","plain":"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.","category":"deployment","aliases":["Google Cloud Run"],"seeAlso":["Docker","GCP","Region"]},{"term":"Artifact Registry","plain":"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.","category":"deployment","aliases":["Google Artifact Registry","Container Registry"],"seeAlso":["Docker","Cloud Run","GCP"]},{"term":"GCP","plain":"Google's collection of cloud services — servers, databases, storage, networking, and more — that TLP rents instead of owning physical hardware.","category":"cloud","aliases":["Google Cloud Platform","Google Cloud"],"seeAlso":["Cloud Run","Cloud SQL","Secret Manager","IAM"]},{"term":"Cloud SQL","plain":"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.","category":"cloud","aliases":["Google Cloud SQL"],"seeAlso":["PostgreSQL","GCP"]},{"term":"API","plain":"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.","category":"cloud","aliases":["Application Programming Interface","Endpoint","REST API"],"seeAlso":["MCP","Service Account"]},{"term":"Service Account","plain":"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.","category":"cloud","aliases":["SA","GCP Service Account"],"seeAlso":["SA Key","IAM","GCP"]},{"term":"SA Key","plain":"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.","category":"cloud","aliases":["Service Account Key","SA credential","JSON key"],"seeAlso":["Service Account","Secret Manager"]},{"term":"Secret Manager","plain":"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.","category":"cloud","aliases":["Google Secret Manager","Secrets vault"],"seeAlso":["SA Key","GCP","IAM"]},{"term":"IAM","plain":"Google Cloud's permission system — it controls exactly who (or what automated system) is allowed to do what inside your cloud account.","category":"cloud","aliases":["Identity and Access Management","GCP IAM","Permissions"],"seeAlso":["Service Account","GCP"]},{"term":"Cloud Run Service","plain":"A live, publicly accessible web service running on Google's infrastructure that automatically handles more traffic when busy and costs nothing when idle.","category":"cloud","aliases":["Cloud Run deployment","Managed service"],"seeAlso":["Cloud Run","Docker","Region"]},{"term":"Region","plain":"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.","category":"cloud","aliases":["Cloud region","Data centre region"],"seeAlso":["GCP","Cloud Run"]},{"term":"GitHub","plain":"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.","category":"code","aliases":["Git hosting","Source control host"],"seeAlso":["Repo","Commit","Branch","PR"]},{"term":"Repo","plain":"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.","category":"code","aliases":["Repository","Codebase","Git repo"],"seeAlso":["GitHub","Commit","Branch"]},{"term":"Commit","plain":"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.","category":"code","aliases":["Git commit","Checkpoint","Change set"],"seeAlso":["Branch","PR","Repo"]},{"term":"Branch","plain":"A separate copy of the code where you can work on a new feature or fix without affecting the version everyone else is using.","category":"code","aliases":["Git branch","Feature branch"],"seeAlso":["Main branch","PR","Merge"]},{"term":"PR","plain":"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.","category":"code","aliases":["Pull Request","Merge request"],"seeAlso":["Branch","Merge","Main branch"]},{"term":"Merge","plain":"Combining the changes from one branch into another — the final step that brings completed work into the main codebase.","category":"code","aliases":["Git merge","Merge in"],"seeAlso":["PR","Branch","Main branch"]},{"term":"Main branch","plain":"The primary, production-ready version of the code — what gets deployed to real users and what every other branch is eventually merged back into.","category":"code","aliases":["main","master","trunk"],"seeAlso":["Branch","Merge","Deploy"]},{"term":"React","plain":"The JavaScript library TLP uses to build interactive web pages — it breaks the page into reusable pieces (components) that update automatically when data changes.","category":"tech-stack","aliases":["React.js","ReactJS"],"seeAlso":["Next.js","TypeScript","Vite","Tailwind"]},{"term":"Vite","plain":"A development tool that makes building React apps dramatically faster — it reloads changes in the browser almost instantly while you're working.","category":"tech-stack","aliases":["Vite.js"],"seeAlso":["React","TypeScript"]},{"term":"Tailwind","plain":"A CSS toolkit that lets developers style web pages by adding short descriptive words directly in the code, instead of writing separate style sheets.","category":"tech-stack","aliases":["Tailwind CSS","TailwindCSS"],"seeAlso":["React","Next.js"]},{"term":"TypeScript","plain":"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.","category":"tech-stack","aliases":["TS"],"seeAlso":["React","Node.js","Drizzle"]},{"term":"Node.js","plain":"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.","category":"tech-stack","aliases":["Node","NodeJS"],"seeAlso":["TypeScript","Next.js"]},{"term":"Swift","plain":"Apple's programming language for building apps on Mac, iPhone, and iPad — fast, safe, and designed specifically for Apple devices.","category":"tech-stack","aliases":["Swift language"],"seeAlso":["SwiftUI","Vapor"]},{"term":"SwiftUI","plain":"Apple's modern framework for describing what a Mac or iPhone app's interface looks like and how it behaves, using straightforward, readable code.","category":"tech-stack","aliases":["Swift UI"],"seeAlso":["Swift","Vapor"]},{"term":"Vapor","plain":"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.","category":"tech-stack","aliases":["Vapor framework","Swift Vapor"],"seeAlso":["Swift","PostgreSQL","Cloud Run"]},{"term":"PostgreSQL","plain":"A powerful open-source database that stores all structured data — user accounts, records, relationships — and is known for being reliable and feature-rich.","category":"tech-stack","aliases":["Postgres","PSQL","pg"],"seeAlso":["Cloud SQL","Drizzle"]},{"term":"Next.js","plain":"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.","category":"tech-stack","aliases":["NextJS","Next"],"seeAlso":["React","Node.js","Tailwind"]},{"term":"Drizzle","plain":"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.","category":"tech-stack","aliases":["Drizzle ORM","ORM"],"seeAlso":["PostgreSQL","TypeScript"]},{"term":"MCP","plain":"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.","category":"ai","aliases":["Model Context Protocol"],"seeAlso":["MCP Server","Claude","LLM"]},{"term":"MCP Server","plain":"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.","category":"ai","aliases":["MCP connector","MCP integration"],"seeAlso":["MCP","Claude"]},{"term":"Claude","plain":"Anthropic's AI assistant — the one writing this glossary — used across TLP for coding, writing, research, and running automated agent tasks.","category":"ai","aliases":["Claude AI","Anthropic Claude"],"seeAlso":["LLM","MCP","Token","Context window"]},{"term":"Playwright","plain":"A tool that can control a web browser programmatically — TLP uses it to let AI assistants visit websites, click buttons, and extract information automatically.","category":"ai","aliases":["Microsoft Playwright","Browser automation"],"seeAlso":["MCP Server"]},{"term":"LLM","plain":"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.","category":"ai","aliases":["Large Language Model","AI model","Foundation model"],"seeAlso":["Claude","Token","Context window"]},{"term":"Token","plain":"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.","category":"ai","aliases":["AI token","Token count"],"seeAlso":["LLM","Context window"]},{"term":"Context window","plain":"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.","category":"ai","aliases":["Context length","Context limit","Window size"],"seeAlso":["LLM","Token","Claude"]},{"term":"TLP","plain":"The Launch Pad — the organisation that owns, builds, and operates all the projects described in this dashboard.","category":"tlp","aliases":["The Launch Pad","thelaunchpadtlp"],"seeAlso":["Universe","rawrnot","OpenClaw"]},{"term":"Universe","plain":"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.","category":"tlp","aliases":["TLP Universe","The Universe"],"seeAlso":["TLP","universe-infrastructure"]},{"term":"OpenClaw","plain":"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.","category":"tlp","aliases":["OpenClaw suite","OpenClaw apps"],"seeAlso":["Swift","SwiftUI","1D3","FLOU"]},{"term":"rawrnot","plain":"TLP's flagship creative platform — nicknamed \"The Digital Apex\" — a dual-aesthetic website where users publish and discover raw creative work.","category":"tlp","aliases":["raw'r'not","Rawrnot","The Digital Apex"],"seeAlso":["Vapor","React","GCP","Cloud Run"]},{"term":"Glasshouse","plain":"TLP's editorial briefing site — a polished publication-style web app used for internal communications, creative briefings, and editorial content.","category":"tlp","aliases":["Glasshouse site","glasshouse"],"seeAlso":["Hyperapp","Cloud Run"]},{"term":"Hyperapp","plain":"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.","category":"tlp","aliases":["hyperapp"],"seeAlso":["Glasshouse","Cloud Run","GCP"]},{"term":"1D3","plain":"The nickname for TLP's external hard drive where all the OpenClaw native app projects live locally during development — the \"D\" stands for \"Drive.\"","category":"tlp","aliases":["1D3 drive","1D3 volume"],"seeAlso":["OpenClaw","FLOU"]},{"term":"HANDOFF.md","plain":"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.","category":"tlp","aliases":["HANDOFF","handoff file"],"seeAlso":["CLAUDE.md"]},{"term":"CLAUDE.md","plain":"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.","category":"tlp","aliases":["claude.md","Claude instructions"],"seeAlso":["HANDOFF.md"]}]}