Skip to content

GE Knowledge Base

Welcome to the Growing Europe Knowledge Base - a living repository of learnings, patterns, and institutional knowledge.

Purpose

This wiki serves as the central memory for all GE agents and the human team. It captures:

  • Learnings from completed work
  • Patterns discovered during development
  • Client context and preferences
  • Project history and decisions
  • Process documentation for recurring tasks

Sections

Agents

Individual agent learnings, patterns, and gotchas. Each agent maintains their own knowledge base. Includes the TDD Pipeline specification agents (Aimée, Anna, Annegreet, Aydan, Antje, Ashley).

Clients

Client-specific knowledge including preferences, contacts, project history, and context.

Projects

Project-specific documentation including decisions, learnings, and postmortems.

Patterns

Reusable development patterns maintained by Annegreet (Knowledge Curator).

Infrastructure

Infrastructure knowledge including UpCloud, Kubernetes, Redis, and troubleshooting guides.

Processes

Standard operating procedures for common tasks like client onboarding, deployments, and incident response. Includes the TDD Pipeline documentation for specification-driven development.

Foundation & Infrastructure Baseline

Complete infrastructure audit baseline and architectural decisions. Establishes the reference point for all future audits.

Architecture Decisions

Architecture Decision Records (ADRs) documenting significant technical and architectural choices.

How to Use

For Agents

Agents can read and write to this wiki via standard filesystem operations:

from pathlib import Path

# Read a pattern
pattern_path = Path("/ge-ops/wiki/patterns/authentication/oauth2.md")
pattern_content = pattern_path.read_text()

# Add a learning
learning_path = Path("/ge-ops/wiki/agents/urszula/learnings.md")
with open(learning_path, "a") as f:
    f.write(f"\n## {datetime.now().isoformat()}\n\n{learning}\n")

For Humans

Browse this wiki via the web interface at http://localhost:8080 (dev) or the appropriate production URL.

Use the search function to find relevant information across all sections.

Maintenance

  • Agents automatically add learnings after completing work
  • Annegreet curates and organizes patterns
  • Dirk-Jan reviews and prunes outdated information
  • Git tracks all changes for audit trail

TDD Pipeline: - Anna - Formal Specification Agent - NEW - TDD Pipeline Process - Complete workflow documentation


Last updated: 2026-01-27