A single-binary declarative agent runtime. No code. No dependencies. Just intelligence.
NOT7 is a config-driven agent runtime delivered as a single binary. Agents are defined as declarative JSON configurations and executed with zero dependencies. No programming languages. No installations. Just drop the binary, declare your agent in JSON, and run.
βββββββββββββββββββββββββββββββββ
β USER / DEVELOPER β
βββββββββββββββββ¬ββββββββββββββββ
β
βββββββββββββββββββββββββββββββββ
β JSON Agent Definition β
β (nodes, routes, config) β
βββββββββββββββββ¬ββββββββββββββββ
β
βββββββββββββββββββββββββββββββββ
β NOT7 CORE RUNTIME β
β Executor Engine β
βββββββββββββββββ¬ββββββββββββββββ
β
βββββββββββββββββββββΌββββββββββββββββββββ
β β β
βββββββββββββββββ ββββββββββββββββββ βββββββββββββββββ
β LLM Provider β β Tool Providers β β Storage β
β β β β β β
β - OpenAI β β - Native β β - Executions β
β - GPT-4/3.5 β β - Arcade β β - Traces β
β β β (Gmail, Maps)β β - Logs β
βββββββββββββββββ ββββββββββββββββββ βββββββββββββββββ
Today's agentic landscape is fragmented and inaccessible. Frameworks like LangGraph and LangChain are powerful but language-dependent - you must write Python or Node.js code. Installation is complex, dependencies break, and despite how fascinating and useful these tools are, non-technical users cannot easily get started. The barrier to entry remains high.
On the other end of the spectrum, no-code platforms (n8n, Zapier, Make) promise simplicity but deliver rigidity. You define workflows through visual interfaces, which seems appealing until you realize you're locked into that vendor's abstractions. Over time, your agents become tightly coupled to proprietary systems. There's no neutral ground - nothing that's both simple AND extensible.
The industry needs something between these extremes. Not too technical and program-dependent on one side. Not too rigid and vendor-locked on the other. A sweet spot that is:
- Declarative (like no-code simplicity)
- Simple (anyone can read JSON)
- Extensible (anyone can build UIs or tooling on top)
- LLM-compatible (AI can generate and evolve specs, vs having to generate the whole python / node projects)
If you look at the integration and ESB space in the past, they got something fundamentally right: transparent XML or JSON-based workflow definitions. You could open the file, read it, understand it, debug it. The definition WAS the documentation.
Current agentic frameworks abandoned this clarity. They've built hidden graph abstractions that become black boxes. Complex internal state machines, opaque routing logic, workflows you can't easily inspect. When something goes wrong, you're debugging code, not reading specifications.
NOT7 returns to the integration platform philosophy: transparent, declarative definitions. But we evolve it further. Instead of static workflow definitions, we embrace evolution through versioning. Different JSON versions become your visibility layer. Each version is a complete, inspectable snapshot. Want to know why your agent behaved differently? Compare v3 to v5. Want to debug? Read the JSON. Want to understand evolution? Trace through versions.
The versioning IS the intelligence. The transparency IS the debuggability.
This is the evolutionary next stage of integration platforms - applied to agentic systems. Taking what worked (transparent definitions) and adding what's needed (evolutionary optimization).
Config-Driven Single binary with simple configuration file. No programming languages to install.
Declarative JSON Agents are pure JSON specifications. No code required.
LLM-Native JSON specs are trivial for LLMs to generate. AI writes specs, NOT7 executes them.
Multi-Tool Orchestration Use multiple tool providers in a single agent. Each node can have its own toolkit configuration.
Transparent Evolution Version your agent specs. See exactly how your agent evolved from v1 to v10.
Production Ready Server mode with HTTP API and deploy folder watching. Structured logging for observability.
Zero Dependencies Download one binary and run. Works on macOS, Linux, Windows.
macOS (Apple Silicon):
curl -L https://github.com/not7/core/raw/main/dist/not7-darwin-arm64 -o not7
chmod +x not7
cp not7.conf.example not7.conf
# Edit not7.conf: Add your OPENAI_API_KEY
./not7 run examples/camera-research.jsonmacOS (Intel) / Linux / Windows: See dist/ folder for other platform binaries.
Try the Arcade Integration (Google Maps + Gmail):
# Setup Arcade.dev credentials in not7.conf
# ARCADE_API_KEY=your-key
# ARCADE_USER_ID=your-user-id
# Authorize Google services
./not7 authorize
# Run lunch recommendations demo (update email in JSON first!)
./not7 run examples/arcade-lunch-demo.jsonThat's it! The agent executes and generates output.
NOT7 provides a full REST API for managing and executing agents.
Deploy Agent (without executing):
POST /api/v1/agents
Content-Type: application/json
{
"id": "my-agent",
"version": "1.0.0",
"goal": "Do something",
"nodes": [...],
"routes": [...]
}List All Agents:
GET /api/v1/agentsGet Agent:
GET /api/v1/agents/{id}Update Agent:
PUT /api/v1/agents/{id}
Content-Type: application/json
{ ...updated agent spec... }Delete Agent:
DELETE /api/v1/agents/{id}Execute Deployed Agent:
POST /api/v1/agents/{id}/runExecute Anonymous Agent (no save):
POST /api/v1/agents/run
Content-Type: application/json
{ ...agent spec... }# 1. Deploy an agent
curl -X POST http://localhost:8080/api/v1/agents \
-H "Content-Type: application/json" \
-d @examples/poem-generator.json
# 2. List agents
curl http://localhost:8080/api/v1/agents
# 3. Run agent (can trigger multiple times)
curl -X POST http://localhost:8080/api/v1/agents/poem-generator/run
# 4. Update agent
curl -X PUT http://localhost:8080/api/v1/agents/poem-generator \
-H "Content-Type: application/json" \
-d @examples/poem-generator-v2.json
# 5. Delete agent
curl -X DELETE http://localhost:8080/api/v1/agents/poem-generatorSimple poem generator:
poem-generator.json:
{
"version": "1.0.0",
"goal": "Generate a poem about AI agents",
"config": {
"llm": {
"provider": "openai",
"model": "gpt-4",
"temperature": 0.9
}
},
"nodes": [
{
"id": "generate_poem",
"type": "llm",
"prompt": "Write a creative poem about AI agents...",
"output_format": "text"
}
],
"routes": [
{"from": "start", "to": "generate_poem"},
{"from": "generate_poem", "to": "end"}
]
}Run:
not7 run poem-generator.jsonOutput:
NOT7 - Agent Runtime
====================
π Loading spec: poem-generator.json
β Spec loaded successfully
π Starting agent: Generate a poem about AI agents
π Version: 1.0.0
βοΈ Executing node: Generate Poem About Agents (llm)
β Completed in 2850ms (cost: $0.0275)
β
Execution completed in 2850ms
π° Total cost: $0.0275
π Output:
βββββββββββββββββββββββββββββββββββββ
[Your generated poem appears here]
βββββββββββββββββββββββββββββββββββββ
πΎ Results saved to: poem-generator.json.result.json
- Go 1.21 or higher
- Make
git clone https://github.com/not7/core.git
cd core
cp not7.conf.example not7.conf
# Edit not7.conf with your API key
make build
./not7 run examples/poem-generator.jsonmake build-allCreates binaries in dist/ for macOS, Linux, Windows.
β Arcade.dev Integration (Available Now)
NOT7 integrates with Arcade.dev for pre-built tool integrations:
- Gmail - Send, draft, search, delete emails
- Google Calendar, Maps, Contacts, Docs, Drive, Sheets, Slides - Full suite of Google services
- Per-Node Toolkit Configuration - Use multiple toolkits in a single agent
{
"config": {
"tools": {
"provider": "arcade-gmail"
}
},
"nodes": [{
"type": "react",
"tools_enabled": true,
"react_goal": "Send an email summarizing the analysis"
}]
}Use different toolkits in different nodes:
{
"config": {
"llm": {
"provider": "openai",
"model": "gpt-4o"
}
},
"nodes": [
{
"id": "find-restaurants",
"type": "react",
"tools_enabled": true,
"config": {
"tools": {
"provider": "arcade-googlemaps"
}
},
"react_goal": "Find 3 lunch restaurants in San Francisco"
},
{
"id": "format-email",
"type": "llm",
"prompt": "Format the restaurant list as a clean email"
},
{
"id": "send-email",
"type": "tool",
"config": {
"tools": {
"provider": "arcade-gmail"
}
},
"tool_name": "SendEmail",
"tool_arguments": {
"recipient": "user@example.com",
"subject": "Lunch Recommendations",
"body": "{{input}}"
}
}
],
"routes": [
{"from": "start", "to": "find-restaurants"},
{"from": "find-restaurants", "to": "format-email"},
{"from": "format-email", "to": "send-email"},
{"from": "send-email", "to": "end"}
]
}Multi-Toolkit Workflow:
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Agent: Lunch Recommendations β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β β
β Node 1: find-restaurants β
β βββββββββββββββββββββββββββββββββββ β
β β Type: react β β
β β Tools: arcade-googlemaps βββββββΌβββ Google Maps API β
β β Goal: Find 3 restaurants β β
β βββββββββββββββββββββββββββββββββββ β
β β β
β Node 2: format-email β
β βββββββββββββββββββββββββββββββββββ β
β β Type: llm β β
β β Provider: OpenAI βββββββΌβββ OpenAI API β
β β Prompt: Format nicely β β
β βββββββββββββββββββββββββββββββββββ β
β β β
β Node 3: send-email β
β βββββββββββββββββββββββββββββββββββ β
β β Type: tool β β
β β Tools: arcade-gmail βββββββΌβββ Gmail API β
β β Tool: SendEmail β β
β βββββββββββββββββββββββββββββββββββ β
β β β
β Output: Email sent with recommendations β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
3 Nodes Γ 3 Different Providers = Multi-Toolkit Orchestration
Key Features:
- Node-level override: Each node can specify its own toolkit
- Tool manager pooling: Same toolkit reused across nodes (efficient)
- arcade-{toolkit} pattern: Clear, explicit toolkit naming (e.g.,
arcade-gmail,arcade-googlemaps)
Setup:
# Add to not7.conf
ARCADE_API_KEY=your-api-key
ARCADE_USER_ID=your-user-id
# Authorize (one-time interactive OAuth)
./not7 authorizeTool Integration - Next Steps MCP protocol support for external tools (databases, APIs, file systems)
Dynamic Routing
LLM-driven path selection at runtime for autonomous agent flow
Scale & Performance
Parallel execution and concurrent agent processing
Provider Ecosystem
Support for multiple LLM providers (Anthropic, local models, custom endpoints)
Production Hardening
Security, Agent authorization, rate limiting, monitoring capabilities
MIT License - see LICENSE file for details.
Willing to contribute ? Or Learn ? Ping me - https://www.linkedin.com/in/gnanaguru/

