You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-13Lines changed: 14 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,10 +66,10 @@ so that your agent can be more stable and provide greater value to your users.
66
66
# 🌲 Core Concepts
67
67
68
68
-[**Session**](https://docs.acontext.io/store/messages/multi-provider) - A conversation thread that stores messages with multi-modal support.
69
-
-[**Task**](https://docs.acontext.io/observe/agent_tasks) - extracted automatically from conversations. Tasks move through `pending` → `running` → `success`/`failed` states.
69
+
-[**Task Agent**](https://docs.acontext.io/observe/agent_tasks) - Background TODO agent that collect task' status, progress and preferences.
70
70
-[**Disk**](https://docs.acontext.io/store/disk) - File storage for agent artifacts.
71
-
-[**Space**](https://docs.acontext.io/learn/skill-space) - A knowledge repository (like Notion) for agent, where learned skills are stored.
72
-
-[**Experience Agent**](https://docs.acontext.io/learn/advance/experience-agent) - Background AI agents that extract tasks and learn skills.
71
+
-[**Space**](https://docs.acontext.io/learn/skill-space) - A Notion-like `Space` for agent, where learned skills are stored.
72
+
-[**Experience Agent**](https://docs.acontext.io/learn/advance/experience-agent) - Background agents that distill, save and search skills.
73
73
74
74
### How They Work Together
75
75
@@ -90,15 +90,15 @@ so that your agent can be more stable and provide greater value to your users.
90
90
Skills guide agent
91
91
```
92
92
93
-
What's your agent experience look like:
93
+
What's your agent skills look like:
94
94
95
95
```json
96
96
{
97
97
"use_when": "star a repo on github.com",
98
98
"preferences": "use personal account. star but not fork",
99
99
"tool_sops": [
100
-
{"tool_name": "goto", "action": "goto the user given github repo url"},
101
-
{"tool_name": "click", "action": "find login button if any, and start to login first"},
For every session, Acontext will automatically launch a background agent to track the task progress and user feedback. It's like a background TODO agent.
342
+
For every session, Acontext will **automatically** launch a background agent to track the task progress and user feedback. **It's like a background TODO agent**. Acontext will use it to observe your daily Agent success rate.
343
343
344
-
You can use the SDK to retrieve the current state of the agent session.
344
+
You can use the SDK to retrieve the current state of the agent session, for Context Engineering like Reduction and Compression.
345
345
346
346
<details>
347
347
<summary>Full Script</summary>
@@ -423,9 +423,10 @@ Example Task Return:
423
423
```txt
424
424
Task #1:
425
425
Title: Search for the latest news about iPhone 15 Pro Max and report findings to the user before any landing page coding.
426
-
Status: running
427
-
Progress updates: 1
428
-
- User clarified preference for reporting the collected news before starting coding, and I confirmed that the first step will be reporting before moving on to landing page development.
426
+
Status: success
427
+
Progress updates: 2
428
+
- I confirmed that the first step will be reporting before moving on to landing page development.
429
+
- I already collect all the iPhone 15 pro max infos and reported to user, waiting for approval for next step.
429
430
User preferences:
430
431
- user expects a report on latest news about iPhone 15 pro max before any coding work on the landing page.
0 commit comments