Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

claimifyclaimify 搜索

Agent Skill

claimify 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

212

周安装

9

GitHub Stars

公开资料未说明

下载量

74
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add leegonzales/aiskills --skill "claimify"

简介

用于查找并安装 AI 代理技能,扩展宿主功能集。

  • 适合开发者探索可用工具与集成方案时使用。
  • 安装命令:npx skills add leegonzales/aiskills --skill "claimify"。
  • 应验证来源可靠性以防引入恶意代码。claimify 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 原始 README 未提供技能分类与过滤机制。

SKILL.md

name
claimify
description
Extract and structure claims from discourse into analyzable argument maps with logical relationships and assumptions. Use when analyzing arguments, red-teaming reasoning, synthesizing debates, or transforming conversations into structured claim networks. Triggers include "what are the claims," "analyze this argument," "map the logic," or "find contradictions.

Claimify

Extract claims from text and map their logical relationships into structured argument networks.

Overview

Claimify transforms messy discourse (conversations, documents, debates, meeting notes) into analyzable claim structures that reveal:

  • Explicit and implicit claims
  • Logical relationships (supports/opposes/assumes/contradicts)
  • Evidence chains
  • Argument structure
  • Tension points and gaps

Workflow

  1. Ingest: Read source material (conversation, document, transcript)
  2. Extract: Identify atomic claims (one assertion per claim)
  3. Classify: Label claim types (factual/normative/definitional/causal/predictive)
  4. Map: Build relationship graph (which claims support/oppose/assume others)
  5. Analyze: Identify structure, gaps, contradictions, implicit assumptions
  6. Output: Format as requested (table/graph/narrative/JSON)

Claim Extraction Guidelines

Atomic Claims

Each claim should be a single, testable assertion.

Good:

  • "AI adoption increases productivity by 15-30%"
  • "Psychological safety enables team learning"
  • "Current training methods fail to build AI fluency"

Bad (not atomic):

  • "AI is useful and everyone should use it" → Split into 2 claims

Claim Types

TypeDefinitionExample
FactualEmpirical statement about reality"Remote work increased 300% since 2020"
NormativeValue judgment or prescription"Organizations should invest in AI training"
DefinitionalEstablishes meaning"AI fluency = ability to shape context and evaluate output"
CausalX causes Y"Lack of training causes AI underutilization"
PredictiveFuture-oriented"AI adoption will plateau without culture change"
AssumptionUnstated premise[implicit] "Humans resist change"

Relationship Types

  • Supports: Claim A provides evidence/reasoning for claim B
  • Opposes: Claim A undermines or contradicts claim B
  • Assumes: Claim A requires claim B to be true (often implicit)
  • Refines: Claim A specifies/clarifies claim B
  • Contradicts: Claims are mutually exclusive
  • Independent: No logical relationship

Output Formats

Table Format (default)

| ID | Claim | Type | Supports | Opposes | Assumes | Evidence |
|----|-------|------|----------|---------|---------|----------|
| C1 | [claim text] | Factual | - | - | C5 | [source/reasoning] |
| C2 | [claim text] | Normative | C1 | C4 | - | [source/reasoning] |

Graph Format

Use Mermaid for visualization:

graph TD
    C1[Claim 1: AI increases productivity]
    C2[Claim 2: Training is insufficient]
    C3[Claim 3: Organizations should invest]
    
    C1 -->|supports| C3
    C2 -->|supports| C3
    C2 -.->|assumes| C4[Implicit: Change requires structure]

Narrative Format

Write as structured prose with clear transitions showing logical flow:

## Core Argument

The author argues that [main claim]. This rests on three supporting claims:

1. [Factual claim] - This is supported by [evidence]
2. [Causal claim] - However, this assumes [implicit assumption]
3. [Normative claim] - This follows if we accept [prior claims]

## Tensions

The argument contains internal tensions:
- Claims C2 and C5 appear contradictory because...
- The causal chain from C3→C7 has a missing premise...

JSON Format

For programmatic processing:

{
  "claims": [
    {
      "id": "C1",
      "text": "AI adoption increases productivity",
      "type": "factual",
      "explicit": true,
      "supports": ["C3"],
      "opposed_by": [],
      "assumes": ["C4"],
      "evidence": "Multiple case studies cited"
    }
  ],
  "relationships": [
    {"from": "C1", "to": "C3", "type": "supports", "strength": "strong"}
  ],
  "meta_analysis": {
    "completeness": "Missing link between C2 and C5",
    "contradictions": ["C4 vs C7"],
    "key_assumptions": ["C4", "C9"]
  }
}

Analysis Depth Levels

Level 1: Surface

  • Extract only explicit claims
  • Basic support/oppose relationships
  • No implicit assumption mining

Level 2: Standard (default)

  • Extract explicit claims
  • Identify clear logical relationships
  • Surface obvious implicit assumptions
  • Flag apparent contradictions

Level 3: Deep

  • Extract all claims (explicit + implicit)
  • Map full logical structure
  • Identify hidden assumptions
  • Analyze argument completeness
  • Red-team reasoning
  • Suggest strengthening moves

Best Practices

  1. Be charitable: Steelman arguments before critique
  2. Distinguish: Separate what's claimed from what's implied
  3. Be atomic: One claim per line, no compound assertions
  4. Track evidence: Note source/support for each claim
  5. Flag uncertainty: Mark inferential leaps
  6. Mind the gaps: Identify missing premises explicitly
  7. Stay neutral: Describe structure before evaluating strength

Common Patterns

Argument Chains

Premise 1 (factual) → Premise 2 (causal) → Conclusion (normative)

Implicit Assumptions

Often found by asking: "What must be true for this conclusion to follow?"

Contradictions

Watch for:

  • Same speaker, different times
  • Different speakers, same topic
  • Explicit vs implicit claims

Weak Links

  • Unsupported factual claims
  • Causal claims without mechanism
  • Normative leaps (is → ought)
  • Definitional ambiguity

Examples

See references/examples.md for detailed worked examples.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

30.67%
按下载量换算23

windsurf

23.68%
按下载量换算18

OpenCode

15.77%
按下载量换算12

Codex

13.25%
按下载量换算10

Antigravity

8.49%
按下载量换算6

Gemini CLI

3.19%
按下载量换算2

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills