Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计提醒

decision-frameworks决策框架

Agent Skill

decision-frameworks 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

59,526

周安装

2,408

GitHub Stars

公开资料未说明

下载量

18,686
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install decision-frameworks

简介

常见工程选择的结构化决策模式 - 库选择、架构、构建与购买、优先级、可逆性分析和 ADR。在工具、架构或方法之间进行选择时,或者在记录技术决策时使用。

SKILL.md

name
decision-frameworks
model
reasoning
description
Structured decision-making patterns for common engineering choices — library selection, architecture, build vs buy, prioritization, reversibility analysis, and ADRs. Use when choosing between tools, architectures, or approaches, or when documenting technical decisions.

Decision Frameworks (Meta-Skill)

Structured approaches for making engineering decisions with confidence and traceability.

Installation

OpenClaw / Moltbot / Clawbot

npx clawhub@latest install decision-frameworks

When to Use

  • Choosing between libraries, frameworks, or tools
  • Facing a build-vs-buy decision
  • Selecting an architecture pattern (monolith vs microservices, SQL vs NoSQL, etc.)
  • Multiple valid options exist and the team needs alignment
  • Prioritizing a backlog or technical roadmap
  • Documenting a significant technical decision for future reference

Decision Matrix Template

Use a weighted scoring matrix when comparing 3+ options across measurable criteria.

CriteriaWeightOption AOption BOption C
Performance54 (20)3 (15)5 (25)
Developer Experience45 (20)4 (16)3 (12)
Community Support35 (15)3 (9)2 (6)
Learning Curve33 (9)4 (12)2 (6)
Cost25 (10)3 (6)4 (8)
Total745857

How to use:

  1. List criteria relevant to the decision
  2. Assign weights (1-5) based on project priorities
  3. Score each option per criterion (1-5)
  4. Multiply score x weight, sum per option
  5. Highest total wins — but sanity-check the result against gut feel

Build vs Buy Framework

Follow this decision tree:

Is it a core differentiator for your product?
├── YES → Build it (own the competitive advantage)
└── NO
    ├── Does a mature, well-maintained solution exist?
    │   ├── YES → Buy / adopt it
    │   └── NO → Build, but keep it minimal
    └── Is the integration cost higher than building?
        ├── YES → Build
        └── NO → Buy / adopt

Factor comparison:

FactorBuildBuy / Adopt
Maintenance costOngoing — your team owns itVendor/community maintains it
CustomizationUnlimited flexibilityLimited to extension points
Time to marketSlower — development requiredFaster — ready-made
Team expertiseMust have or acquire skillsAbstracted away
Long-term costScales with internal capacityLicense/subscription fees
Vendor lock-in riskNoneMedium to high
Security controlFull audit capabilityDependent on vendor transparency

Library / Framework Selection

Evaluate candidate libraries against these criteria before adopting:

CriterionWhat to CheckRed Flag
Maintenance activityCommits in last 90 days, open issues trendNo commits in 6+ months
Community sizeGitHub stars, npm weekly downloads, Discord/forum< 1k weekly downloads for critical lib
Bundle sizeBundlephobia, tree-shaking support> 50 KB gzipped for a utility lib
TypeScript supportBuilt-in types vs DefinitelyTyped, type qualityNo types or outdated @types
Breaking change historyChangelog, semver adherence, migration guidesFrequent majors without guides
LicenseOSI-approved, compatible with your projectAGPL in a SaaS product, no license
Security auditSnyk/Socket score, CVE history, dependency depthKnown unpatched CVEs
Documentation qualityGetting started guide, API reference, examplesREADME-only, no examples

Quick heuristic: If you cannot replace the library within one sprint, treat the decision as a one-way door (see Reversibility Check below).


Architecture Decision Framework

Use these tradeoff tables when choosing between architectural approaches.

Monolith vs Microservices

FactorMonolithMicroservices
ComplexityLow at start, grows over timeHigh from day one
DeploymentSingle artifactIndependent per service
Team scalingHarder beyond 10-15 engineersEnables autonomous teams
Data consistencyACID transactionsEventual consistency, sagas
DebuggingSingle process, easy tracingDistributed tracing required
Best whenEarly-stage, small team, MVPProven domain boundaries, scale needs

SQL vs NoSQL

FactorSQL (Relational)NoSQL (Document/Key-Value)
SchemaStrict, enforcedFlexible, schema-on-read
RelationshipsNative joins, foreign keysDenormalized, application-level joins
ScalingVertical (read replicas help)Horizontal by design
ConsistencyStrong (ACID)Tunable (eventual to strong)
Query flexibilityAd-hoc queries, aggregationsLimited to access patterns
Best whenComplex relations, reportingHigh write volume, flexible schema

REST vs GraphQL

FactorRESTGraphQL
SimplicitySimple, well-understoodSchema definition required
Over/under-fetchingCommon — multiple endpointsClients request exact fields
CachingHTTP caching built-inRequires custom caching layer
ToolingMature ecosystemGrowing — Apollo, Relay, urql
VersioningURL or header versioningSchema evolution, deprecation
Best whenCRUD APIs, public APIsComplex UIs, mobile + web clients

SSR vs CSR vs SSG

FactorSSRCSRSSG
Initial loadFast (HTML from server)Slow (JS bundle parse)Fastest (pre-built HTML)
SEOExcellentPoor without hydrationExcellent
Best whenPersonalized pagesDashboards, SPAsBlogs, docs, marketing

Monorepo vs Polyrepo

FactorMonorepoPolyrepo
Code sharingTrivial — same repoRequires published packages
CI/CD complexityNeeds smart filtering (Turborepo)Simple per-repo pipelines
Best whenShared libs, aligned releasesIndependent teams, different stacks

Priority Matrices — RICE Scoring

Score and rank features/tasks:

RICE Score = (Reach x Impact x Confidence) / Effort
FactorScale
ReachNumber of users/events affected per quarter
Impact3 = massive, 2 = high, 1 = medium, 0.5 = low, 0.25 = minimal
Confidence100% = high, 80% = medium, 50% = low
EffortPerson-weeks (or person-sprints)

MoSCoW Method

CategoryMeaningBudget Target
MustNon-negotiable for this release~60% of effort
ShouldImportant but not critical~20% of effort
CouldDesirable if time permits~15% of effort
Won'tExplicitly out of scope (this time)~5% (planning)

Reversibility Check

Classify every significant decision as a one-way or two-way door.

AspectOne-Way Door (Type 1)Two-Way Door (Type 2)
DefinitionIrreversible or very costly to undoEasily reversed with low cost
ExamplesDatabase engine migration, public API contract, language rewriteUI framework for internal tool, feature flag experiment, library swap behind interface
How to identifyWould reverting require > 1 sprint of rework? Data migration? Customer communication?Can you revert with a config change, flag toggle, or single PR?
ApproachInvest in analysis, prototype, get stakeholder sign-offDecide fast, ship, measure, iterate
Time to decideDays to weeks — thorough evaluationHours — bias toward action

Rule of thumb: Wrap risky choices behind interfaces/abstractions. This converts many one-way doors into two-way doors by isolating the implementation from consumers.


ADR Template

Document significant decisions using a lightweight Architecture Decision Record.

# ADR-NNNN: [Short Title]

## Status
[Proposed | Accepted | Deprecated | Superseded by ADR-XXXX]

## Context
What is the problem or situation that motivates this decision?
Include constraints, requirements, and forces at play.

## Decision
What is the change being proposed or adopted?
State the decision clearly and concisely.

## Consequences

### Positive
- [Benefit 1]
- [Benefit 2]

### Negative
- [Tradeoff 1]
- [Tradeoff 2]

### Risks
- [Risk and mitigation]

Store in docs/adr/ or decisions/. Number sequentially. Never delete — mark superseded. Review during onboarding and quarterly audits.


Anti-Patterns

Anti-PatternDescriptionCounter
Analysis ParalysisEndless evaluation, no decision madeSet a decision deadline; use the matrix
HiPPOHighest Paid Person's Opinion overrides dataRequire data or a scored matrix for all options
Sunk Cost FallacyContinuing because of past investment, not future valueEvaluate options as if starting fresh today
Bandwagon EffectChoosing because "everyone uses it"Score against your actual criteria
Premature OptimizationOptimizing before measuring or validating needProfile first; optimize only proven bottlenecks
Resume-Driven DevelopmentPicking tech to pad a resume, not to solve the problemAlign choices with team skills and project goals
Not Invented HereRejecting external solutions out of prideRun the Build vs Buy framework honestly

NEVER Do

  1. NEVER skip writing down the decision — undocumented decisions get relitigated endlessly
  2. NEVER decide by committee without a single owner — assign a DRI (Directly Responsible Individual)
  3. NEVER treat all decisions as equal weight — classify by reversibility and impact first
  4. NEVER ignore second-order effects — ask "and then what?" at least twice
  5. NEVER lock in without an exit plan — define how you would migrate away before committing
  6. NEVER conflate familiarity with superiority — evaluate on criteria, not comfort
  7. NEVER defer a one-way door decision indefinitely — the cost of delay often exceeds the cost of a wrong choice

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

92.27%
按下载量换算17,242

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills