---
title: "Agently"
type: "tool"
slug: "agentera-agently"
canonical_url: "https://www.graphcanon.com/tools/agentera-agently"
github_url: "https://github.com/AgentEra/Agently"
homepage_url: "http://agently.tech"
stars: 1615
forks: 175
primary_language: "Python"
license: "Apache-2.0"
categories: ["llm-frameworks", "developer-tools"]
tags: ["llm-application", "llm-agent", "agent-based-framework", "agent"]
updated_at: "2026-07-07T18:46:29.831282+00:00"
---

# Agently

> GenAI Application Development Framework

Agently is a framework for developing AI applications, providing structured outputs and an observable workflow to ensure reliability in AI application development.

## Facts

- Repository: https://github.com/AgentEra/Agently
- Homepage: http://agently.tech
- Stars: 1,615 · Forks: 175 · Open issues: 13 · Watchers: 23
- Primary language: Python
- License: Apache-2.0
- Last pushed: 2026-07-07T06:25:39+00:00

## Categories

- [LLM Frameworks](/categories/llm-frameworks.md)
- [Developer Tools](/categories/developer-tools.md)

## Tags

llm-application, llm-agent, agent-based-framework, agent

## Related tools

- [ECC](/tools/affaan-m-ecc.md) - The agent harness performance optimization system (★ 226,962)
- [AutoGPT](/tools/significant-gravitas-autogpt.md) - AutoGPT: Build, Deploy, and Run AI Agents (★ 185,417)
- [ollama](/tools/ollama-ollama.md) - Get up and running with Kimi-K2.6, GLM-5.1, MiniMax, DeepSeek, gpt-oss, Qwen, Gemma and other models. (★ 175,659)
- [prompts.chat](/tools/f-prompts-chat.md) - The world's largest open-source prompt library for AI (★ 165,019)
- [transformers](/tools/huggingface-transformers.md) - 🤗 Transformers: the model-definition framework for state-of-the-art machine learning models (★ 162,347)
- [JavaGuide](/tools/snailclimb-javaguide.md) - Snailclimb/JavaGuide: 面试 & 后端通用面试指南，覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发 (★ 156,863)
- [open-webui](/tools/open-webui-open-webui.md) - User-friendly AI Interface (Supports Ollama, OpenAI API, ...) (★ 144,575)
- [awesome-llm-apps](/tools/shubhamsaboo-awesome-llm-apps.md) - 100+ AI Agent & RAG apps you can actually run — clone, customize, ship. (★ 116,702)

## README (excerpt)

```text
<img width="640" alt="Agently" src="https://github.com/user-attachments/assets/c645d031-c8b0-4dba-a515-9d7a4b0a6881" />

# Agently 4.1.3.9 - AI Application Runtime Framework

> Build AI service backends with structured outputs, observable Actions, runtime Skills, MCP capabilities, process streams, and recoverable workflows.

[English](https://github.com/AgentEra/Agently/blob/main/README.md) | [中文介绍](https://github.com/AgentEra/Agently/blob/main/README_CN.md)






<a href="https://doc.weixin.qq.com/forms/AIoA8gcHAFMAScAhgZQABIlW6tV3l7QQf">
<img alt="WeChat" src="https://img.shields.io/badge/WeChat%20Group-Join-brightgreen?logo=wechat&style=flat-square">
</a>

<p align="center">
  <b><a href="https://agently.tech/docs">Docs</a> · <a href="#quickstart">Quickstart</a> · <a href="#why-agently">Why Agently</a> · <a href="#core-capabilities">Capabilities</a> · <a href="#architecture">Architecture</a> · <a href="#ecosystem">Ecosystem</a></b>
</p>

---

## Who This README Is For

Agently is for teams moving from "the model can do it once" to "the application must do it reliably":

- product engineers building assistants, internal copilots, knowledge tools, operation workflows, or AI-backed APIs
- platform teams that need clear extension points for model providers, tools, MCP servers, sandboxes, workflows, and observability
- technical leads comparing AI frameworks for maintainability, explicit control, debuggability, and production handoff
- coding-agent users who want a framework whose recommended patterns can be encoded as reusable project guidance

The main design question is simple: how do you keep model behavior useful while still giving application code stable contracts, observable execution, and restart-safe workflow boundaries?

Agently 4.1.3.9 promotes Workspace retrieval and Session memory as shared
framework substrate: `workspace.retrieve(...)` packages record/file evidence
with keyword/tag candidates, optional vector/hybrid retrieval, structure-gated
rerank, refill, and compact model-hot projections; `SessionMemory` plus
`AgentlyMemory` stores durable `GLOBAL_MEMORY` and `SESSION_MEMORY` in
Workspace; AgentTask scoped retrieval uses the same retrieval substrate; and
public typing covers the new Workspace vector seam plus common dict payloads on
TaskBoard update helpers. Read the
[4.1.3.9 Release Notes](docs/en/development/release-notes-4.1.3.9.md),
[4.1.3.8 Release Notes](docs/en/development/release-notes-4.1.3.8.md),
[4.1.3.7 Release Notes](docs/en/development/release-notes-4.1.3.7.md),
[4.1.3.6 Release Notes](docs/en/development/release-notes-4.1.3.6.md),
[4.1.3.5 Release Notes](docs/en/development/release-notes-4.1.3.5.md),
[4.1.3.4 Release Notes](docs/en/development/release-notes-4.1.3.4.md),
[4.1.3.3 Release Notes](docs/en/development/release-notes-4.1.3.3.md),
[4.1.3.2 Release Notes](docs/en/development/release-notes-4.1.3.2.md),
[4.1.3.1 Release Notes](docs/en/development/release-notes-4.1.3.1.md), and
[4.1.3 Release Notes](docs/en/development/release-notes-4.1.3.md) for the full
release story.

## Why Agently

Many AI frameworks are strong at exploration or at assembling broad integration stacks. Agently is optimized for the engineering layer that makes model applications survive model changes, output drift, streaming UX, action execution, workflow signals, and service boundaries.

Agently is a good fit when you care about:

- **AI services should be runtime executions, not prompt glue** - one Agent execution can declare candidate Actions, Skills, MCP services, Dynamic Task planning, process streams, Workspace-backed retrieval, and output contracts, then execute through the same runtime surface. Read [4.1.3.9 Release Notes](docs/en/development/release-notes-4.1.3.9.md), [Agent Auto Orchestration examples](examples/agent_auto_orchestration/), and [Skills Executor examples](examples/skills_executor/).
- **Model switching should not rewrite business logic** - Agently normalizes provider setup, prompt slots, response p
```

---

**Machine-readable endpoints**

- JSON: [`/api/graphcanon/tools/agentera-agently`](/api/graphcanon/tools/agentera-agently)
- LLM index: [/llms.txt](/llms.txt)
- Full corpus: [/llms-full.txt](/llms-full.txt)

_GraphCanon - The knowledge graph for AI development. https://www.graphcanon.com/_
