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

decision-journal决策日志

Agent Skill

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

总安装

10,036

周安装

406

GitHub Stars

公开资料未说明

下载量

3,151
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install decision-journal

简介

记录与反思个人或专业决策过程,建立可追溯的成长轨迹档案。

  • 适合希望提升决策能力或积累经验教训的学习型用户。
  • 按时间线归档关键节点,支持添加上下文、结果与后续调整建议。
  • 隐私敏感内容请加密存储,避免云端泄露造成信息风险。
  • decision-journal 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
decision-journal
description
Record, track, and analyze personal or professional decisions with structured reflection. Use when the user wants to (1) document a decision they're making or have made, (2) review past decisions and their outcomes, (3) analyze decision patterns and learn from them, (4) create a decision-making framework, or (5) reflect on decision quality and outcomes. Triggers on phrases like "record decision", "decision log", "track my decisions", "analyze my choices", "reflect on my decision", "decision review".

Decision Journal

⚠️ 免责声明:本工具仅用于个人或职业决策的记录、回顾与反思,不构成心理咨询、医疗建议、法律意见、投资建议或其他专业判断。涉及情绪危机、自伤/伤人风险、医疗、法律或高风险投资时,应立即寻求相应专业人士或当地紧急支持资源。

A structured system for capturing, organizing, and learning from decisions.

Quick Start

Record a New Decision

/decision "Should I take the new job offer?"
- Context: Current role stable but stagnant, new offer 30% higher pay but more travel
- Options: (1) Stay, negotiate raise (2) Accept new role (3) Decline and keep looking
- Decision: Accept new role
- Reasoning: Growth opportunity outweighs lifestyle impact; can reassess in 6 months
- Expected outcome: Higher salary, new skills, possible travel fatigue
- Review date: 2025-09-15

Review Past Decisions

/decision review
/decision review --last 5
/decision review --tag career --status pending

Capability Boundaries

Tier 1: Currently Supported (Core)

  • record and store structured decisions with context, options, reasoning
  • review past decisions and capture outcomes/lessons
  • list and filter decisions by tag, status, date
  • basic statistics and pattern analysis
  • export decision data for personal review (JSON/Markdown/CSV)
  • review reminders and due date tracking

Tier 2: Ready with Light Engineering

  • calendar integration for review reminders
  • advanced pattern detection across decisions
  • decision quality scoring algorithms
  • backup/sync across devices

Tier 3: Explicitly Not Supported

  • mental health counseling, diagnosis, or crisis support
  • telling the user which life choice is objectively "best"
  • medical, legal, investment, or other licensed professional advice
  • handling self-harm, suicide, violence risk, or acute mental health emergencies inside the normal workflow

If the user is actually asking for emotional stabilization, crisis support, or psychological guidance, do not force this skill. Route to a more appropriate support flow instead.

High-Risk Escalation

⚠️ Stop the normal decision-journal flow immediately if the user expresses any of the following:

  • self-harm or suicide thoughts
  • intent to harm other people
  • overwhelming despair or inability to stay safe
  • obvious acute mental-health crisis that makes structured reflection inappropriate

Use a direct response like:

⚠️ 重要提示:现在不适合继续做普通决策记录。若你有伤害自己或他人的想法,或已难以保证自身安全,请立即联系身边可信任的人,并尽快联系当地急救、医院急诊、心理危机干预热线或持证专业人士。

Then keep the tone calm, direct, and serious. Do not continue normal prompts such as options, reasoning, or review dates until safety is addressed.

Core Concepts

Each decision entry captures:

FieldPurpose
SituationWhat prompted the decision
OptionsAlternatives considered
DecisionWhat was chosen
ReasoningWhy this choice was made
ExpectedAnticipated outcomes
Review DateWhen to evaluate results
OutcomeActual results (added later)
LessonsInsights gained

Commands

/decision <title>

Record a new decision interactively or with inline details.

Options:

  • --tag <tag>: Categorize (career, finance, health, relationships, etc.)
  • --importance <1-5>: Significance level
  • --reversible <yes/no>: Whether decision can be undone
  • --review <date>: When to evaluate outcomes

/decision list

Show recent decisions with status.

Filters:

  • --tag <tag>: Filter by category
  • --status <pending/completed/review>: Filter by status
  • --last <n>: Show last N decisions
  • --since <date>: From date onward

/decision review <id>

Review and update a specific decision with outcomes.

/decision analyze

Analyze decision patterns and quality over time.

Reports:

  • --timeframe <period>: Analysis period (30d, 90d, 1y, all)
  • --tag <tag>: Analyze specific category
  • --type <accuracy/speed/patterns>: Report type

/decision export

Export decision history to various formats.

Formats:

  • --format markdown: Readable document
  • --format json: Structured data
  • --format csv: Spreadsheet compatible

Storage

Decisions are stored in:

~/.openclaw/decisions/
├── decisions.jsonl     # Append-only decision log
├── reviews.jsonl       # Review records
├── patterns.json       # Extracted patterns
├── index.json          # Searchable index
└── templates/
    ├── default.md      # Standard decision template
    ├── quick.md        # Minimal template
    └── strategic.md    # Complex decision template

Workflow Patterns

Pattern 1: Capture in the Moment

When facing a decision, quickly log the key elements before deciding:

/decision "Which vendor to choose for project X?"
- Vendor A: Cheaper, less proven
- Vendor B: 20% more expensive, strong track record
- Vendor C: New entrant, innovative approach

[After deliberation]
Decision: Vendor B
Reason: Risk mitigation worth the premium for critical project
Review: 2025-06-01

Pattern 2: Scheduled Review

Set review dates for important decisions:

/decision review --due
# Shows all decisions where review date has passed
# Update with actual outcomes and lessons

Pattern 3: Decision Pre-mortem

Before committing, imagine the decision failed:

/decision "Pre-mortem: Project launch failed"
- What went wrong? Market timing off
- What signals did we miss? Competitor moved faster
- What would we do differently? Earlier soft launch

Now: Adjust plan based on these insights

Decision Quality Framework

When reviewing decisions, assess:

  1. Process Quality

- Did I consider enough options? - Did I gather relevant information? - Did I account for biases?

  1. Outcome Quality

- Did the expected outcomes materialize? - Were there unexpected consequences? - Am I satisfied with the result?

  1. Learning Value

- What would I do differently? - What patterns emerge across decisions? - How has my decision-making improved?

Integration

With Calendar

Link review dates to calendar reminders:

/decision "Should I invest in X?"
--review 2025-12-01
--calendar-reminder "Review investment decision"

With Notes

Reference related notes or documents:

/decision "Office relocation decision"
--reference [[meeting-notes/2025-03-01]]
--reference [[budget-analysis-q1]]

Templates

See templates/ for decision frameworks:

  • WRAP (Widen options, Reality-test, Attain distance, Prepare)
  • 10-10-10 (How will I feel in 10 min/10 months/10 years?)
  • Pros/Cons/Consequences (Weighted analysis)
  • Decision Matrix (Criteria-based scoring)

For detailed template usage, see references/templates.md.

Analysis & Insights

The skill can generate reports on:

  • Decision velocity: How quickly you decide
  • Decision types: What you decide most often
  • Outcome accuracy: Expected vs. actual results
  • Bias patterns: Overconfidence, sunk cost, etc.
  • Improvement trends: Decision quality over time

For analysis methodology, see references/analysis.md.

CLI Usage

The skill provides a CLI tool decision:

# Add a new decision
decision add "Title" --situation "..." --options "A|B|C" --decision "A" --review 2025-06-01

# List decisions
decision list --last 10 --tag career

# Review a decision
decision review <id> --outcome "..." --lessons "..." --satisfaction 4

# Analyze patterns
decision analyze --timeframe 90d

# Export data
decision export --format markdown --output decisions.md

# Check for pending reviews
decision remind

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.25%
按下载量换算2,592

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills