Skip to content

Commit d92e003

Browse files
committed
docs: update explanation
1 parent d54de9c commit d92e003

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

README.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ so that your agent can be more stable and provide greater value to your users.
6666
# 🌲 Core Concepts
6767

6868
- [**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.
7070
- [**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.
7373

7474
### How They Work Together
7575

@@ -90,15 +90,15 @@ so that your agent can be more stable and provide greater value to your users.
9090
Skills guide agent
9191
```
9292

93-
What's your agent experience look like:
93+
What's your agent skills look like:
9494

9595
```json
9696
{
9797
"use_when": "star a repo on github.com",
9898
"preferences": "use personal account. star but not fork",
9999
"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"},
100+
{"tool_name": "goto", "action": "goto github.com"},
101+
{"tool_name": "click", "action": "find login button if any. login first"},
102102
...
103103
]
104104
}
@@ -110,8 +110,8 @@ Agent experience will be stored in a structured `Space`, with folders, pages and
110110

111111
```txt
112112
/
113-
└── github_ops/ (folder)
114-
└── GTM_sop (page)
113+
└── github/ (folder)
114+
└── GTM (page)
115115
├── find_trending_repos (sop block)
116116
└── find_contributor_emails (sop block)
117117
└── basic_ops (page)
@@ -339,9 +339,9 @@ print(f"✓ Download URL: {result.public_url}")
339339

340340
## Observe [📖](https://docs.acontext.io/observe)
341341

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.
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.
343343

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.
345345

346346
<details>
347347
<summary>Full Script</summary>
@@ -423,9 +423,10 @@ Example Task Return:
423423
```txt
424424
Task #1:
425425
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.
429430
User preferences:
430431
- user expects a report on latest news about iPhone 15 pro max before any coding work on the landing page.
431432

0 commit comments

Comments
 (0)