The Elevator Pitch
Nexus is a new way to build software where you write instructions in plain English, organize them in folders, and AI does the rest.
That's the simple version. Here's the deeper one.
The Problem Nexus Solves
Programming is powerful but exclusive. If you want to build software, you need to learn languages that computers understand — Python, JavaScript, whatever. These languages have strict rules. Miss a semicolon? Error. Misspell a keyword? Error.
Millions of people have ideas for software but can't build it because the barrier to entry is learning to speak Computer.
The Insight
What if the computer learned to speak Human instead?
That's what Large Language Models (like ChatGPT, Claude, etc.) enable. They understand natural language — actual English sentences — and can translate human intent into action.
Nexus takes this seriously. Like, really seriously.
How It Works
Imagine your computer's folder structure as a program.
MyProject/
├── instructions.md ← "Here's what I want to build"
├── context/
│ └── background.md ← "Here's what you need to know"
├── tasks/
│ ├── step-1.md ← "First, do this"
│ ├── step-2.md ← "Then, do this"
│ └── step-3.md ← "Finally, do this"
└── output/ ← Results appear here
In Nexus:
- Each
.mdfile contains instructions written in plain English - The folder structure defines scope and organization (just like code modules)
- An AI agent reads the whole thing and executes it
You're not "chatting" with an AI. You're programming it using folders and markdown files.
The Key Concepts
NLPL (Natural Language Programming Language)
The idea that natural language (English) + folder structure = a programming language.
- Folders = scope (like namespaces in code)
- Markdown files = instructions (like functions in code)
- AI = the compiler (it reads and executes)
Capsules
A folder that carries its own intelligence. It has a "contract" (a file explaining what it does) and can be moved, copied, or plugged into other systems. Like a portable little machine.
The Environment
In Nexus, the folder environment isn't just where you keep files. The environment IS the computer. The structure itself is the program.
Why This Matters
For Regular People: You could describe what you want in plain English, organize it logically in folders, and have AI build it. No learning Python. No syntax errors. Just clear instructions.
For Programmers: It's a new layer of abstraction. Instead of writing code directly, you write specifications in natural language. The AI handles implementation. You focus on what, not how.
For AI: It's a way to make AI agents more autonomous. Instead of chatting back and forth, you give them an environment with instructions. They live there and work.
Is This Real?
Yes. It's running right now. There's actual infrastructure:
- A job fabric (
nexusd) that queues and executes work - An agent daemon (
agentd) that runs AI agents - Real services processing real data
- A server (
nexus.pdlabs.dev) hosting it
This isn't theory. It's happening.
The Takeaway
- Nexus treats folder structure + markdown as a programming language
- AI agents read and execute these "natural language programs"
- The barrier to programming drops to "can you write clear instructions?"
- This is actually running, not just an idea