TopRank Skills

Home / Claw Skills / Autres / Skill Governance Balanced
Official OpenClaw rules 15%

Skill Governance Balanced

skill governance

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
dalomeve/skill-governance-balanced
Author
dalomeve
Source Repo
openclaw/skills
Version
-
Source Path
skills/dalomeve/skill-governance-balanced
Latest Commit SHA
3e1be4d34308c720e57c6f9fef9ff69cc26c04a6

Extracted Content

SKILL.md excerpt

# skill-governance

Use this skill to control multi-skill side effects with a balanced governance model.

## When to use

- After installing a new skill (must pass acceptance before becoming `ready`)
- Daily/heartbeat governance refresh
- Core pool tuning and automatic promotion/demotion
- Routing decisions: core first, then all ready skills, then explore fallback

## Policy

- Status model: `candidate` -> `ready` -> `core` -> `quarantine` -> `retired`
- Third-party skills default to `candidate`
- Only `ready` or `core` skills are eligible for automatic selection
- Quarantine after 2 consecutive failures
- Demote `core` skill to `ready` after 3 days without usage
- Dynamic core cap range: 8 to 14

## Security and privacy

- No outbound network calls are required by this skill.
- No credential collection or token upload behavior is implemented.
- Scripts only read/write local workspace files for governance state and evidence.
- Weekly cleanup is non-destructive by design (status transitions only; no file deletion).
- Any action beyond local governance must be explicitly added by the operator.

## Source of truth

- `skill-registry.json`

## Scripts

1. Reconcile runtime + filesystem into registry:
   - `scripts/reconcile-ready.ps1 -Root <workspace>`
2. Audit one skill with 4-step acceptance:
   - `scripts/audit-skill.ps1 -Root <workspace> -SkillName <name>`
3. Record skill usage outcome:
   - `scripts/record-skill-usage.ps1 -Root <workspace> -SkillName <name> -Outcome success|failure|blocked`
4. Evaluate core pool promotion/demotion and dynamic cap:
   - `scripts/update-core-pool.ps1 -Root <workspace>`
5. Route execution chain (core -> ready -> explore):
   - `scripts/route-skill.ps1 -Root <workspace> -TaskText "<text>" -Candidates "a,b,c"`
6. Weekly cleanup (retire stale or missing skills):
   - `scripts/weekly-cleanup.ps1 -Root <workspace>`

## Required install flow

After installing a new skill:

1. Run `reconcile-ready.ps1`
2. Run `audit-skill.ps1` for that skill...

Related Claw Skills