TopRank Skills

Home / Claw Skills / Git / GitHub / close-loop
Official OpenClaw rules 36%

close-loop

End-of-session workflow for shipping changes, consolidating memory, applying self-improvements, and preparing publishable outputs with safety gates.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 close-loop 技能。 若已安装,则直接安装 close-loop 技能。

Overview

Skill Key
clarezoe/close-loop
Author
clarezoe
Source Repo
openclaw/skills
Version
-
Source Path
skills/clarezoe/close-loop
Latest Commit SHA
d948d617734acf476b4afccd4d2bbae73c0eb528

Extracted Content

SKILL.md excerpt

# Close Loop

Use this skill when the user says "wrap up", "close session", "end session", "close out this task", or invokes `/wrap-up`.

Run four phases in order and return one consolidated inline report.

## Modular structure

This skill is split into components for maintainability:

1. `components/01-design-principles.md`
2. `components/02-phase-1-ship-state.md`
3. `components/03-phase-2-memory.md`
4. `components/04-phase-3-4-and-output.md`

Follow these components in order.

## Quick run order

1. Apply execution policy and action gates (`01-design-principles.md`)
2. Execute Ship State (`02-phase-1-ship-state.md`)
3. Consolidate Memory (`03-phase-2-memory.md`)
4. Run improvements + publish queue + output contract (`04-phase-3-4-and-output.md`)

## Required output

Return:
- Artifact A: human-readable report sections exactly as defined in component 04
- Artifact B: machine-readable JSON block exactly as defined in component 04

## Resources

- `references/memory-frameworks.md`
- `assets/templates/wrap-report-template.md`

README excerpt

# close-loop

End-of-session workflow for shipping work cleanly and retaining high-value memory.

## What it does

- Runs a 4-phase wrap-up: Ship State, Consolidate Memory, Review & Apply, Publish Queue.
- Uses typed memory buckets: working, episodic, semantic, procedural.
- Uses two-pass consolidation (extract then verify/dedupe/resolve conflicts).
- Applies a persistence filter plus confidence calibration and TTL retention.
- Enforces action gates for commit, push, deploy, and publish.
- Supports `dry-run` mode and emits a machine-readable JSON report.

## Use this skill when

- You want to end a coding session with clean repo state.
- You want structured memory updates instead of ad-hoc notes.
- You want repeatable self-improvement and publication triage.

## Files

- `SKILL.md` - Entry point + execution order.
- `components/01-design-principles.md` - Execution policy and action gates.
- `components/02-phase-1-ship-state.md` - Ship State phase steps.
- `components/03-phase-2-memory.md` - Memory consolidation and safety rules.
- `components/04-phase-3-4-and-output.md` - Improvements, publish queue, and output contract.
- `references/memory-frameworks.md` - Framework references and update checklist.
- `assets/templates/wrap-report-template.md` - Output template for session wrap reports.

## Quick usage

Trigger phrases:

- `wrap up`
- `close session`
- `end session`
- `/wrap-up`

Execution order:

1. Ship State
2. Consolidate Memory
3. Review and Apply Improvements
4. Publish Queue

## Design goals

- High signal memory only
- Deterministic end-of-session behavior
- Minimal irreversible actions without approval
- Clear output contract with evidence and confidence labels
- Memory security against poisoning/injection patterns

Related Claw Skills