page-agent 0.0.9 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -5
- package/dist/lib/page-agent.js +175 -3132
- package/dist/lib/page-agent.js.map +1 -1
- package/package.json +6 -7
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PageAgent 🤖🪄
|
|
2
2
|
|
|
3
|
-

|
|
4
4
|
|
|
5
5
|
[](https://badge.fury.io/js/page-agent) [](https://opensource.org/licenses/MIT) [](http://www.typescriptlang.org/) [](https://www.npmjs.com/package/page-agent) [](https://bundlephobia.com/package/page-agent) [](https://github.com/alibaba/page-agent)
|
|
6
6
|
|
|
@@ -72,11 +72,8 @@ PageAgent adopts a simplified monorepo structure:
|
|
|
72
72
|
```
|
|
73
73
|
packages/
|
|
74
74
|
├── page-agent/ # AI agent (npm: page-agent)
|
|
75
|
-
│ ├── PageAgent # Agent main loop
|
|
76
|
-
│ ├── tools/ # LLM tool definitions
|
|
77
|
-
│ ├── ui/ # UI components & panels
|
|
78
|
-
│ └── llms/ # LLM integration layer
|
|
79
75
|
├── page-controller/ # DOM operations (npm: @page-agent/page-controller)
|
|
76
|
+
├── ui/ # Panel & Mask & Mouse Animation (npm: @page-agent/ui)
|
|
80
77
|
└── website/ # Demo & Documentation site
|
|
81
78
|
```
|
|
82
79
|
|