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

strategy-constitutional-memory策略 体质记忆

Agent Skill

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

总安装

4,727

周安装

195

GitHub Stars

公开资料未说明

下载量

1,544
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:strategy-constitutional-memory(策略 体质记忆)
来源仓库:https://github.com/tltby12341/strategy-constitutional-memory
安装命令:
openclaw skills install strategy-constitutional-memory
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install strategy-constitutional-memory

简介

strategy-constitutional-memory 活知识库防止重复犯错,扫描代码避免过往错误模式。

  • 适用于策略迭代、代码审查或团队协作中的经验沉淀与风险控制。
  • 通过 OpenClaw 安装后集成至开发流程,自动检测违规代码结构。
  • 使用前需维护禁止模式库,确保其覆盖常见陷阱与合规红线。
  • 建议定期更新记忆条目,反映最新最佳实践与安全策略变更。

SKILL.md

name
strategy-constitutional-memory
description
A living knowledge base of hard-earned strategy lessons and banned code patterns — prevents repeating past mistakes across strategy iterations by scanning code for violations and generating decision context.
version
1.0.0
metadata
openclaw
requires
bins
emoji
\F4DC

Strategy Constitutional Memory

Stop making the same mistakes twice. This skill maintains a "constitutional memory" of lessons learned from past strategy iterations and a list of banned code patterns. Before generating new strategy code, the AI reads the constitution. After writing code, it scans for violations.

When to use

  • Starting a new strategy iteration: "What lessons should I remember?"
  • After writing strategy code: "Scan this code for violations"
  • After a failed backtest: "Add this lesson to the constitution"
  • When reviewing strategy history: "Show me all critical lessons"

Core Concepts

Lessons

Structured records of what went wrong (or right) in past iterations:

{
  "strategy": "v6",
  "category": "death_spiral",
  "description": "Periodic rebalance caused death spiral: sell anchor -> buy options -> expire worthless -> sell more",
  "evidence": "v6(-82%), v7(-71%), v8(-78.5%), v9(-71.8%)",
  "severity": "critical"
}

Severity levels: critical > high > medium > low

Categories: drawdown, selection, position_sizing, timing, survival_structure, ml_failure, success

Bans

Code patterns that are absolutely prohibited because they've been proven catastrophic:

["rebalance_qqq", "SetHoldings", "hard_stop_loss", "XGBClassifier"]

The scanner is case-insensitive and skips comments and string literals.

API

Initialize

from memory_system import ConstitutionalMemory

memory = ConstitutionalMemory(memory_dir="./memory")

Add a lesson

memory.add_lesson(
    strategy_name="v6",
    category="death_spiral",
    description="Periodic equity rebalance caused -82% drawdown",
    evidence="DD: 82%, triggered at 20% progress",
    severity="critical",
    new_ban="rebalance_anchor"  # optionally add a new banned pattern
)

Auto-extract lessons from diagnosis report

memory.add_lesson_from_diagnosis("v30", diagnosis_report_text)
# Automatically detects: high drawdown, high zero rate, negative ROI

Scan code for violations

violations = memory.scan_code(strategy_code_string)
# Returns: [{"pattern": "rebalance_qqq", "line": 42, "content": "def rebalance_qqq():"}]

The scanner:

  • Is case-insensitive
  • Tracks multi-line strings (triple quotes) and skips them
  • Skips comment lines (#)
  • Strips inline strings and comments before matching

Generate LLM context

context = memory.get_context(max_lessons=30)
# Returns formatted text with lessons sorted by severity,
# banned patterns list, verified blueprints, and core rules

Feed this directly into your LLM system prompt before strategy generation.

CLI Usage

# Get decision context (lessons + bans + blueprints)
python3 -m orchestrator briefing

# Scan a strategy file for violations
python3 -m orchestrator scan --code path/to/strategy.py

# Record an iteration result (auto-adds lessons for failures)
python3 -m orchestrator record \
  --name "my_strategy_v2" \
  --blueprint "baseline" \
  --dimension "position_sizing" \
  --hypothesis "Reduce Kelly from 3% to 2%" \
  --status "early_stop" \
  --drawdown 0.55

Storage

  • memory/lessons.json — Growing list of lessons (auto-persisted)
  • memory/bans.json — Banned code patterns (auto-persisted)

Both files are JSON and human-readable. You can manually edit them.

Seeding

For new projects, call memory.seed_from_history() to populate with your initial lessons. The method is idempotent — it won't overwrite existing data.

Why This Matters

In iterative strategy development, the biggest risk isn't finding the right approach — it's re-trying approaches that already failed. With 20+ iterations, no human (or LLM) can remember every lesson. Constitutional memory makes failures permanent knowledge.

Rules

  • Never bypass the code scanner. Always run scan_code() on new strategy code before submission. The scanner exists to prevent known-fatal patterns from being re-tested.
  • Lessons are append-only by design. Do not delete lessons from lessons.json unless you are certain the lesson was recorded in error. Deleting valid lessons re-opens the door to repeating past failures.
  • Severity levels are immutable once assigned. A "critical" lesson should never be downgraded. If you disagree with a severity, add a new lesson with updated context rather than editing the original.
  • Bans are absolute prohibitions. A banned pattern means "this has been proven catastrophic — do not use under any circumstances." If you believe a ban should be lifted, add a new lesson documenting why before removing the ban.
  • Always call get_context() before generating new strategy code. The constitutional context must be in the LLM's prompt to prevent re-exploring failed approaches.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.77%
按下载量换算1,278

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills