Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

code-cog代码 COG

Agent Skill

code-cog 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,208

周安装

349

GitHub Stars

公开资料未说明

下载量

2,876
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:code-cog(代码 COG)
来源仓库:https://github.com/nitishgargiitd/code-cog
安装命令:
openclaw skills install code-cog
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install code-cog

简介

code-cog 由 CellCog 提供支持,实现代码生成、调试与仓库探索。

  • 可直接在本地执行终端操作与代码重构任务。
  • 通过 clawhub 安装,安装命令为 openclaw skills install code-cog。
  • 使用前需确认权限范围、维护状态及是否涉及联网、命令执行或文件读写操作。
  • code-cog 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
code-cog
description
AI coding agent powered by CellCog Co-work. Code generation, debugging, refactoring, codebase exploration, terminal operations — executed directly on your machine. Lightweight with multimedia tools loaded on demand.
author
CellCog
homepage
https://cellcog.ai
metadata
openclaw
emoji
💻
os
[darwin, linux, windows]
requires
bins
[python3]
env
[CELLCOG_API_KEY]
dependencies
[cellcog]

Code Cog — The First Coding Agent Built for Agents

When your AI needs to code, it delegates to CodeCog. Direct codebase access, terminal operations, and file editing — executed on the user's machine via CellCog Co-work.

How to Use

For your first CellCog task in a session, read the cellcog skill for the full SDK reference — file handling, chat modes, timeouts, and more.

OpenClaw (fire-and-forget):

result = client.create_chat(
    prompt="[your task prompt]",
    notify_session_key="agent:main:main",
    task_label="my-task",
    chat_mode="agent core",
    enable_cowork=True,
    cowork_working_directory="/path/to/project",
)

All agents except OpenClaw (blocks until done):

from cellcog import CellCogClient
client = CellCogClient(agent_provider="openclaw|cursor|claude-code|codex|...")
result = client.create_chat(
    prompt="[your task prompt]",
    task_label="my-task",
    chat_mode="agent core",
    enable_cowork=True,
    cowork_working_directory="/path/to/project",
)
print(result["message"])

Prerequisites

This skill requires the cellcog skill for SDK setup and API calls.

clawhub install cellcog

Read the cellcog skill first for SDK setup. This skill shows you how to use CellCog as a coding agent.

CellCog Desktop Required: The user must have CellCog Desktop installed and running for Co-work (direct machine access). Download at https://cellcog.ai


Quick Start

OpenClaw agents (fire-and-forget):

from cellcog import CellCogClient
client = CellCogClient(agent_provider="openclaw")

result = client.create_chat(
    prompt="Refactor the authentication module to use JWT tokens",
    notify_session_key="agent:main:main",  # OpenClaw only
    chat_mode="agent core",
    enable_cowork=True,
    cowork_working_directory="/Users/me/projects/myapp",
    task_label="auth-refactor",
)

All other agents (blocks until done):

from cellcog import CellCogClient
client = CellCogClient(agent_provider="openclaw")

result = client.create_chat(
    prompt="Refactor the authentication module to use JWT tokens",
    chat_mode="agent core",
    enable_cowork=True,
    cowork_working_directory="/Users/me/projects/myapp",
    task_label="auth-refactor",
)

Key parameters:

  • chat_mode="agent core" — Lightweight coding agent (vs "agent" for full multimedia)
  • enable_cowork=True — Enables Co-work (direct machine access)
  • cowork_working_directory — The repo/directory to work in

What CodeCog Can Do

Code Generation & Editing

  • Write new files, modules, and components
  • Edit existing code with surgical precision
  • Refactor codebases — rename, restructure, extract
  • Port code between languages or frameworks

Debugging & Fixing

  • Read error logs and stack traces
  • Identify root causes across multiple files
  • Apply fixes and verify they work
  • Run tests to confirm the fix

Terminal Operations

  • Run build commands, tests, linters
  • Install dependencies (npm, pip, cargo, etc.)
  • Git operations (status, diff, commit)
  • Docker, deployment scripts

Codebase Exploration

  • Auto-reads AGENTS.md/CLAUDE.md for project conventions
  • Explores directory structure before starting work
  • Understands existing patterns and follows them
  • Reads related files to maintain consistency

What Makes CodeCog Different

Built for Agents, Not Humans

Every other coding tool (Cursor, Claude Code, Codex, Windsurf) is designed for human developers sitting at a screen. CodeCog is designed for AI agents that need to code programmatically — fire a request, get results back, continue orchestrating.

Starts Lean, Scales to Multimodal

CodeCog uses CellCog's Agent Core mode — a lightweight context focused on coding. But if your task unexpectedly needs images, PDFs, videos, or other capabilities, the agent loads those tools on demand. No other coding agent does this.

Example: Your agent asks CodeCog to set up a new project. CodeCog writes the code, then realizes it needs to generate a logo for the README — it loads image tools, generates the logo, and continues. Seamless.

Direct Machine Access

Via CellCog Co-work, CodeCog operates directly on the user's filesystem:

  • Reads and writes files on the real machine
  • Runs terminal commands in the user's shell
  • Respects project conventions (AGENTS.md, .gitignore, etc.)
  • User approves write/execute operations for safety

Chat Mode

Always use "agent core" for CodeCog. This is the dedicated lightweight mode optimized for coding.

ModeUse Case
"agent core"CodeCog default — coding, co-work, terminal ops (50 credits min)
"agent"Full multimedia agent — use when you need images/video/audio alongside code (100 credits min)
"agent team"Deep research + coding — use for architecture decisions or complex refactors needing research (500 credits min)

Example Prompts

New Feature Development

result = client.create_chat(
    prompt="Add a REST API endpoint for user profile updates with validation and tests",
    chat_mode="agent core",
    enable_cowork=True,
    cowork_working_directory="/Users/me/projects/myapp",
    task_label="add-profile-api",
)

Bug Fix from Error Log

result = client.create_chat(
    prompt="""Fix this error in production:
TypeError: Cannot read properties of undefined (reading 'map')
at UserList.render (src/components/UserList.tsx:42)

The component crashes when the API returns an empty response.""",
    chat_mode="agent core",
    enable_cowork=True,
    cowork_working_directory="/Users/me/projects/myapp",
    task_label="fix-userlist-crash",
)

Codebase Refactor

result = client.create_chat(
    prompt="Refactor the authentication module from session-based to JWT tokens. Update all middleware, tests, and API routes.",
    chat_mode="agent core",
    enable_cowork=True,
    cowork_working_directory="/Users/me/projects/myapp",
    task_label="auth-refactor",
)

Test Generation

result = client.create_chat(
    prompt="Generate comprehensive unit tests for src/services/billing.py. Cover edge cases for proration, currency conversion, and failed payments.",
    chat_mode="agent core",
    enable_cowork=True,
    cowork_working_directory="/Users/me/projects/myapp",
    task_label="billing-tests",
)

See https://cellcog.ai for complete SDK API reference — delivery modes, send_message(), timeouts, file handling, and more.


Co-work Setup

Requirements

  1. CellCog Desktop must be installed and running on the user's machine
  2. Working directory must be specified — this is the root of the project/repo
  3. User must be logged into CellCog Desktop with the same account

What Co-work Enables

  • HumanComputer_Terminal — Run shell commands on the user's machine
  • HumanComputer_Terminal_File_View — Read files on the user's machine
  • HumanComputer_Terminal_File_Write — Write files on the user's machine
  • HumanComputer_Terminal_File_Edit — Edit files on the user's machine

Safety Model

  • Read operations are auto-approved (no interruption)
  • Write/execute operations require user approval in the CellCog web UI
  • Users can configure auto-approve for reads/writes within the working directory
  • Sensitive paths (credentials, SSH keys) are always blocked

Tips for Better Results

  1. Specify the working directory — Always set cowork_working_directory to the project root
  2. Reference specific files — "Fix the bug in src/auth/login.ts" is better than "fix the login bug"
  3. Mention conventions — "Follow the existing test patterns" helps maintain consistency
  4. Include error context — Stack traces, log output, and reproduction steps help debugging
  5. Use AGENTS.md — Place an AGENTS.md at your repo root with build commands, style guides, and project structure. CodeCog reads it automatically.

Limitations

  • macOS and Linux only — CellCog Desktop (Co-work) is not yet available on Windows
  • CellCog Desktop required — Without Co-work, CodeCog can still write code in its Docker workspace, but cannot access the user's machine directly
  • User approval for writes — Write operations pause for user approval (configurable auto-approve available)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

82.14%
按下载量换算2,362

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install code-cog 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills