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

nex-decision-journal下一步决策日志

Agent Skill

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

总安装

2,717

周安装

111

GitHub Stars

公开资料未说明

下载量

870
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install nex-decision-journal

简介

个人决策过程记录与推理追踪系统,助力提升长期判断力。

  • 适合在重大抉择前结构化记录前提、选项与后果评估。
  • 结合时间轴追溯过往决策效果,形成可追溯的知识资产。
  • 安装命令:openclaw skills install nex-decision-journal;数据存储于本地优先。
  • 需注意隐私保护,避免敏感信息泄露至非授权路径。

SKILL.md

name
nex-decision-journal
description
>-
version
1.0.0
metadata
clawdbot
emoji
🎯
requires
bins
env
[]
primaryEnv
homepage
https://nex-ai.be
files

Nex Decision Journal

Log decisions, track reasoning, review outcomes. See where your judgment is sharp and where it needs work.

When to Use

Use this skill when the user asks about:

  • Logging, recording, or tracking a decision they're about to make
  • Deciding between multiple options and wanting to document their reasoning
  • Predicting outcomes and wanting to check their accuracy later
  • Reviewing past decisions and their outcomes
  • Checking what decisions are due for follow-up review
  • Searching through their decision history
  • Understanding their decision-making patterns (overconfidence, underconfidence)
  • Getting statistics on their prediction accuracy
  • Reflecting on lessons learned from past decisions
  • Exporting their decision journal for analysis
  • Viewing a timeline of decisions
  • Tracking business decisions: hiring, pricing, product, partnership, investment
  • Tracking personal decisions: career moves, health, finances
  • Wanting accountability for important choices
  • Building a decision-making knowledge base from their own experience
  • Asking about their judgment patterns or cognitive biases

Trigger phrases: "decision", "deciding", "should I", "log this decision", "track my decision", "what did I decide", "review my decisions", "decision journal", "prediction", "outcome", "how accurate am I", "overconfident", "lessons learned", "follow up on decision", "beslissing", "besluit", "keuze maken"

Quick Setup

If the database does not exist yet, run the setup script:

bash setup.sh

This creates ~/.nex-decision-journal/ with the SQLite database and export directory.

Available Commands

The CLI tool is nex-decision-journal. All commands output plain text.

Log a Decision

Log a new decision with full context:

# Minimal: just a title
nex-decision-journal log "Hire a junior developer"

# Full context
nex-decision-journal log "Hire a junior developer" \
  --context "Team is overwhelmed. Current sprint velocity dropped 30%. Need more hands." \
  --options "Hire full-time at 3K/month, Hire freelancer at 45/hour, Wait 3 months and reassess" \
  --chosen "Hire freelancer at 45/hour" \
  --reasoning "Full-time is too risky with current runway. Freelancer gives flexibility to scale down if revenue dips." \
  --prediction "Freelancer will handle the backlog within 2 months and we'll convert to full-time by Q4" \
  --confidence 7 \
  --category hiring \
  --stakes high \
  --tags "team,capacity,budget" \
  --follow-up 3m

# Quick log with just the essentials
nex-decision-journal log "Switch from Firebase to Supabase" \
  --reasoning "Firebase costs are scaling badly" \
  --prediction "Migration takes 3 weeks, saves 40% on hosting by month 2" \
  --confidence 6 \
  --category technical \
  --follow-up 2m

Follow-up accepts: 1w, 2w, 1m, 2m, 3m, 6m, 1y, a number of days (e.g., 45), or an ISO date (e.g., 2026-09-01). Default: 90 days.

Show a Decision

Show full details of a logged decision:

nex-decision-journal show 1

List Decisions

List all decisions with optional filters:

# All decisions
nex-decision-journal list

# Filter by status
nex-decision-journal list --status pending
nex-decision-journal list --status reviewed

# Filter by category
nex-decision-journal list --category hiring

# Filter by tag
nex-decision-journal list --tags budget

Review a Decision (Record Outcome)

When the follow-up date arrives, record what actually happened:

nex-decision-journal review 1 \
  --outcome "Freelancer delivered 80% of backlog in 6 weeks. Quality was good." \
  --accuracy correct \
  --notes "Slightly ahead of schedule" \
  --lesson "Freelancers work well for defined backlogs. Less good for open-ended feature work."

Accuracy options: correct, partially_correct, wrong.

Check Pending Reviews

See which decisions are overdue for review:

nex-decision-journal pending

Search Decisions

Full-text search across all decision fields:

nex-decision-journal search "freelancer"
nex-decision-journal search "pricing"
nex-decision-journal search "Firebase"

View Statistics

See your decision-making patterns:

nex-decision-journal stats

Shows: total decisions, prediction accuracy breakdown, average confidence, confidence by accuracy, overconfidence/underconfidence alerts, decisions by category and stakes, monthly volume.

Reflect on Patterns

Bias detection, accuracy by category, lessons learned:

nex-decision-journal reflect

Shows: accuracy by category, overconfident decisions (high confidence but wrong), underconfident decisions (low confidence but correct), and all lessons learned.

Edit a Decision

Update fields on an existing decision:

nex-decision-journal edit 1 --prediction "New prediction after more info" --confidence 8
nex-decision-journal edit 1 --tags "team,capacity,budget,q2"
nex-decision-journal edit 1 --follow-up 6m

Abandon a Decision

Mark a decision as abandoned (never acted on):

nex-decision-journal abandon 3 --reason "Client cancelled the project"

List Tags

See all tags used across decisions:

nex-decision-journal tags

Export Decisions

Export to JSON or CSV for external analysis:

nex-decision-journal export json
nex-decision-journal export csv --status reviewed --output "reviewed_decisions.csv"

Timeline View

See decisions on a timeline:

nex-decision-journal timeline
nex-decision-journal timeline --start 2026-01-01 --end 2026-06-30

Example Interactions

User: "I need to decide whether to raise my agency prices from 299 to 399 per month. Help me log this." Agent runs: nex-decision-journal log "Raise retainer pricing from 299 to 399/month" --context "Current margins are thin at 299. Competitors charge 350-500. 3 clients out of 12 have mentioned they'd pay more for faster turnaround." --options "Raise to 399 for new clients only, Raise to 399 for everyone, Raise to 349 as compromise, Keep at 299" --chosen "Raise to 399 for new clients only" --reasoning "Grandfather existing clients to avoid churn. Test new price point on incoming leads." --prediction "New clients will still convert at 60%+ close rate. No existing client churn." --confidence 7 --category pricing --stakes high --tags "pricing,revenue,agency" --follow-up 3m Agent: "Logged your pricing decision (ID: 5). You chose to raise to 399 for new clients only, with 7/10 confidence that conversion stays above 60%. I'll remind you to review the outcome in 3 months."

User: "How did my decisions turn out this quarter?" Agent runs: nex-decision-journal stats Agent: "Here's your Q1 summary. You logged 8 decisions. Of the 5 you've reviewed, you were correct on 3, partially correct on 1, and wrong on 1. Your average confidence was 6.4/10. You tend to be slightly overconfident on hiring decisions (2 were wrong despite 7+/10 confidence)."

User: "Show me decisions where I was overconfident" Agent runs: nex-decision-journal reflect Agent: "You have 2 overconfident decisions where you rated 7+/10 confidence but the prediction was wrong. Both were in the hiring category. The lesson from decision #3 was: 'Cultural fit matters more than technical skills for long-term hires.'"

User: "What decisions are due for review?" Agent runs: nex-decision-journal pending Agent: "3 decisions are overdue for review: pricing change (12 days overdue), new marketing channel (5 days overdue), and office lease renewal (2 days overdue). Want to review any of them now?"

User: "The pricing change worked out great. Close rate stayed at 65%." Agent runs: nex-decision-journal review 5 --outcome "Close rate stayed at 65% with new 399 pricing. Revenue per new client up 33%." --accuracy correct --lesson "Grandfather existing, test new price on leads. Works every time." Agent: "Outcome recorded for your pricing decision. Prediction was correct. Your overall accuracy is now 67% across reviewed decisions."

User: "I decided not to go through with the partnership deal after all" Agent runs: nex-decision-journal abandon 7 --reason "Due diligence revealed financial red flags" Agent: "Decision #7 marked as abandoned. Reason: due diligence revealed financial red flags."

User: "Search my decisions for anything about Firebase" Agent runs: nex-decision-journal search "Firebase" Agent: "Found 2 decisions mentioning Firebase: #4 (Switch from Firebase to Supabase, pending review) and #9 (Add Firebase Analytics to client dashboards, reviewed, prediction was partially correct)."

User: "Export all my reviewed decisions to CSV" Agent runs: nex-decision-journal export csv --status reviewed Agent: "Exported 12 reviewed decisions to ~/.nex-decision-journal/exports/decisions_export.csv."

User: "Show me a timeline of everything I decided this year" Agent runs: nex-decision-journal timeline --start 2026-01-01 Agent: "Here's your decision timeline for 2026. January: 3 decisions (2 reviewed, 1 pending). February: 5 decisions (3 reviewed, 1 wrong, 1 pending). March: 4 decisions (all pending)."

Output Parsing

All CLI output is plain text, structured for easy parsing:

  • Decision IDs are always shown in brackets: [1], [2], etc.
  • Dates are in ISO-8601 format (YYYY-MM-DD)
  • Confidence is shown as X/10
  • Accuracy symbols: [OK] = correct, [~~] = partially correct, [XX] = wrong
  • Every command output ends with [Decision Journal by Nex AI | nex-ai.be]

When presenting output to the user, strip the footer line and present the information naturally.

Important Notes

  • All data is stored locally at ~/.nex-decision-journal/. No telemetry, no analytics.
  • Decisions are never auto-deleted. Use abandon to mark unused decisions.
  • Follow-up dates are suggestions, not hard deadlines. The pending command shows overdue reviews.
  • Confidence scoring is subjective but patterns emerge after 10+ reviewed decisions.
  • Export to CSV for spreadsheets, or JSON for programmatic analysis.

Troubleshooting

  • "No module named lib": Run from the skill directory, or ensure lib/ is in the same folder as nex-decision-journal.py.
  • "Database is locked": Another process may be using the database. Wait and retry.
  • "No decisions found": Run nex-decision-journal list to verify decisions exist. Use nex-decision-journal log to add one.
  • FTS search returns no results for valid terms: Try a simpler query. FTS5 uses prefix matching. Single short words work best.
  • "Confidence must be between 1 and 10": The confidence flag only accepts integers from 1 to 10.
  • Follow-up not triggering: The pending command checks if follow_up_date <= today. Run it regularly or integrate with a cron/scheduled task.
  • Export directory not found: Run bash setup.sh to recreate the directory structure.

Credits

Built by Nex AI (https://nex-ai.be) - Digital transformation for Belgian SMEs. Author: Kevin Blancaflor

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.39%
按下载量换算682

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills