cc-harness-skills

作者 LearnPrompt已验证

Portable CC-inspired skills for memory, verification, multi-agent coordination, context compression, and proactive coding-agent workflows.

233
Stars
62
Forks
Python
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/LearnPrompt/cc-harness-skills

快速入门

使用 cc-harness-skills 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

🌐 English · 中文

CC Harness Skills

"The parts that separate a fun demo from a stable toolchain: memory, compression, verification, routing, proactive jobs."

Agent Skills skills.sh Multi-Runtime License: MIT

Portable agent skills distilled from a publicly mirrored CC coding-agent codebase, then rewritten so they can be installed in Claude Code, Codex, and OpenClaw without depending on private runtime internals.

Quick Start

One-line install (any skills-compatible agent):

# all six skills
npx skills add LearnPrompt/cc-harness-skills -g

# or a single skill
npx skills add LearnPrompt/cc-harness-skills -s verification-gate -g

Run the basic bundle checks first:

bash ./skills/check_all.sh

Or copy one skill into a host runtime manually:

mkdir -p ~/.claude/skills
cp -R ./skills/dream-memory ~/.claude/skills/

Then invoke it in Claude Code:

Use /dream-memory to consolidate the memory directory before we continue.
mkdir -p ~/.codex/skills
cp -R ./skills/dream-memory ~/.codex/skills/

Then invoke it in Codex:

Use /dream-memory and consolidate recent memory files into one stable index.
mkdir -p ~/.openclaw/workspace/skills
cp -R ./skills/dream-memory ~/.openclaw/workspace/skills/

Then check it in OpenClaw:

openclaw skills info dream-memory

Publish to ClawHub after checks:

bash ./skills/publish_all.sh 0.1.0

This repo is not a source dump. It is a cleaned skill pack:

  • prompts extracted into reusable templates
  • host-agnostic helper scripts
  • portable SKILL.md bundles
  • release and smoke-test docs for public distribution

If you are building with coding agents, these are the parts that usually separate a fun demo from a stable toolchain:

  • memory that stays useful instead of rotting
  • compression that preserves user corrections
  • verification that does not trust "done"
  • multi-agent routing that does not pollute the main context
  • proactive jobs with explicit limits

This repo packages those patterns into six installable skills.

Why This Exists

Most agent repos share the same hard problems:

  • how to keep memory useful without storing stale code facts
  • how to compress long conversations without losing user corrections
  • how to verify claimed completion instead of trusting it
  • how to coordinate multiple agents without turning the main context into garbage
  • how to add lightweight proactive behavior without building a dangerous daemon

The six skills in this repo package those patterns into download-ready bundles.

Who This Is For

  • builders who want better agent behavior without forking a full agent product
  • teams using Claude Code, Codex, or OpenClaw and wanting a shared skill layer
  • people studying CC-style harness design but needing something publishable and portable
  • anyone who wants prompts plus scripts, not prompts alone

Skill Pack

Public nameSlugWhat it doesBest hosts
CC Dream Memorydream-memoryConsolidates logs, recent sessions, and topic memories into a short durable memory index.Claude Code, Codex, OpenClaw
CC Memory Extractormemory-extractorExtracts durable user, feedback, project, and reference memories from recent turns.Claude Code, Codex, OpenClaw
CC Verification Gateverification-gateRuns a read-only challenge pass after implementation to distinguish verified from merely claimed done.Claude Code, Codex
CC Swarm Coordinatorswarm-coordinatorSplits large work into research, synthesis, implementation, and verification with bounded workers.Claude Code, Codex, OpenClaw
CC Context Compressorstructured-context-compressorProduces a nine-part continuation summary for long sessions and handoffs.Claude Code, Codex, OpenClaw
CC Kairos Litekairos-liteAdds lightweight proactive jobs with schedule, sleep, brief, and expiry rules.Claude Code, OpenClaw

Each bundle lives in skills/ and includes:

  • SKILL.md
  • references/prompt-template.md
  • references/source-notes.md
  • scripts/...
  • README.md

Start Here

If you only try three things, try these first:

  1. install dream-memory
  2. install verification-gate
  3. install structured-context-compressor

That gives you one memory workflow, one quality gate, and one continuation artifact. It is the fastest way to feel whether this repo is useful.

Release Docs

Naming

Recommended public GitHub repo name: cc-harness-skills

Good alternatives:

  • cc-agent-skills
  • cc-harness-kit
  • cc-portable-skills

The public naming uses CC on purpose: it signals the origin of the ideas without hard-coding a full vendor product name into the repo identity.

What Is Verified

Latest smoke-test status:

  • Claude Code: six skills load successfully
  • OpenClaw: six skills resolve as Ready
  • Codex: bundle structure is verified; runtime smoke test is pending local auth

Full report: skills/TEST_REPORT.md

Project Layout

skills/
  dream-memory/
  memory-extractor/
  verification-gate/
  swarm-coordinator/
  structured-context-compressor/
  kairos-lite/

Internal working notes and non-publishable local experiments still live under .codex/skills/, but the public release surface for this project is the root skills/ directory.


常见问题

What is cc-harness-skills?

cc-harness-skills is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by LearnPrompt. Portable CC-inspired skills for memory, verification, multi-agent coordination, context compression, and proactive coding-agent workflows. It has 233 GitHub stars.

Is cc-harness-skills safe to use?

Yes. cc-harness-skills passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install cc-harness-skills?

Clone the repository with "git clone https://github.com/LearnPrompt/cc-harness-skills" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is cc-harness-skills written in?

cc-harness-skills is primarily written in Python. It is open-source under LearnPrompt on GitHub, so you can review or fork the full source.

Are there alternatives to cc-harness-skills?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh cc-harness-skills against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情