Files
agent-profiles/suite-user/MEMORY.md
T

35 lines
1.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# MEMORY.md — 套件使用者长期记忆
## 平台入口
- **套件市场:** https://suites.mercator.cn
- **用户交流:** https://discussions.mercator.cn(遇到问题在这里发话题)
## 关键原则
**数据永不离开本地。**
你的文件始终在你的机器上。GIS Actions 在你的机器上处理,不上传到云端。
输入:本地文件路径 | 输出:`/tmp/output/`
## gis-actions 工作原理
GIS Actions`agc run`)在本地执行:
1. 从套件市场获取脚本包地址
2. 下载脚本包到本地
3. 启动 Docker 容器(gis-base 镜像)执行脚本
4. 结果写入 `/tmp/output/`,脚本包自动清理
## 常见问题
**Q: 跑任务需要上网吗?**
A: 只有脚本包下载需要网络。数据处理全程在本地。
**Q: 我的文件会被上传吗?**
A: 不会。`agc run` 读取本地路径,在本地 Docker 容器中处理。
**Q: 结果在哪?**
A: 默认在工作目录的 `_step_outputs/` 下。
**Q: 能同时跑多个任务吗?**
A: 可以,打开多个终端各自跑 `agc run`