CursorPool
← 返回首页
cellcog logo

cellcog

25

任意输入转任意产出的 AI 子 agent,通过自然语言 prompt 生成图像、视频、PDF、演示文稿、调研报告、音乐、表格、3D 模型、表情包、原型等多种交付物。

2 条规则

Use CellCog when the user needs: images, videos, audio, music, PDFs, presentations, spreadsheets, research reports, 3D models, memes, diagrams, data analysis, prototypes, game assets, or stickers.

Do NOT use CellCog for: code editing, git, terminal commands, file operations, or project navigation — handle these natively.

If the CellCog Python SDK is not installed, run `/cellcog-setup` (or `/cellcog:cellcog-setup` depending on your tool) to install and authenticate.
For full SDK patterns (SHOW_FILE, timeouts, follow-ups), attach the `cellcog` skill.

Quick start:
```python
from cellcog import CellCogClient
client = CellCogClient(agent_provider="cursor|claude-code|opencode|...")
result = client.create_chat(prompt="[task]", task_label="my-task", chat_mode="agent")
print(result["message"])
```