← 返回
效率工具 中文

Decision Recorder

Record, review, search, and analyze decisions from technical work, product work, team discussions, and personal planning. Use when the user wants to capture...
记录、回顾、检索并分析技术工作、产品工作、团队讨论及个人规划中的决策。适用于用户需要捕捉...时。
harrylabsj
效率工具 clawhub v1.0.1 1 版本 99815.2 Key: 无需
★ 0
Stars
📥 540
下载
💾 5
安装
1
版本
#latest

概述

Decision Recorder

Record decisions in a structured format so they can be searched, reviewed, and improved over time.

Core capabilities

  • Detect decision-oriented text
  • Create structured decision records
  • Search and filter past decisions
  • Review decision details
  • Analyze decision patterns
  • Update or delete stored decisions

Commands

Record a decision

decision-recorder record
decision-recorder r

List decisions

decision-recorder list
decision-recorder ls

Search decisions

decision-recorder search <keyword>
decision-recorder s <keyword>

Analyze patterns

decision-recorder analyze
decision-recorder a

View a specific decision

decision-recorder view <id>
decision-recorder v <id>

Update or delete a decision

decision-recorder update <id>
decision-recorder u <id>

decision-recorder delete <id>
decision-recorder d <id>

Detect decision keywords

decision-recorder detect "We decided to use Node.js"
decision-recorder keywords

Common filters

# Filter by tag
decision-recorder list --tag=important

# Filter by date range
decision-recorder list --from=2024-01-01 --to=2024-12-31

Programmatic usage

const dr = require('decision-recorder');

const record = dr.createDecision({
  question: 'Which backend stack should we use?',
  options: ['Node.js', 'Python', 'Go'],
  reasoning: 'Node.js has the best fit for fast iteration and ecosystem support.',
  result: 'Node.js',
  context: 'New product launch',
  tags: ['architecture', 'backend']
});

const matches = dr.searchDecisions('architecture');
const analysis = dr.analyzeDecisions();

Decision record format

{
  "id": "unique-id",
  "timestamp": "ISO-8601 timestamp",
  "question": "Decision question",
  "options": ["Option A", "Option B"],
  "reasoning": "Why this choice was made",
  "result": "Final choice",
  "context": "Background",
  "tags": ["tag-a", "tag-b"]
}

Data location

Decision records are stored under:

~/.decision-recorder/

Each decision is stored as a JSON file.

Recommended use cases

  • Architecture and technology choices
  • Product tradeoff decisions
  • Team decisions after discussion
  • Operational decisions and retrospectives
  • Personal planning and career decisions

Good practice

  1. Record decisions soon after they are made.
  2. Capture reasoning, not just outcomes.
  3. Use tags consistently.
  4. Review decisions periodically.
  5. Compare similar decisions over time.

Notes

  • Requires Node.js 14 or later.
  • Uses local JSON files for storage.
  • Works best when reasoning and context are written clearly.

License

MIT

版本历史

共 1 个版本

  • v1.0.1 当前
    2026-03-19 08:27 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

productivity

Word / DOCX

ivangdavila
创建、检查和编辑 Microsoft Word 文档及 DOCX 文件,支持样式、编号、修订记录、表格、分节符及兼容性检查等功能。
★ 438 📥 147,653
productivity

Weather

steipete
获取当前天气和预报(无需API密钥)
★ 445 📥 226,295
productivity

Nano Pdf

steipete
使用nano-pdf CLI通过自然语言指令编辑PDF
★ 275 📥 114,842