← Back to Skills Marketplace
Geo Deep Imitate
by
chameleon-nexus
· GitHub ↗
· v1.0.0
· MIT-0
37
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install geo-deep-imitate
Description
GEO 深度仿写 — Firecrawl 全文爬取 + Backend deep_imitate 成稿入库。
README (SKILL.md)
\r \r
GEO 深度仿写(OpenClaw)\r
\r
针对已开启 deepImitateEnabled 的 OPT 任务:拉信源 URL → 爬全文 → 提交 Backend 异步成稿。\r
\r
1. 信源列表\r
\r
GEO_KEY=$(cat ~/.qclaw/geo-api-key 2>/dev/null || cat ~/.openclaw/geo-api-key 2>/dev/null)\r
OPT_ID="OPT-XXXXXXXXXXXX"\r
CYCLE=1\r
curl -s "https://ai.gaobobo.cn/api/geo/diagnosis/imitate-sources?optimization_task_id=$OPT_ID&cycle_number=$CYCLE" \\r
-H "Authorization: Bearer $GEO_KEY"\r
```\r
\r
取 Top1–3 条带 `url` 的条目。\r
\r
## 2. 爬全文\r
\r
对每条 URL(优先 Firecrawl):\r
\r
- `firecrawl_scrape(url, extractMode=markdown, onlyMainContent=true, maxChars=50000)`\r
- 失败 → `web_fetch(url)`\r
- 仍失败 → 用 `summary` 并明确告知用户已降级\r
\r
可选:本地 LLM 从 markdown 提取 `reference_outline`(sections 数组)。\r
\r
## 3. 提交成稿\r
\r
```bash\r
curl -s -X POST "https://ai.gaobobo.cn/api/geo/article/generate-deep-imitate" \\r
-H "Authorization: Bearer $GEO_KEY" \\r
-H "Content-Type: application/json" \\r
-d '{\r
"optimization_task_id": "OPT-XXX",\r
"cycle_number": 1,\r
"brand_name": "品牌名",\r
"keyword": "核心词",\r
"reference_url": "https://...",\r
"reference_markdown": "全文 markdown...",\r
"reference_outline": {"sections": ["引言", "对比", "结论"]}\r
}'\r
```\r
\r
## 4. 轮询\r
\r
```bash\r
TASK_ID="CG-XXXXXXXX"\r
# 间隔 ≥30 秒\r
curl -s "https://ai.gaobobo.cn/api/geo/article/$TASK_ID" \\r
-H "Authorization: Bearer $GEO_KEY"\r
```\r
\r
`status=completed` 且正文非空即成功;周期日志 `deepImitate` 由服务端自动回写。\r
\r
## 约束\r
\r
- 与 SaaS **浅仿写**(`imitate_enabled`)互斥,勿重复派发 Celery imitate\r
- 不触发三方媒体自动发稿(无 `publishTaskId` 自动创建)\r
Usage Guidance
Review this skill before installing. It is not showing malicious behavior, but it expects access to a local GEO API key file and uses that token against ai.gaobobo.cn, while the manifest only declares a Firecrawl key. Install only if you trust that backend, understand which GEO account the token controls, and are comfortable with scraped reference content being submitted there.
Capability Tags
Capability Assessment
Purpose & Capability
The stated purpose is to fetch GEO source URLs, scrape article text, and submit it to a GEO backend for asynchronous deep-imitate article generation; the documented curl and scraping workflow matches that purpose.
Instruction Scope
The instructions read a GEO API key from home-directory files and use it in Authorization headers, but the manifest only declares FIRECRAWL_API_KEY. The instructions also mention web_fetch as a fallback while only declaring firecrawl_scrape.
Install Mechanism
There are no executable install scripts or dependency packages; the artifact is a single SKILL.md file.
Credentials
External access to Firecrawl, arbitrary source URLs, and https://ai.gaobobo.cn is expected for the workflow, but the local GEO credential file access and fallback retrieval path are not fully reflected in declared requirements.
Persistence & Privilege
The skill does not create local persistence, but it can create backend article-generation tasks and server-side records through an authenticated API.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install geo-deep-imitate - After installation, invoke the skill by name or use
/geo-deep-imitate - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of geo-deep-imitate skill.
- Fetches source URLs for enabled OPT tasks and scrapes full text using Firecrawl, with fallback to web_fetch if needed.
- Submits scraped content for backend asynchronous deep imitation article generation.
- Includes polling for task completion and integrates result logs automatically.
- Ensures mutual exclusivity with shallow imitation tasks and does not trigger third-party publishing.
Metadata
Frequently Asked Questions
What is Geo Deep Imitate?
GEO 深度仿写 — Firecrawl 全文爬取 + Backend deep_imitate 成稿入库。 It is an AI Agent Skill for Claude Code / OpenClaw, with 37 downloads so far.
How do I install Geo Deep Imitate?
Run "/install geo-deep-imitate" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Geo Deep Imitate free?
Yes, Geo Deep Imitate is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Geo Deep Imitate support?
Geo Deep Imitate is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Geo Deep Imitate?
It is built and maintained by chameleon-nexus (@chameleon-nexus); the current version is v1.0.0.
More Skills