Agience Core
An open, extensible runtime for agentic AI. Shared artifacts, structured state, and provenance by default.
Ask AI about Agience Core
Powered by Claude Β· Grounded in docs
I know everything about Agience Core. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
Agience
The operating system that AI workflows trust.
Agience turns AI-generated output into durable, governed knowledge artifacts with identity, provenance, and version history so humans and agents can safely collaborate on the same information substrate.
Why Agience
AI generates output. It doesn't create trust. Any LLM can produce summaries, drafts, and decisions at scale β but without identity and provenance, those outputs have no chain of custody and no reason for anyone downstream to build on them.
Agience is what turns AI output into something an organization can actually rely on. When an agent ingests a transcript, the result is a set of typed artifact objects β decisions, actions, constraints β committed into versioned collections under human review. The same object a human edits in the UI is the object an agent reads over MCP. Accountability follows from the architecture, not from policies or prompts.
Core Properties
Artifacts, not files. Every object β document, transcript, agent config, MCP server registration, collection entry β is an artifact. Typed content, structured context, stable ID, full version history, and a record of what produced it.
Human-in-the-loop is structural. Approval gates are first-class operators in any workflow, not a policy layer you bolt on later. The architecture enforces the boundary; it does not rely on prompts.
MCP-native throughout. Agience is both an MCP server (exposing tools to VS Code, Claude Desktop, Cursor, or any compatible client) and an MCP client (consuming GitHub, Slack, filesystem, and other vendor MCP servers).
Trust is declared, not assumed. Scoped API keys define exactly what each agent or server can read, write, or invoke. Identity comes from the auth token, never the request body. Delegated operations carry a record of who authorized them.
Provenance is infrastructure. Like a filesystem journal, provenance in Agience is structural. Committed artifacts carry records of what produced them, from what inputs, under whose authority. Not a premium feature β a consequence of how the system is built.
Composable agent servers. The platform ships with eight purpose-built MCP servers covering ingestion, retrieval, reasoning, output, networking, security, governance, and finance. Each is a standalone FastMCP service. Deploy the ones you need, replace the ones you don't.
The OS Analogy
| OS Concept | Agience |
|---|---|
| File records / inodes | Artifacts |
| Windows / explorer views | Cards (UI layer) |
| File extensions | MIME content types |
| Working directory | Workspace |
| Published filesystem | Collection |
| Save / publish | Commit |
| Kernel services | Core platform |
| Peripheral drivers | Agent persona servers |
| Third-party applications | External MCP servers |
| Processes / jobs | Agents / Operators |
| System calls | MCP tool calls |
| Filesystem indexer | OpenSearch |
| Capability-based access | Scoped API keys |
| Change journal | Provenance chain |
What Ships Today
- Artifact model β typed, versioned objects with stable IDs, full history, and graph relationships
- ArangoDB architecture β all artifact storage in ArangoDB; workspaces for ephemeral drafts, collections for committed versions
- Commit flow β explicit workspace β collection promotion; nothing published silently
- Hybrid search β BM25 + kNN vector search with RRF fusion, aperture filtering, and per-token semantic modifiers
- Multi-provider OAuth2 β Google, Microsoft Entra, Auth0, custom OIDC, username/password; RS256 JWT + scoped API keys
- MCP server β 11 tools at
/mcp; advertised via/.well-known/mcp.json; works in VS Code, Claude Desktop, Cursor - Agentic chat loop β chat artifacts with an 8-tool surface and multi-turn LLM loop
- Live stream ingestion β OBS β SRS β real-time AWS Transcribe; transcript artifacts committed on stream end
- S3/CloudFront media handling β direct browser-to-S3 presigned upload, signed CDN delivery, orphan cleanup
- Eight agent persona servers β Astra (ingestion), Sage (retrieval), Verso (reasoning), Aria (output), Nexus (comms), Atlas (governance), Seraph (security), Ophan (finance)
See ROADMAP.md for the full capability inventory and what's coming next.
Getting Started
Run Agience at Home (stable build)
No git clone needed. One command installs the full platform on your machine. Runs at https://home.agience.ai β that domain always resolves to 127.0.0.1, so traffic never leaves your machine. Caddy fetches the TLS certificate automatically.
Windows (PowerShell):
irm https://get.agience.ai/home/install.ps1 | iex
Linux / macOS:
curl -fsSL https://get.agience.ai/home/install.sh | sh
After that: agience up / agience down / agience update.
On a restricted network or prefer plain HTTP? The Local install runs at
http://localhost:8080with no domain or certificate required.irm https://get.agience.ai/local/install.ps1 | iexcurl -fsSL https://get.agience.ai/local/install.sh | sh
Developer Setup (build from source)
For contributors and developers who want to modify the platform:
git clone https://github.com/Agience/agience-core.git
cd agience-core
Windows:
agience dev -f --build
Linux / macOS:
./agience dev -f --build
This starts infrastructure in Docker, installs dependencies into a .venv, and launches the backend + frontend locally. The setup wizard handles OAuth and LLM configuration on first boot β no manual .env file required.
Full developer guide: docs/getting-started/local-development.md
Hosted
Sign up at agience.ai β no setup required.
Canary builds (contributors and testers)
Published on every merge to main. Not for production use.
Windows (PowerShell):
irm https://get.agience.ai/canary/install.ps1 | iex
Linux / macOS:
curl -fsSL https://get.agience.ai/canary/install.sh | sh
Architecture
βββββββββββββββββββββββββββββββββββββββ
β Presentation (React / Vite) β Cards, grid, windows, navigation
βββββββββββββββββββββββββββββββββββββββ
β registry
βββββββββββββββββββββββββββββββββββββββ
β Handlers (MCP Servers) β Type-specific viewers, tools, prompts
β Aria Β· Astra Β· Atlas Β· Sage β Served as ui:// MCP resources
β Nexus Β· Ophan Β· Seraph Β· Verso β Each a standalone FastMCP process
βββββββββββββββββββββββββββββββββββββββ
β MCP
βββββββββββββββββββββββββββββββββββββββ
β Core (FastAPI) β Type-agnostic platform services
β Auth Β· Artifacts Β· Workspaces β ArangoDB Β· OpenSearch
β Collections Β· Search Β· MCP infra β S3 Β· JWT Β· Scoped API keys
βββββββββββββββββββββββββββββββββββββββ
Architecture spec: .dev/features/layered-architecture.md
Repo layout
backend/ FastAPI Core β type-agnostic platform services
frontend/ React + Vite + Tailwind UI
servers/ First-party MCP persona servers
servers/_host/ Unified Docker mount for all personas
types/ Builtin MIME type definitions
hosts/ Desktop companion relay runtime
docker/ Compose files and Caddy config
docs/ Public-facing documentation
Documentation
| Platform Overview | What ships and how it fits together |
| Self-Hosting Guide | Deploy on your own infrastructure |
| MCP Setup | Connect VS Code, Claude Desktop, Cursor |
| Search Query Language | +required, ~semantic, type:, tag: operators |
| MCP Overview | Full MCP server and client architecture |
| ROADMAP.md | Shipped and in-progress capabilities |
| CONTRIBUTING.md | Contribution guidelines and CLA |
Contributing
Bug reports, documentation improvements, new agent tools, and thoughtful feature proposals are welcome.
- Read CONTRIBUTING.md and CLA.md
- Open an issue before writing code for new features
- Security issues β security@agience.ai (do not open a public issue)
License
Agience Core is licensed under the GNU Affero General Public License v3.0 (AGPL-3.0-only).
- Free use: open-source and AGPL-compliant deployments, including network-accessible services that share source
- Commercial license required: proprietary/closed-source use, managed services without source disclosure, OEM/embedded distribution, white-label use
See LICENSE.md.
