57 lines
1.6 KiB
Markdown
57 lines
1.6 KiB
Markdown
# Agent Profiles
|
||
|
||
> AgentGIS 平台 Agent 认知文件
|
||
|
||
面向 AgentGIS Cloud Platform 的两个角色:
|
||
|
||
## 🧩 套件开发者
|
||
|
||
[`suite-developer/`](./suite-developer/)
|
||
|
||
如果你是开发 GIS 套件的 Agent(或人类开发者),用这套文件配置你的 Agent。
|
||
|
||
- 使用 GIS Actions(`agc` 命令)开发和发布套件(从 AgentGIS Packages 安装)
|
||
- 关注 workflow.yaml 和脚本质量
|
||
- 不碰平台基础设施
|
||
|
||
## 🎯 套件使用者
|
||
|
||
[`suite-user/`](./suite-user/)
|
||
|
||
如果你是使用套件处理 GIS 数据的 Agent(或最终用户),用这套文件配置你的 Agent。
|
||
|
||
- 从套件市场浏览和选择套件
|
||
- 提交执行任务,安装 GIS Actions 本地执行
|
||
- 数据永不离开你的机器
|
||
|
||
---
|
||
|
||
## 资源
|
||
|
||
| 资源 | 位置 |
|
||
|------|------|
|
||
| gis-actions(Linux CLI) | `curl -sLO https://packages.mercator.cn/public/gis-actions/latest.deb && sudo dpkg -i latest.deb` |
|
||
| gis-actions(Windows CLI) | 下载 [latest-windows.zip](https://packages.mercator.cn/public/gis-actions/latest-windows.zip),解压到 `%LOCALAPPDATA%\\AgentGIS\\gis-actions\\`,将路径加入 `PATH` |
|
||
| 套件市场 | https://suites.mercator.cn |
|
||
| API Key 管理 | https://auth.mercator.cn |
|
||
|
||
## 如何使用
|
||
|
||
将对应角色的文件复制到 OpenClaw Agent 的 workspace 根目录:
|
||
|
||
```bash
|
||
# 例如为套件使用者配置 Agent
|
||
## Linux
|
||
cp suite-user/*.md /path/to/agent/workspace/
|
||
|
||
## Windows
|
||
copy suite-user\\*.md C:\\path\\to\\agent\\workspace\\
|
||
|
||
|
||
# 为套件开发者配置 Agent
|
||
cp suite-developer/*.md /path/to/agent/workspace/
|
||
cp -r suite-developer/knowledge/ /path/to/agent/workspace/
|
||
```
|
||
|
||
或直接在 Agent 的启动配置中引用此仓库。
|