Back to list
pidster

dialogue-log-decision

by pidster

3🍴 0📅 Jan 24, 2026

SKILL.md


name: dialogue-log-decision description: Log a decision to the decision log. Supports OPERATIONAL, TACTICAL, DESIGN, and ADR types. Use when recording decisions made by human or AI. Triggers on "decision", "decided", "log decision", "record decision", "document choice". allowed-tools: Bash

Dialogue: Decision Logger

Log a decision to the decision log. The decision log is a chronological audit trail of all decisions, from routine operational choices to architectural decisions.

Decision Type Hierarchy

TypeWhen to UseRequired FieldsFramework Grounding
OPERATIONALRoutine choices during task executionoutcome, rationaleWRK domain, Ephemeral, documentable knowledge
TACTICALApproach changes affecting methodoutcome, rationaleWRK domain, Ephemeral-Dynamic, elicitable knowledge
DESIGNComponent/schema decisions with rationaleoutcome, rationale, contextSTR domain, Dynamic-Standing, elicitable with rationale
ADRCross-reference to Architecture Decision Recordoutcome, rationale, context, refSTR domain, Standing, formal alternatives analysis

Choosing the Right Type

Did you formally evaluate multiple alternatives with trade-offs?
  YES → Use ADR type (create ADR document first, then log with ref)
  NO  → Continue...

Does this affect how a component or schema works?
  YES → Use DESIGN
  NO  → Continue...

Does this change your approach to the current task?
  YES → Use TACTICAL
  NO  → Use OPERATIONAL

How to Log a Decision

Execute the following bash command:

${CLAUDE_PLUGIN_ROOT}/skills/dialogue-log-decision/scripts/log-decision.sh <type> <actor> <subject> <outcome> <rationale> [context] [tags] [ref]

Required Parameters

ParameterValuesDescription
typeOPERATIONAL, TACTICAL, DESIGN, or ADRDecision significance level
actorai:claude or human:<id>Who made the decision
subjecttextBrief description of what the decision concerns
outcometextWhat was decided or done
rationaletextSingle-line reasoning (why this choice)

Conditionally Required Parameters

ParameterRequired ForDescription
contextDESIGN, ADRAdditional surrounding situation—what led to this decision

Optional Parameters

ParameterDescription
contextAdditional context (optional for OPERATIONAL/TACTICAL)
tagsComma-separated categorisation tags
refReference to related document (e.g., ADR-001 for ADR type)

Examples

OPERATIONAL Decision

${CLAUDE_PLUGIN_ROOT}/skills/dialogue-log-decision/scripts/log-decision.sh OPERATIONAL "ai:claude" "Test failure response" "Added null check to validateInput()" "TypeError indicated undefined parameter" "" "fix,validation"

TACTICAL Decision

${CLAUDE_PLUGIN_ROOT}/skills/dialogue-log-decision/scripts/log-decision.sh TACTICAL "human:pidster" "Refactoring approach" "Refactor auth module before adding feature" "Reduce complexity before extending" "" "refactor,auth"

DESIGN Decision

${CLAUDE_PLUGIN_ROOT}/skills/dialogue-log-decision/scripts/log-decision.sh DESIGN "human:pidster" "Information reference schema approach" "Simplified from URI format to self-describing IDs" "Simpler format reduces cognitive load, maintains backward compatibility" "Initial v1 had complex URI format; user directed simplification" "schema,simplification"

ADR Cross-Reference

${CLAUDE_PLUGIN_ROOT}/skills/dialogue-log-decision/scripts/log-decision.sh ADR "human:pidster" "Graph storage approach" "Created ADR-001 for filesystem-first strategy" "Architectural decision requiring formal alternatives analysis" "Evaluated Kuzu, Neo4j, filesystem options" "architecture,storage" "ADR-001"

Output

The script returns the generated decision ID (e.g., DEC-20260113-143215).

When to Use ADR vs DESIGN

Use DESIGN when:

  • You chose an approach but didn't formally document alternatives
  • The decision affects a component but not the whole system
  • Rationale matters but a full ADR would be overkill

Use ADR when:

  • You formally evaluated 2+ alternatives with pros/cons
  • The decision has system-wide architectural impact
  • You need to document consequences and trade-offs
  • Future developers will need to understand why

Process for ADR:

  1. Create ADR document using dialogue-create-adr skill
  2. Log cross-reference using this skill with type=ADR and ref=ADR-NNN

Granularity Guidelines

One Decision Per Distinct Choice

Log one decision entry per distinct choice. Do not batch multiple decisions into a single entry.

Why Granularity Matters

  • Audit trail: Each decision can be reviewed independently
  • Traceability: Specific rationale for each choice is preserved
  • Search: Can find all decisions about a specific subject
  • Compliance verification: Can count decisions against expected count

When Batching Is Acceptable

Batch only when:

  • The decisions are truly identical (same rationale applies to all)
  • The items being decided have no individual identity
  • Example: "Applied consistent formatting to all 15 files" (one formatting decision, multiple files)

Sharing

Always commit and push immediately after logging a decision. Decisions capture rationale that is otherwise tacit—delayed sharing means delayed theory-building for the team.

git add .dialogue/logs/decisions/ && git commit -m "DEC-YYYYMMDD-HHMMSS: <subject>" && git push

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon