Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ Frameworks and product surfaces for creating agents, teams, workflows, chatflows
- [SIDJUA](https://www.sidjua.com/) ([GitHub](https://github.com/GoetzKohlberg/sidjua)) - Governance-first AI agent orchestration platform where policy, approval, budget, classification, and audit checks run before agent actions execute.
- [Sim](https://www.sim.ai/) ([GitHub](https://github.com/simstudioai/sim)) - Open-source AI agent platform for building agents with integrations, workflows, knowledge bases, and docs.
- [SwarmClaw](https://www.swarmclaw.ai/) ([GitHub](https://github.com/swarmclawai/swarmclaw)) - Self-hosted AI agent runtime for autonomous agents, delegated work, schedules, provider management, and chat-platform connectors.
- [NarraNexus](https://github.com/NetMindAI-Open/NarraNexus) - Open-source AI agent team workspace by NetMind.AI whose agents remember, collaborate, and use tools from day one.

## Coordination And Team Systems

Expand Down
51 changes: 51 additions & 0 deletions src/data/orchestrators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,10 @@ const vibeKanbanScreenshots = [
screenshot("vibe-kanban", "Vibe Kanban", "Vibe Kanban website", "https://vibekanban.com/")
];

const narranexusScreenshots = [
screenshot("narranexus", "NarraNexus", "NarraNexus GitHub repository", "https://github.com/NetMindAI-Open/NarraNexus")
];

const augmentIntentScreenshots = [
screenshot("augment-intent", "Augment Code Intent", "Augment Code Intent page", "https://www.augmentcode.com/product/intent")
];
Expand Down Expand Up @@ -2119,5 +2123,52 @@ export const orchestrators: OrchestratorEntry[] = [
}
]
}
},
{
slug: "narranexus",
rank: 27,
title: "NarraNexus",
githubRepo: "NetMindAI-Open/NarraNexus",
accent: "cyan",
mark: {
kind: "monogram",
value: "NN",
label: "NarraNexus monogram"
},
summary:
"An open-source AI agent team workspace by NetMind.AI whose agents remember, collaborate, and use tools from day one.",
note:
"Centers orchestration on ready-to-run agent teams: memory-aware agents with persistent context, multi-agent collaboration between PM, developer, deployment, research, and custom agents, composable capabilities, and Matrix-based communication.",
overview: [
"NarraNexus is an open-source AI agent team workspace by NetMind.AI. It is not another framework for wiring agents together, but a team of agents that already remember, collaborate, and use tools from day one.",
"It belongs in Open Orchestrators because it provides a complete multi-agent operating environment: agents with persistent memory across sessions, multi-agent collaboration, composable capabilities (Memory, Awareness, Chat, RAG, Jobs, Skills, Social Network, Matrix), MCP tool integrations, and cloud/macOS/local deployment options."
],
bestFor: ["Ready-to-run agent teams", "Persistent multi-agent workspaces", "Agent collaboration with memory"],
tags: ["multi-agent", "memory", "collaboration", "MCP", "open-source"],
links: [
{
label: "Website",
href: "https://github.com/NetMindAI-Open/NarraNexus",
emphasis: "primary"
},
{
label: "GitHub",
href: "https://github.com/NetMindAI-Open/NarraNexus"
},
{
label: "Portal",
href: "https://www.narra.nexus/"
}
],
screenshots: narranexusScreenshots,
agentAnalytics: agentAnalyticsSection(
"narranexus",
"NarraNexus",
"NarraNexus gives teams a ready-to-run agent workspace where agents collaborate with persistent memory. Agent Analytics measures whether the agent-driven changes move real users afterward.",
["a NarraNexus agent team collaborates on a website, docs, onboarding flow, product surface, or experiment", "the changed surface reports visits, sources, CTA clicks, signup, activation, retention, or task-completion events to Agent Analytics", "a NarraNexus agent fetches Agent Analytics results after the change ships", "the agent team updates its next task from measured user behavior"],
"Instrument the project surface that NarraNexus agents affect. Agent Analytics reads the reported web or product events; it does not replace NarraNexus internal logs or traces.",
"NarraNexus-managed page, docs path, traffic source, CTA click, signup, activation event, retention signal, or shipped experiment",
narranexusScreenshots
)
}
];