Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问clear审计通过

atomiseatomise 命令行

Agent Skill

atomise 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

665

周安装

28

GitHub Stars

17

下载量

233
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:atomise(atomise 命令行)
来源仓库:https://github.com/0xdarkmatter/claude-mods
仓库路径:skills/atomise
安装命令:
npx skills add https://github.com/0xdarkmatter/claude-mods --skill atomise
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/0xdarkmatter/claude-mods --skill atomise

简介

atomise 将复杂问题分解为可独立验证的思维原子,采用回溯机制提升推理可靠性。

  • 适用于安全分析、架构决策与多步证明等高风险复杂任务。
  • 每个原子回答后评估置信度,低于阈值则回溯重组,避免误差累积。
  • 使用前应限定领域(非 trivia 问题),并理解其非线性格局特性。
  • atomise 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Atomise - Atom of Thoughts Reasoning

Decompose complex problems into minimal, verifiable "atoms" of thought. Unlike chain-of-thought (linear, error-accumulating), AoT treats each step as independently verifiable and backtracks when confidence drops.

Use for: Security analysis, architectural decisions, complex debugging, multi-step proofs. Don't use for: Simple questions, trivial calculations, information lookup.

/atomise "<problem>" [--light | --deep] [--math | --code | --security | --design]

The Core Loop

1. DECOMPOSE -> Break into atomic subquestions (1-2 sentences each)
2. SOLVE     -> Answer leaf nodes first, propagate up
3. VERIFY    -> Test each hypothesis (counterexample, consistency, domain check)
4. CONTRACT  -> Summarize verified state in 2 sentences (drop history)
5. EVALUATE  -> Confident enough? Done. Too uncertain? Backtrack and try another path.

Repeat until confident or all paths exhausted.


Atoms

Each atom is a minimal unit:

{id, type, content, depends_on[], confidence, verified}
TypePurposeStarting Confidence
premiseGiven facts1.0
reasoningLogical inferenceInherited from parents
hypothesisClaim to testMax 0.7 until verified
verificationTest resultBased on test outcome
conclusionFinal answerPropagated from chain

Confidence propagates: A child can't be more confident than its least-confident parent.


Confidence (Honest Caveat)

These numbers are *heuristic*, not calibrated probabilities. They're useful for tracking relative certainty, not for actual risk assessment.

ThresholdMeaning
> 0.85Confident enough to conclude
0.6 - 0.85Needs more verification
< 0.6Decompose further or backtrack
< 0.5Backtrack - this path isn't working

Verification adjusts confidence:

  • Confirmed -> maintain or slight boost
  • Partial -> reduce ~15%
  • Refuted -> major reduction, likely backtrack

Modes

Depth:

  • --light - Fast: max 3 levels, 0.70 confidence threshold
  • *(default)* - Standard: max 5 levels, 0.85 threshold
  • --deep - Exhaustive: max 7 levels, 0.90 threshold

Domain (adjusts verification style):

  • --math - Arithmetic checks, proof validation, boundary tests
  • --code - Type checking, invariant verification, test generation
  • --security - Threat modeling, attack surface, adversarial thinking
  • --design - Tradeoff analysis, constraint satisfaction, feasibility

Output

ANSWER: {result}
CONFIDENCE: {0.0-1.0} - {why}

KEY CHAIN: P1 -> R1 -> H1 -> V1 -> C1

ATOMS:
| id | type | content | conf | verified |
|----|------|---------|------|----------|
| P1 | premise | Given: ... | 1.0 | Y |
| R1 | reasoning | Therefore: ... | 0.95 | Y |
| ... | ... | ... | ... | ... |

RISKS: {what could change this}

Add --verbose for full trace, --quiet for just the answer.


Execution Guide

Phase 0: Setup

  1. Restate the problem in one sentence
  2. Extract premises as atoms (given facts = 1.0, assumptions = 0.6)
  3. Sketch approaches: Direct solve? Decompose? Reframe? Pick best.

Phase 1+: Iterate

  1. Atomicity gate: Can you answer from verified atoms? Yes -> solve. No -> decompose.
  2. Decompose: Build dependency tree of atomic subquestions
  3. Solve + Verify: Leaves first, propagate up. Every hypothesis needs verification.
  4. Contract: Summarize in <=2 sentences. Drop everything else.
  5. Evaluate:

- Confident? -> Terminate - Uncertain but viable? -> Continue - Low confidence? -> Backtrack, try alternative

Backtracking

When a path yields confidence < 0.5 after verification:

  1. Prune that branch
  2. Restore to last contracted state
  3. Try alternative from initial sketch

Examples

# Complex debugging
/atomise "Why does this function return null on the second call?" --code

# Security review
/atomise "Is this authentication flow vulnerable to session fixation?" --security

# Architecture decision
/atomise "Should we use event sourcing for this domain?" --deep --design

# Quick decision (light mode)
/atomise "Redis vs Memcached for this cache layer?" --light

Anti-Patterns

BAD:  /atomise "What's 2+2?"           -> Just answer it
BAD:  /atomise "Rewrite this function" -> That's implementation, not reasoning
BAD:  Forcing conclusion despite low confidence -> Let it backtrack
GOOD: /atomise for genuine uncertainty requiring structured decomposition

Remember

  1. Atomic = minimal. 1-2 sentences per atom.
  2. Verify everything. Hypotheses need tests.
  3. Contract aggressively. Keep only what's needed for next step.
  4. Backtrack freely. Low confidence means try another path.
  5. Confidence is heuristic. Useful for structure, not actual probabilities.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenCode

29.3%
按下载量换算68

Gemini CLI

23.37%
按下载量换算54

Antigravity

15.51%
按下载量换算36

Claude Code

10.71%
按下载量换算25

Codex

6.68%
按下载量换算16

windsurf

3.19%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills