harness-core

Orchestrate NeuroClaw skill executions with checkpointing, drift detection, and audit logging.

78|3|Updated Mar 25, 2026
One-click install
npx skills add https://github.com/CUHK-AIM-Group/NeuroClaw --skill harness-core
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: harness-core
Source: https://github.com/CUHK-AIM-Group/NeuroClaw/tree/main/skills/harness-core
Command: npx skills add https://github.com/CUHK-AIM-Group/NeuroClaw --skill harness-core

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

harness-core provides a reusable foundation for verifiable, checkpointed, auditable skill execution across NeuroClaw skills.

Core Features & Use Cases

  • HarnessController for task orchestration and phase tracking
  • VerificationRunner for pluggable checks
  • CheckpointManager for saving/loading state with integrity
  • DriftDetector for monitoring distribution shifts
  • AuditLogger for privacy-preserving logging
  • DependencyManifest for reproducible environments
  • Typical usage includes building harness-enabled skills with consistent provenance.

Quick Start

Instantiate HarnessController and wrap your skill logic to enable automatic checkpointing, environment capture, and audit logging.

Frequently Asked Questions about harness-core

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I add checkpointing and audit logging to my reproducible skill execution workflow?▼

You can add checkpointing and audit logging to reproducible skill execution by wrapping your logic with a HarnessController, which automatically handles state integrity and provenance tracking.

What is drift detection in skill orchestration and when do I need it?▼

Drift detection in skill orchestration monitors distribution shifts during execution. You need it to maintain reproducibility and catch environment or data changes that could compromise verifiable outputs.

How do I set up self-verification checks for a reproducible skill pipeline?▼

You set up self-verification by using a pluggable VerificationRunner within your harness, allowing you to execute custom validation checks and ensure skill reproducibility before completing the workflow.

Can I capture dependency manifests for consistent environments across skill components?▼

Yes, you can capture dependency manifests to lock consistent environments. The harness foundation records environment provenance automatically, ensuring reproducible skill execution across different orchestration phases.

Does harness-core work without external dependencies for production-ready workflows?▼

Yes, harness-core operates with zero external dependencies, providing a self-contained foundation for production-ready workflows that require self-verification, checkpointing, and privacy-preserving audit logging.

What is the best way to orchestrate task phases while maintaining state integrity?▼

The best way to orchestrate task phases with state integrity is using a HarnessController combined with a CheckpointManager, which together track execution progress and securely save or load state.