ワンクリックで
project-context-runtime
Durable, versioned identity, producer-result, and manifest records for project-context refresh callers
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Durable, versioned identity, producer-result, and manifest records for project-context refresh callers
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Generate throughput and quality reports from coordinator audit data and episodic memory
Orchestrate the full plan-review-implement-validate-PR lifecycle with multi-vendor review convergence
Comprehensive project health diagnostic — collects signals from CI tools, existing reports, deferred issues, and code markers into a prioritized finding report
Generate changelog entries and suggest semantic version bumps from git history
Ingest raw session transcripts from coding-agent harnesses via vendor-specific adapters, normalize to a common event schema, triage for struggle signals, and write structured findings to episodic memory
Readiness gate for sync-point operations — inspect validation, rework, and active-agent state before merge
| name | project-context-runtime |
| description | Durable, versioned identity, producer-result, and manifest records for project-context refresh callers |
| category | Infrastructure |
| tags | ["project-context","refresh","runtime","shared-library"] |
Shared library providing the durable identity, producer-result, semantic-index reference, and deterministic manifest records used by every project-context refresh caller (architecture refresh, the refresh orchestrator, branch-local checkpoints, and main convergence).
This is an infrastructure skill — not user-invocable. Import from
<skill-base-dir>/scripts/ after resolving this loaded skill directory, or add
scripts/ to sys.path and import the bare module names.
scripts/models.py — strict, versioned dataclasses, enums, typed
fail-closed exceptions, deterministic operation-identity derivation, and
offline JSON-Schema validation.scripts/atomic.py — crash-safe atomic JSON writes (same-directory temp file,
fsync, atomic replace, parent fsync) and cross-process advisory file locking.
Private runtime-core; not part of the supported facade.scripts/store.py — the OperationStore, a Git-common-dir–backed durable
ledger with per-operation locking and a validated state machine.scripts/manifest.py — deterministic, byte-stable manifest projection and an
atomic committable writer.install_assets/openspec/schemas/*.schema.json — the three versioned Draft
2020-12 contracts (types, operation, manifest).from scripts import (
OperationStore, # durable create/resume/transition
write_manifest, # deterministic committable projection
OperationRecord, RefreshManifest, ProducerResult,
derive_operation_id,
)
operation.json ledger is never committed; only the deterministic
manifest projection is a repository artifact.succeeded (with indexed_revision == requested_revision) requires an
explicit fallback.See docs/project-context-refresh.md for the full consumer contract.