Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计通过

agentic-loop-triad动能环三联征

Agent Skill

agentic-loop-triad 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,402

周安装

116

GitHub Stars

公开资料未说明

下载量

947
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:agentic-loop-triad(动能环三联征)
来源仓库:https://github.com/danielfoojunwei/agentic-loop-triad
安装命令:
openclaw skills install agentic-loop-triad
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install agentic-loop-triad

简介

将意图工程、执行与反馈整合为自主循环系统。

  • 可检测偏差、学习模式、调整规格并转移技能。
  • 支持持续验证与优化闭环运行机制。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 需结合来源仓库进一步验证实际应用场景。
  • agentic-loop-triad 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Unified Orchestrator v2

A meta-skill that unifies intent-engineering, dark-factory, and feedback-loop into a single self-evolving system — and unlocks five paradigm shifts that none of the three skills can achieve alone.


When to Use This Skill

Use this skill whenever you need to take a goal from raw language all the way to a verified, continuously improving implementation — in one command. It replaces the manual handoff between intent-engineering, dark-factory, and feedback-loop with a single pipeline that:

  • Translates goals into machine-executable specifications
  • Executes those specifications autonomously
  • Measures outcomes against the original intent
  • Generates regression tests from every failure
  • Feeds improvements back into the next cycle automatically

Use individual skills when you need surgical control over a single stage. Use this skill when you want the full loop.


The Five Paradigm Shifts

These are capabilities that emerge only when the three skills operate as a unified system. They are not features — they are new modes of operation.

Paradigm Shift 1 — Specification Drift Detection

What it is: The system continuously compares what was *intended* (the specification produced by intent-engineering) against what was *executed* (the outcome report from dark-factory) and what was *observed* (the feedback loop analysis). Over multiple cycles, it builds a drift map: a quantified record of how far execution has wandered from original intent.

Why it matters: In isolated skill usage, drift is invisible. A specification can be perfectly written, execution can pass all tests, and the feedback loop can report healthy scores — while the system is quietly drifting away from the original goal. Only by holding all three artifacts simultaneously can the orchestrator detect semantic drift: the gap between what the goal *said* and what the system *does*.

How it works: signal_router.py computes a drift_score (0.0–1.0) by comparing the specification's success_criteria against the feedback loop's alignment_score and the dark-factory's pass_rate. A drift score above 0.15 triggers a re-specification cycle automatically.


Paradigm Shift 2 — Capability Expansion via Meta-Learning

What it is: After each full pipeline cycle, meta_learner.py analyzes the complete history of specifications, outcomes, and improvement reports to identify *patterns* — recurring failure modes, consistently high-performing specification patterns, and improvement suggestions that were applied and worked. It then updates the skill registry and the shared intent framework with these learnings, making every future run smarter.

Why it matters: Individual skills improve within their own domain. The feedback loop makes the feedback loop better. Intent-engineering makes specifications better. But neither knows what the other learned. The meta-learner operates across all three domains simultaneously, compounding learnings: a failure pattern discovered in dark-factory execution informs how intent-engineering writes specifications, which changes what dark-factory executes, which changes what the feedback loop measures.

How it works: meta_learner.py maintains a learnings_log.json that accumulates cross-cycle patterns. After 3+ cycles on the same goal, it generates specification_patches.json — suggested improvements to the specification template itself — and rule_patches.json — new suggestion rules for the feedback loop analyzer.


Paradigm Shift 3 — Autonomous Re-specification

What it is: When the system detects that a specification is no longer achievable given observed constraints (e.g. a success criterion of duration_ms < 500 that has never been met in 5 cycles), it autonomously generates a revised specification with adjusted criteria, documents the revision rationale, and continues the pipeline — without human intervention.

Why it matters: Current AI systems fail silently or loop forever on impossible goals. This system detects impossibility, documents it, adjusts, and continues. The human gets a clear audit trail of what was attempted, what was impossible, and what was substituted — rather than a system that either crashes or silently lowers its own bar.

How it works: pipeline.py tracks consecutive_failures per success criterion. After a configurable threshold (default: 3), it calls capability_expander.py which generates a revised_specification.json with adjusted criteria and a revision_rationale.md explaining the change. The pipeline continues with the revised spec and flags the cycle as auto_revised.


Paradigm Shift 4 — Cross-Goal Skill Transfer

What it is: When you run the unified orchestrator on a new goal, it first searches the learnings_log.json for similar past goals (by semantic similarity of the goal description). If a match is found above a configurable threshold, it bootstraps the new specification from the prior goal's best-performing specification version — skipping the cold-start problem entirely.

Why it matters: Every AI system starts from zero on every new task. This system starts from the closest thing it has already learned. A goal like "process customer support tickets with 98% accuracy" will bootstrap from any prior goal involving classification, accuracy thresholds, or text processing — not just identical goals. The system accumulates institutional knowledge across goals, not just within them.

How it works: meta_learner.py maintains a goal_similarity_index.json. On each new run, pipeline.py queries this index using keyword overlap and structural similarity. If a match scores above 0.6, the matched goal's best_specification.json is used as the starting template, with the new goal's specific criteria overlaid.


Paradigm Shift 5 — Verifiable Improvement Chains

What it is: Every cycle produces a cryptographically signed improvement report. The unified orchestrator chains these reports together — each report contains the SHA-256 hash of the previous report — creating an immutable, independently verifiable improvement chain. Any external party can verify that improvement claim X was produced from observation Y, which was produced from specification Z, in cycle N.

Why it matters: AI systems routinely claim improvement without proof. This system produces a tamper-evident chain of evidence: you can prove to any stakeholder exactly what changed, when, why, and what effect it had. This is the foundation for auditable AI governance — not as a compliance afterthought, but as a first-class output of every run.

How it works: pipeline.py reads the chain_tip from improvement_chain.json (the hash of the last report) and includes it in the current report before signing. signal_router.py provides a verify_chain command that re-computes all hashes and confirms chain integrity.


Architecture

unified-orchestrator-v2/
├── SKILL.md                                   ← this file
├── scripts/
│   ├── pipeline.py                            ← main entry point — runs the full loop
│   ├── meta_learner.py                        ← cross-cycle pattern learning and transfer
│   ├── capability_expander.py                 ← autonomous re-specification on impossible goals
│   └── signal_router.py                       ← drift detection, chain verification, routing
├── references/
│   ├── paradigm_shifts.md                     ← detailed design notes for all five shifts
│   ├── pipeline_config.json                   ← configurable thresholds and behavior
│   ├── learnings_log.json                     ← accumulated cross-cycle learnings (auto-updated)
│   ├── goal_similarity_index.json             ← cross-goal transfer index (auto-updated)
│   └── improvement_chain.json                 ← cryptographic improvement chain (auto-updated)
├── templates/
│   ├── pipeline_run_report_template.md        ← human-readable full pipeline report
│   └── revision_rationale_template.md         ← auto-revised specification rationale
└── examples/
    ├── example_goal_simple.json               ← simple standalone example
    ├── example_goal_triad.json                ← full triad example
    └── example_learnings_log.json             ← sample accumulated learnings

Usage

Quickstart — Any Goal, Any Input

# From a plain goal description (standalone — no other skills required)
python scripts/pipeline.py --goal "Process customer tickets with 98% accuracy in under 2 seconds"

# From an existing specification (skip intent-engineering)
python scripts/pipeline.py --spec specification.json

# Full triad — all three skills
python scripts/pipeline.py --spec specification.json --outcome outcome_report.json

# Continue a prior cycle (self-improving loop)
python scripts/pipeline.py --state pipeline_state.json

# Verify the improvement chain
python scripts/signal_router.py verify --chain references/improvement_chain.json

Options

FlagDescription
--goal TEXTPlain language goal (required if no --spec)
--spec PATHPath to intent-engineering specification.json
--outcome PATHPath to dark-factory outcome_report.json
--state PATHPath to prior pipeline_state.json (continue a cycle)
--output-dir PATHOutput directory (default: ./pipeline_output/)
--cycles NRun N cycles automatically (default: 1)
--no-auto-reviseDisable autonomous re-specification
--no-transferDisable cross-goal skill transfer
--config PATHPath to custom pipeline_config.json

Running Multiple Cycles Automatically

# Run 5 cycles automatically, feeding each output back as input
python scripts/pipeline.py --goal "Achieve 98% pass rate on ticket classification" --cycles 5 --output-dir ./run_001/

Verifying an Improvement Chain

python scripts/signal_router.py verify --chain ./run_001/improvement_chain.json
# Output: Chain verified: 5 links, all hashes valid. No tampering detected.

Outputs

Every pipeline run produces the following in --output-dir:

FileDescription
pipeline_run_report.jsonFull signed pipeline report with all five paradigm shift outputs
pipeline_state.jsonState file for continuing the cycle
improvement_chain.jsonCryptographic improvement chain (appended each cycle)
specification.jsonThe specification used (or generated) this cycle
revised_specification.jsonAuto-revised specification (if Paradigm Shift 3 triggered)
revision_rationale.mdHuman-readable explanation of any auto-revision
learnings_log.jsonUpdated cross-cycle learnings (appended each cycle)
goal_similarity_index.jsonUpdated cross-goal transfer index
observation.jsonNormalized observation (from feedback-loop observer)
analysis.jsonFull analysis (from feedback-loop analyzer)
improvement_report.jsonSigned improvement report (from feedback-loop orchestrator)

Integration with Individual Skills

The unified orchestrator is designed to work with the individual skills, not replace them. You can:

  • Run intent-engineering independently to produce a specification, then pass it to the unified orchestrator with --spec.
  • Run dark-factory independently to produce an outcome report, then pass it with --outcome.
  • Run feedback-loop independently on any observation, then pass the analysis to the unified orchestrator with --analysis.
  • Run the unified orchestrator end-to-end and then use the individual skills to drill into specific stages.

Configuration

Edit references/pipeline_config.json to tune behavior:

{
  "drift_threshold": 0.15,
  "auto_revise_after_n_failures": 3,
  "transfer_similarity_threshold": 0.60,
  "chain_enabled": true,
  "meta_learning_enabled": true,
  "min_cycles_for_meta_learning": 3
}

The Self-Improving Loop

Cycle 1:
  goal → specification → execution → observation → analysis → improvement_report_1
                                                                      ↓
Cycle 2:                                                     pipeline_state.json
  pipeline_state → (transfer check) → specification_v2 → execution → observation
                                                                      ↓
                                                             improvement_report_2
                                                                      ↓
Cycle N:                                                     learnings_log grows
  meta_learner fires (after 3+ cycles) → specification_patches → rule_patches
  → all future specifications start smarter
  → all future feedback loop analyses use better rules
  → drift score stabilizes toward 0.0
  → improvement chain grows as verifiable evidence

Dependency Map

This skill coordinates the following skills. Each is optional — the pipeline degrades gracefully:

SkillRequiredUsed For
intent-engineeringNoSpecification generation from goal text
dark-factoryNoAutonomous execution and behavioral testing
feedback-loop-v2NoObservation normalization, analysis, improvement reports

When all three are absent, the unified orchestrator runs in meta-only mode: it accepts any JSON log or text description, runs the feedback-loop analysis internally, and produces a signed improvement report with cross-goal transfer and drift detection — using only its own embedded logic.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

84.2%
按下载量换算797

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills