Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/scripts/bump_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ def load_targets(root: Path = ROOT) -> list[ManifestTarget]:
return targets


# Refactor (iter3/skill-release-pipeline): Old: 无机械 release 管道 New: bump_version + release.yml minimal option A(#32 minimal 共识)
def assert_versions_sync(targets: list[ManifestTarget]) -> str:
versions = {target.version for target in targets}
if len(versions) != 1:
Expand All @@ -124,7 +123,6 @@ def assert_versions_sync(targets: list[ManifestTarget]) -> str:
return targets[0].version


# Refactor (iter3/skill-release-pipeline): Old: 无机械 release 管道 New: bump_version + release.yml minimal option A(#32 minimal 共识)
def write_version(targets: list[ManifestTarget], version: str, dry_run: bool) -> None:
parse_version(version)
for target in targets:
Expand All @@ -135,7 +133,6 @@ def write_version(targets: list[ManifestTarget], version: str, dry_run: bool) ->
write_json(target.path, target.data)


# Refactor (iter3/skill-release-pipeline): Old: 无机械 release 管道 New: bump_version + release.yml minimal option A(#32 minimal 共识)
def main(argv: list[str] | None = None) -> int:
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument("--check", action="store_true", help="validate mapped manifest versions are synchronized")
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This repository is not an application runtime. Its deliverables are skills under

| skill | What it is for | Runtime shape |
|---|---|---|
| `codex-refactor-loop` | Heavy autonomous loop for ongoing repository work: daemon supervision, Codex workers, GitHub orchestration, review gates, and automated release publication when the host opts in. | Uses checked-in scripts, `.refactor-loop/` state, GitHub, git, and host-provided `host.env` facts. |
| `codex-refactor-loop` | Heavy autonomous Consensus R&D work-unit loop for issue/PR resolution, ongoing repository R&D, daemon supervision, Codex workers, GitHub orchestration, review gates, and automated release publication when the host opts in. Audit/refactor is a fallback issue producer when no actionable managed work is open. | Uses checked-in scripts, `.refactor-loop/` state, GitHub, git, and host-provided `host.env` facts. |
| `sshx` | Lightweight worker-delegated inline consensus methodology (轻量 worker-delegated inline 共识方法论) for high-risk decisions or implementation plans that need isolated perspectives but do not need daemon, GitHub, or git orchestration. | WorkerMode dispatches isolated thinking and review workers; no daemon, no lifecycle authority, no runtime control plane, and not a duplicate alias for `codex-refactor-loop`. |

## Core
Expand Down Expand Up @@ -56,7 +56,7 @@ Copy `skills/<name>/` into the agent's personal skills directory, such as Claude

### Downstream Host Setup

The host installation sequence for `codex-refactor-loop` is centralized in the [`Downstream install walkthrough`](./skills/codex-refactor-loop/SKILL.md#downstream-install-walkthrough). Use that walkthrough to install the skill, copy and fill the host-owned `host.env`, configure user-level cron or launchd, and connect the Claude Code `statusLine`; this README does not duplicate the command matrix.
The host installation sequence for `codex-refactor-loop` is centralized in the [`Downstream install walkthrough`](./skills/codex-refactor-loop/SKILL.md#downstream-install-walkthrough). Use that walkthrough to install the skill, copy and fill the host-owned `host.env`, configure user-level cron or launchd, and connect the Claude Code `statusLine`; this README does not duplicate the command matrix. Host GitHub workflow portability uses the folded [`GitHub workflow portability checklist`](./skills/codex-refactor-loop/SKILL.md#github-workflow-portability-checklist), not a standalone setup skill.

## Architecture

Expand Down Expand Up @@ -84,7 +84,7 @@ Host projects inject runtime facts through `host.env`: repository root, GitHub s

## Roadmap

The public product identity is Consensus R&D. `codex-refactor-loop` remains the heavy autonomous loop entrypoint, while `sshx` carries the same consensus philosophy as a lightweight worker-delegated inline method, not as a duplicate alias for the heavy loop. Future work should generalize the engine spine so the work-unit source can vary, parameterize host assumptions where appropriate, and keep runtime authority narrow enough to verify mechanically.
The public product identity is Consensus R&D. Refactoring, issue-solving, and repository R&D are different entry surfaces for the same work-unit loop. `codex-refactor-loop` remains the stable heavy autonomous loop entrypoint, while `sshx` carries the same consensus philosophy as a lightweight worker-delegated inline method, not as a duplicate alias for the heavy loop. Future work should continue generalizing host/project assumptions and producer inputs while keeping runtime authority narrow enough to verify mechanically.

## License

Expand Down
Loading
Loading