The shared knowledge base for the 7Mind engineering system. Published at brain.6mind.de.
What this is
7Mind Brain is a centralized wiki that gives everyone (engineers, AI agents, and new team members) a single place to understand how 7Mind’s system fits together.
Individual repositories contain the code. This wiki contains the context that code alone cannot explain: what each repo does, how repos connect, how the company positions its product, and how the infrastructure is wired.
Who reads it
Engineers use it to orient quickly when touching unfamiliar parts of the system.
AI agents (Claude Code instances running inside each repo) pull this wiki before tasks that require cross-repo context. Every repo has a CLAUDE.md that points here.
How it is organized
The wiki has two layers:
Business intelligence (business/)
Everything about the company and its product.
| Section | What it covers |
|---|---|
product/ | What 7Mind is, its markets, strategic direction |
brand/ | Visual identity, voice, and tone |
customers/ | B2C, B2B, and B2B2C segment notes |
processes/ | Internal workflows (release, oncall, etc.) |
Technical intelligence (tech/)
Everything about the engineering system.
| Section | What it covers |
|---|---|
repos/ | One note per repository — purpose, stack, deployment, integrations |
concepts/ | Architectural patterns and service configurations that span multiple repos |
packages/ | Shared NPM packages |
infrastructure/ | GCP, Cloudflare, Terraform, GitHub Actions |
integrations/ | Cross-repo data flows and connection patterns |
Where to start
- New to the product? Read product-overview.
- Touching the backend? Read elixir-backend.
- Touching the mobile app? Read 7mind-mobile-apps-monorepo.
- Touching the website? Read nuxt-website.
- Changing infrastructure? Read infra-overview first.
- Agent? Read STRUCTURE before doing anything else.
Onboarding a new repository
When a new repo joins the system, run the onboarding prompt stored at repo-onboarding-prompt.
- Open a Claude Code session inside the target repository (not inside the brain repo).
- Open
tech/repo-onboarding-prompt.mdand copy everything below the second horizontal rule. - Paste it as your first message. Claude will explore the codebase, populate the repo note, create concept pages, and commit the result.
Conventions
All conventions (naming rules, frontmatter schema, agent write protocol, commit message format) live in STRUCTURE. That file is the contract everyone follows.