agentsclimarketplace

Skills

Skill 2389-research/deliberation/skills

Decision-making through deliberation - seeking unity through discernment rather than consensus through debate

Install
npx -y skills add 2389-research/deliberation --skill skills

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when facing decisions requiring careful consideration - ethical questions, architecture choices, trade-offs, or when user has a stake and wants to participate in finding clarity. Routes to discernment (internal), clearness (multi-agent), or gathered (participatory).

SKILL.md

4.2 KB, as published. Nobody here has run it

Deliberation

Overview

Decision-making through deliberation — seeking unity through discernment rather than consensus through debate.

This approach draws on Quaker business practice, adapted for AI-assisted decision-making.

Core insight: Some decisions deserve more than quick answers. These skills provide structured approaches for genuine discernment.

The Three Skills

SkillPurposeWhen to Use
deliberation:discernmentInternal voices seeking clarityWeighty questions, ethical decisions, trade-offs, multiple valid approaches
deliberation:clearnessMulti-agent committee with parallel deep workCode reviews, architecture decisions, research needing distributed depth
deliberation:gatheredUser participates alongside agent voicesUser has stake/perspective, wants to discern together rather than receive advice

Routing Logic

digraph deliberation_routing {
    "Question received" [shape=box];
    "User has stake/perspective?" [shape=diamond];
    "Needs parallel deep analysis?" [shape=diamond];
    "Weighty question?" [shape=diamond];
    "deliberation:gathered" [shape=box, style=filled];
    "deliberation:clearness" [shape=box, style=filled];
    "deliberation:discernment" [shape=box, style=filled];
    "Answer directly" [shape=box];

    "Question received" -> "User has stake/perspective?";
    "User has stake/perspective?" -> "deliberation:gathered" [label="yes"];
    "User has stake/perspective?" -> "Needs parallel deep analysis?" [label="no"];
    "Needs parallel deep analysis?" -> "deliberation:clearness" [label="yes"];
    "Needs parallel deep analysis?" -> "Weighty question?" [label="no"];
    "Weighty question?" -> "deliberation:discernment" [label="yes"];
    "Weighty question?" -> "Answer directly" [label="no"];
}

Signals for Each Skill

Use deliberation:gathered when:

  • "I've been thinking about this for weeks"
  • "I'm torn between..."
  • "I think X, but..."
  • "I don't just want your opinion"
  • User expresses their own position in the question

Use deliberation:clearness when:

  • Complex code review touching multiple concerns
  • Architecture decision with many dimensions
  • Research requiring deep exploration of multiple options
  • Task where you'd write a very long response covering many angles shallowly

Use deliberation:discernment when:

  • Ethical weight or potential for harm
  • Multiple valid approaches exist
  • Significant trade-offs
  • You'd naturally want to say "it depends"

Shared Principles

All three skills share these principles:

PrincipleMeaning
Sense of the meetingClerk discerns where unity lies - not counting votes
Speaking onceEach perspective speaks once, then listens
SilencePausing between voices lets insights emerge
Standing aside"I disagree but won't block" - honest without preventing
BlockingRare - only for violations of core principles
Way opensRecognizing when clarity emerges vs. forcing decision

Quick Reference

Discernment (internal):

  1. Identify relevant voices for THIS question
  2. Each voice speaks once
  3. Silence - let it settle
  4. Clerk discerns unity or names tensions
  5. Output with visible process

Clearness (multi-agent):

  1. Propose committee composition to user
  2. Spawn agents with context + perspective
  3. Agents work in parallel
  4. Receive results, sit with them
  5. Synthesize toward unity or name tensions

Gathered (participatory):

  1. Recognize signals, offer gathered
  2. Teach the discipline (speak once, silence ok, slow is point)
  3. Agents speak sequentially with check-ins
  4. User invited to contribute
  5. Synthesis includes user's voice

Shared Resources

  • skills/shared/principles.md - Core principles
  • skills/shared/vocabulary.md - Shared terminology
  • skills/shared/clerk-patterns.md - Synthesis patterns for clerk role

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.