Skip to content

CCR Interop

kadubon edited this page Jul 1, 2026 · 2 revisions

CCR Interop

CCR means Collective Capability Runtime. It is a companion runtime for coordinating many agents through tasks, leases, blackboard events, packet distillation, residual tracking, and release audits.

PIC v0.6.0 can emit CCR-facing JSONL so a scheduler can receive finite work without losing the safety boundary.

Short Version

Use PIC to check and route candidate work. Use CCR to schedule and store multi-agent work. Do not treat a PIC record as automatic CCR settlement.

PIC phase plan or gap
-> CCR task JSONL or residual JSONL
-> CCR import, lease, schedule, and preserve residuals
-> later PIC or CCR checks
-> no hidden promotion to settlement

Commands

pic phase plan --compact --emit ccr-tasks --output tasks.jsonl
pic phase gap --compact --emit ccr-residuals --output residuals.jsonl

From a source checkout, BIT and SQOT can also emit repair work:

pic bit extract-registry --source "Bottleneck Inversion Theory.tex" --output bit_registry.jsonl
pic bit emit-ccr-tasks --registry bit_registry.jsonl --output bit_witness_tasks.jsonl
pic sqot diagnose-queue --state phase_report.json --emit ccr-tasks --output sqot_repair_tasks.jsonl

What The JSONL Means

  • ccr.task.v0.1: a candidate task for a runtime to schedule.
  • ccr.residual.v0.1: a residual that should stay visible.
  • candidate_only_until_checked: CCR or another runtime must still verify the item.
  • constraints.allowed_commands: empty in PIC-emitted tasks.
  • extensions.x_pic_safe_command_hints: command hints for review, not execution.
  • residual_policy: how unresolved work should be preserved.

Safe Import Boundary

PIC output is provider evidence for CCR. It is not:

  • permission to run a shell command;
  • permission to call a provider;
  • settlement of a CCR task;
  • proof of physical success;
  • proof of real ASI;
  • permission to discard residuals.

CCR must still apply its own authority, provider, lease, witness, baseline, and settlement policies.

Search Terms

CCR interop, PIC to CCR, Collective Capability Runtime, CCR task JSONL, CCR residual JSONL, agent task leasing, residual preservation, provider evidence, phase plan handoff, pic phase plan --emit ccr-tasks, pic phase gap --emit ccr-residuals, candidate-only until checked.

Clone this wiki locally