Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By LearnPrompt
Provide a Claude Code agent with portable skills for persistent memory extraction, conversation compression, proactive background checks, structured multi-phase task decomposition, and post-implementation verification — turning a conversational coding agent into a more reliable, context-aware toolchain.
npx claudepluginhub learnprompt/cc-harness-skills --plugin cc-harnessConsolidate recent logs, sessions, and existing memory files into durable topic memories, normalize dates, prune stale entries, and keep MEMORY.md short enough for prompt use.
Run a read-only verification pass after implementation to check whether completion claims are real, validation actually ran, and obvious edge cases or regressions were missed.
Build a lightweight proactive mode with scheduled checks, sleep intervals, concise user briefs, and expiry safeguards so an agent can work in the background without becoming an uncontrolled daemon.
Extract durable memories from recent conversation turns into user, feedback, project, and reference categories while avoiding stale code-state facts.
Compress a long agent conversation into a nine-part continuation summary that preserves request, files, errors, user messages, current work, and the next aligned step.
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Skill memory layer for Claude Code — auto-capture, learn, and reuse skills from Acontext
Curate auto-memory, promote learnings to CLAUDE.md and rules, extract proven patterns into reusable skills.
Harness for Claude Code — skills, /harness:* slash commands, persona subagents, lifecycle hooks, and MCP tools without per-repo `harness setup`. Sibling plugins exist for Cursor, Gemini CLI, and Codex.
Skill and agent authoring tools: generate, audit, and improve Claude Code skills, commands, and agents
This skill should be used when the model's ROLE_TYPE is orchestrator and needs to delegate tasks to specialist sub-agents. Provides scientific delegation framework ensuring world-building context (WHERE, WHAT, WHY) while preserving agent autonomy in implementation decisions (HOW). Use when planning task delegation, structuring sub-agent prompts, or coordinating multi-agent workflows.
Design fluency for frontend development. 1 skill with 23 commands (/impeccable polish, /impeccable audit, /impeccable critique, etc.) and curated anti-pattern detection.
面向 Agent 的 PPT 简报编排器:把资料变成 AST 大纲+逐页素材决定,交给下游 PPT Skill(guizang/frontend-slides)100%原生渲染,再用 QA 循环盯住渲染结果。Humanize 自己不渲染。PPT is an audience-state changer, not an information container.
"The parts that separate a fun demo from a stable toolchain: memory, compression, verification, routing, proactive jobs."
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.
This repo is not a source dump. It is a cleaned skill pack:
SKILL.md bundlesIf you are building with coding agents, these are the parts that usually separate a fun demo from a stable toolchain:
This repo packages those patterns into six installable skills.
Most agent repos share the same hard problems:
The six skills in this repo package those patterns into download-ready bundles.
Claude Code, Codex, or OpenClaw and wanting a shared skill layerCC-style harness design but needing something publishable and portable| Public name | Slug | What it does | Best hosts |
|---|---|---|---|
| CC Dream Memory | dream-memory | Consolidates logs, recent sessions, and topic memories into a short durable memory index. | Claude Code, Codex, OpenClaw |
| CC Memory Extractor | memory-extractor | Extracts durable user, feedback, project, and reference memories from recent turns. | Claude Code, Codex, OpenClaw |
| CC Verification Gate | verification-gate | Runs a read-only challenge pass after implementation to distinguish verified from merely claimed done. | Claude Code, Codex |
| CC Swarm Coordinator | swarm-coordinator | Splits large work into research, synthesis, implementation, and verification with bounded workers. | Claude Code, Codex, OpenClaw |
| CC Context Compressor | structured-context-compressor | Produces a nine-part continuation summary for long sessions and handoffs. | Claude Code, Codex, OpenClaw |
| CC Kairos Lite | kairos-lite | Adds lightweight proactive jobs with schedule, sleep, brief, and expiry rules. | Claude Code, OpenClaw |
Each bundle lives in skills/ and includes:
SKILL.mdreferences/prompt-template.mdreferences/source-notes.mdscripts/...README.mdIf you only try three things, try these first:
dream-memoryverification-gatestructured-context-compressorThat gives you one memory workflow, one quality gate, and one continuation artifact. It is the fastest way to feel whether this repo is useful.
Run the basic bundle checks first:
bash ./skills/check_all.sh
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
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