Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Claim Extraction

ASecurity

Extract structured claims, predictions, hints, and opinions from AI research content. Use when processing tweets, blog posts, substacks, or other content from AI researchers to identify substantive assertions about AI capabilities, limitations, and progress.

76 stars
0 votes
0 copies
1 views
Added 2/8/2026
developmentrustgoexpressaws

Security Analysis

A100/100

Scanned 2/12/2026

Install to Claude Code

$npx -y skills add majiayu000/claude-skill-registry --skill claim-extraction --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Claim Extraction?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Claim Extraction
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/majiayu000-claim-extraction/badge)](https://www.skillsdirectory.com/skills/majiayu000-claim-extraction)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: claim-extraction
description: Extract structured claims, predictions, hints, and opinions from AI research content. Use when processing tweets, blog posts, substacks, or other content from AI researchers to identify substantive assertions about AI capabilities, limitations, and progress.
---

# Claim Extraction Skill

Extract all substantive claims from AI research content. A claim is any assertion that:
- States something as true about AI capabilities, limitations, or progress
- Predicts future developments
- Hints at unreleased work
- Expresses a positioned opinion on the field's direction
- Critiques others' claims or work

## Extraction Schema

For each claim, extract:

### 1. claimText
The claim in clear, standalone form. Paraphrase if needed for clarity.

### 2. claimType
- `fact`: Assertion about current state ("GPT-4 can do X")
- `prediction`: Forward-looking ("By 2026, we'll have...")
- `hint`: Implies unreleased work ("We've been seeing interesting results with...")
- `opinion`: Positioned take ("I think scaling is/isn't sufficient")
- `critique`: Challenges others ("Marcus is wrong because...")
- `question`: Genuine uncertainty expressed ("I'm not sure if...")

### 3. topic
Primary topic category:
- `scaling`: Scaling laws, compute, training efficiency
- `reasoning`: LLM reasoning, chain-of-thought, planning
- `agents`: AI agents, tool use, autonomy
- `safety`: AI safety, alignment, control
- `interpretability`: Mechanistic interpretability
- `multimodal`: Vision, audio, video models
- `rlhf`: RLHF, preference learning, Constitutional AI
- `benchmarks`: Evals, benchmarks, capability measurement
- `infrastructure`: Training infra, chips, hardware
- `policy`: AI policy, regulation, governance
- `general`: General AI commentary

### 4. stance
- `bullish`: Optimistic about AI progress/capabilities
- `bearish`: Skeptical/pessimistic about AI progress
- `neutral`: Balanced or factual without clear stance

### 5. bullishness
Float from 0.0 (maximally bearish) to 1.0 (maximally bullish)

### 6. confidence
How confident does the author seem? (0.0-1.0)
- Hedging language: "might", "could", "I think", "possibly" → lower
- Certainty language: "will", "definitely", "it's clear that" → higher

### 7. timeframe (for predictions)
- `near-term`: < 1 year
- `medium-term`: 1-3 years
- `long-term`: 3-10 years
- `unspecified`: No clear timeframe
- `null`: Not a prediction

### 8. evidenceProvided
- `strong`: Cites data, papers, or detailed reasoning
- `moderate`: Some reasoning but not rigorous
- `weak`: Assertion without support
- `appeal-to-authority`: "Trust me, I work on this"

### 9. quoteworthiness
Is this claim notable enough to quote in a digest? (0.0-1.0)

## Output Format

Return JSON:
```json
{
  "claims": [
    {
      "claimText": "The claim in clear form",
      "claimType": "prediction",
      "topic": "reasoning",
      "stance": "bullish",
      "bullishness": 0.8,
      "confidence": 0.7,
      "timeframe": "medium-term",
      "evidenceProvided": "moderate",
      "quoteworthiness": 0.6,
      "relatedTo": ["o1", "chain-of-thought"],
      "originalQuote": "Brief relevant quote if notable"
    }
  ]
}
```

## Guidelines

- Extract MULTIPLE claims from a single piece of content if present
- Don't over-extract - only substantive, meaningful claims
- A tweet saying "Interesting paper" is NOT a claim
- Look for IMPLICIT claims ("We've made a lot of progress" implies capability gains)
- Pay attention to WHO is speaking - lab researchers hinting at their own work is high signal
- Critics often make claims by contradiction ("X is wrong, therefore Y")

## Author Context Matters

Consider the author's affiliation when assessing:
- **Lab researchers** (Anthropic, OpenAI, DeepMind): May hint at unreleased work
- **Critics** (Marcus, Chollet, Mitchell): Often make claims through critique
- **Independent** (Simon Willison, Jim Fan): Provide practitioner perspectives

Attribution

majiayu000majiayu000
View sourceMore from majiayu000 →
SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

284722 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2192 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →