Skip to content

Atlas rethinks how system entities are identified. Query, validate, and visualize your system semantics as a single graph

License

Notifications You must be signed in to change notification settings

semantic-namespace/atlas

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Status: Proof of Concept (Alpha)

Atlas is in early development. APIs may change. Feedback welcome!

Atlas

"There is no reason to limit our specifications to what we can prove, yet that is primarily what type systems do. There is so much more we want to communicate and verify about our systems."

— clojure.org/about/spec

A semantic registry for software architecture. Describe your system's components, functions, and relationships using compound identities (sets of semantic aspects), then query, validate, and visualize your architecture as a single queryable graph.

The Problem

Understanding, maintaining, and communicating system design are constant challenges in any medium-to-large project. Complexity grows with every new feature, rule, or condition, eventually overwhelming developers with unmanageable cognitive load.

In most software systems, "identity" is bound to place - a thing's name implies where it lives (folder, file, namespace, memory address). This is an accident of hardware history, not a conceptual necessity.

What if identity was determined by semantics - what something means and how it relates to other things?

What Atlas Does

Atlas offers a semantic registry and tooling layer for software architecture: you describe components, functions, endpoints, protocols, and business concepts as compound identities (sets of aspects) plus structured properties - without thinking about implementation details.

;; A function's identity IS its semantic meaning
(registry/register!
  :fn/validate-token                    ; dev-id (for humans)
  :atlas/execution-function             ; entity type
  #{:domain/auth                        ; semantic aspects
    :operation/validate
    :tier/service}
  {:execution-function/context [:auth/token]
   :execution-function/response [:auth/valid? :auth/user-id]
   :execution-function/deps #{:component/oauth-provider}})

From this registry, Atlas can:

  • Query - Find all entities in :domain/auth, all :tier/service functions, etc.
  • Validate - Check that data flows are satisfiable, dependencies exist, tiers are respected
  • Visualize - Explore the semantic graph interactively
  • Document - Generate architecture docs from the registry

It's a data-first approach where the system's structure is queryable, visualizable, and validated via a shared ontology - rather than hard-coded diagrams or ad-hoc documentation.

Technical Approach

Atlas embraces Clojure namespaced keywords (like clojure.spec) and depends on a mutable global registry (also like clojure.spec). Beyond that, Atlas pursues two intents:

  1. Entities as Datalog facts - Represent your system entities (functions, components, endpoints, etc.) as Datalog facts, making them queryable via Datalog.

  2. Semantics as Datalog facts - Represent semantic relations as Datalog facts, so entities and their meanings become a single queryable graph.

Every identity and relation lives in a global registry that can be translated into a graph database, queryable via Datalog.

Quick Start

Installation

Add to your deps.edn:

{:deps {com.github.semantic-namespace/atlas {:mvn/version "0.0.1-SNAPSHOT"}}

Basic Usage

(require '[atlas.registry :as registry])
(require '[atlas.query :as query])
(require '[atlas.ontology :as ont])

;; Register entity types first
(ont/register-entity-types!)

;; Register a component
(registry/register!
  :component/database
  :atlas/structure-component
  #{:tier/foundation :domain/storage}
  {:component/provides [:db/query :db/transact]})

;; Register a function that uses it
(registry/register!
  :fn/get-user
  :atlas/execution-function
  #{:domain/users :tier/service}
  {:execution-function/context [:user/id]
   :execution-function/response [:user/data]
   :execution-function/deps #{:component/database}})

;; Register an API endpoint
(registry/register!
  :endpoint/get-user
  :atlas/interface-endpoint
  #{:domain/users :tier/api :http/get}
  {:endpoint/context [:http/path-params]
   :endpoint/response [:http/response]
   :endpoint/deps #{:fn/get-user}})

Querying

;; Find all entities in auth domain
(query/find-by-aspect @registry/registry :domain/auth)

;; Find by multiple aspects
(query/find-by-aspect @registry/registry #{:domain/users :tier/service})

;; Get an entity's semantic identity
(registry/identity-for :fn/get-user)
;; => #{:atlas/execution-function :domain/users :tier/service}

Checking Invariants

(require '[atlas.invariant :as inv])

;; Check all architectural invariants
(inv/check-all)

;; Get human-readable report
(inv/report)

Core Concepts

Compound Identity

Every entity has a compound identity - a set of qualified keywords:

#{:atlas/execution-function :domain/auth :operation/validate :tier/service}

This set is the entity's semantic meaning. It enables:

  • Multi-dimensional querying (find by any aspect combination)
  • Semantic similarity (how related are two entities?)
  • Architectural reasoning (what domains touch what tiers?)

Entity Types

Built-in types (register your own with :atlas/type):

  • :atlas/execution-function - Business logic functions
  • :atlas/interface-endpoint - API endpoints
  • :atlas/structure-component - Infrastructure components
  • :atlas/data-schema - Data structures
  • :atlas/interface-protocol - Protocols/interfaces

Data Flow

Functions declare what data they consume and produce:

{:execution-function/context [:user/id :auth/token]   ; inputs
 :execution-function/response [:user/data :user/roles] ; outputs
 :execution-function/deps #{:component/db}}            ; dependencies

Atlas validates that every input is produced somewhere and every output is consumed or terminal.

Tiers

Standard architectural tiers:

  • :tier/foundation - Components (DB, cache, external APIs)
  • :tier/service - Business logic functions
  • :tier/api - HTTP endpoints

Atlas enforces tier boundaries (services can't skip to foundation, etc.).

Tooling

POC Visual Explorer

Two interactive visualization modes for exploring semantic registries. Start from REPL or use shadow-cljs for development:

From REPL:

(require '[atlas.atlas-ui.server :as ui])

;; Version 1: Graph view (multi-aspect queries, lenses)
(ui/start! {:ui-version :v1})  ; Opens http://localhost:8082

;; Version 2: Dual map view (aspects + entities)
(ui/start! {:ui-version :v2})  ; Opens http://localhost:8082

Development with shadow-cljs:

cd ui

# Version 1 (port 8081)
npx shadow-cljs watch atlas-ui

# Version 2 (port 8083)
npx shadow-cljs watch atlas-ui-v2

Features: interactive querying, lens-based filtering, dependency analysis, shareable URLs.

See Visual Explorer docs for full documentation and development setup.

Emacs Integration (PoC)

Emacs transient menu

Explore registries directly from your editor via CIDER:

  (add-to-list 'load-path "..../semantic-namespace/atlas/emacs")
  (require 'atlas)
M-x atlas  ; Opens transient menu

Features: entity browsing, data flow tracing, invariant checking, completion.

Documentation

Example Applications

See test/app/ for complete examples:

  • calendar_availability.clj - Calendar system with OAuth, users, events
  • cart.clj - Shopping cart with sessions, payments
  • pet_shop.clj - Multi-domain system with external integrations

Development

Core Library

# Start REPL with everything loaded
clojure -M:dev

# Run tests
clojure -M:test

# Build JAR
clojure -T:build jar

Visual Explorer UI

See Visual Explorer docs for full setup. Quick start:

cd ui

# Install dependencies (first time only)
npm install

# Development with hot-reload
npx shadow-cljs watch atlas-ui    # v1 on port 8081
# or
npx shadow-cljs watch atlas-ui-v2  # v2 on port 8083

# Compile for production
npx shadow-cljs release atlas-ui
npx shadow-cljs release atlas-ui-v2

License

MIT - See LICENSE

Status & Roadmap

This is an early proof-of-concept exploring semantic approaches to architecture description. Current limitations:

  • API stability not guaranteed
  • Documentation in progress
  • Tooling (UI, Emacs) is experimental
  • Performance not yet optimized for large registries

Feedback, ideas, and contributions welcome!

About

Atlas rethinks how system entities are identified. Query, validate, and visualize your system semantics as a single graph

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published