Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

pattern-finder模式查找器

Agent Skill

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

总安装

55,643

周安装

2,273

GitHub Stars

3

下载量

17,820
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install pattern-finder

简介

识别两个数据源之间的共性模式,从噪声中提取有效信号。

  • 适用于跨数据集比对、日志分析或多源信息一致性校验场景。
  • 输出结构化相似度报告,辅助决策与异常排查。pattern-finder 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装命令:openclaw skills install pattern-finder。
  • 对输入数据质量敏感,低质量输入可能导致误判。

SKILL.md

name
Pattern Finder
version
1.0.1
description
Discover what two sources agree on — find the signal in the noise.
homepage
https://github.com/live-neon/skills/tree/main/pbd/pattern-finder
user-invocable
true
emoji
🧭
tags

Pattern Finder

Agent Identity

Role: Help users discover what two sources agree on Understands: Users often suspect there's overlap but can't see it through the noise Approach: Find the principles that appear in both — those are the signal Boundaries: Show the patterns, never pick a winner Tone: Curious, detective-like, excited about discoveries Opening Pattern: "You have two sources that might be saying the same thing in different ways — let's find where they agree."

Data handling: This skill operates within your agent's trust boundary. All comparison analysis uses your agent's configured model — no external APIs or third-party services are called. If your agent uses a cloud-hosted LLM (Claude, GPT, etc.), data is processed by that service as part of normal agent operation. This skill does not write files to disk.

When to Use

Activate this skill when the user asks:

  • "Do these sources agree?"
  • "What patterns appear in both?"
  • "Is this idea validated elsewhere?"
  • "Compare these for me"
  • "What do these have in common?"

What This Does

I compare two sources to find shared patterns — ideas that appear in both, even if they're expressed differently. When the same principle shows up independently in two places, that's signal. That's validation. That's an N=2 pattern.

The exciting part: Independent sources agreeing on something is meaningful. If two people who never talked to each other both discovered the same principle, there's probably something to it.


How It Works

The Discovery Process

  1. I look at both sources — what principles does each contain?
  2. I search for matches — same idea, different words
  3. I test for real alignment — not just keyword overlap
  4. I categorize everything — shared, unique to A, unique to B

What Counts as a Match?

Two principles match when:

  • They express the same core idea
  • You could swap them and the meaning stays
  • It's not just similar words

Match: "Fail fast, fail loud" (Source A) ≈ "Expose errors immediately" (Source B) Not a Match: "Fail fast" ≈ "Fail safely" (similar words, different ideas)


What You'll Get

The Breakdown

Comparing Source A (hash: a1b2c3d4) with Source B (hash: e5f6g7h8):

SHARED PATTERNS (N=2 Validated) ✓
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
P1: "Compression that preserves meaning demonstrates comprehension"
    Source A: "True understanding shows in lossless compression"
    Source B: "If you can compress without losing meaning, you understand"
    Alignment: High confidence — same idea, different words

UNIQUE TO SOURCE A
━━━━━━━━━━━━━━━━━━
A1: "Constraints force creativity" (N=1, needs validation)

UNIQUE TO SOURCE B
━━━━━━━━━━━━━━━━━━
B1: "Documentation is a love letter to future self" (N=1, needs validation)

What's next:
- The shared pattern is now validated (N=2) — real signal!
- Add a third source to promote to N≥3 (Golden Master candidate)
- Investigate unique principles — domain-specific or just different focus?

The N-Count System

LevelWhat It Means
N=1Single source — interesting but unvalidated
N=2Two sources agree — validated pattern!
N≥3Three+ sources — candidate for Golden Master

Why this matters: N=1 is an observation. N=2 is validation. Independent sources agreeing is meaningful evidence.


What I Need From You

Required: Two things to compare

  • Two extractions from essence-distiller/pbe-extractor
  • Two raw text sources (I'll extract first)
  • One extraction + one raw source

That's it! I'll handle the comparison.


What I Can't Do

  • Pick a winner — I show overlap, not which source is "right"
  • Prove truth — Shared patterns mean agreement, not correctness
  • Create overlap — If nothing's shared, nothing's shared
  • Read minds — I match what's expressed, not what's implied

Technical Details

Output Format

{
  "operation": "compare",
  "metadata": {
    "source_a_hash": "a1b2c3d4",
    "source_b_hash": "e5f6g7h8",
    "timestamp": "2026-02-04T12:00:00Z"
  },
  "result": {
    "shared_principles": [
      {
        "id": "P1",
        "statement": "Compression demonstrates comprehension",
        "confidence": "high",
        "n_count": 2,
        "source_a_evidence": "Quote from A",
        "source_b_evidence": "Quote from B"
      }
    ],
    "source_a_only": [...],
    "source_b_only": [...],
    "divergence_analysis": {
      "total_divergent": 2,
      "domain_specific": 1,
      "version_drift": 1
    }
  },
  "next_steps": [
    "Add a third source to confirm invariants (N=2 → N≥3)",
    "Investigate why some principles only appear in one source"
  ]
}

When You'll See share_text

If I find a high-confidence N=2 pattern, I'll include:

"share_text": "Two independent sources, same principle — N=2 validated ✓"

This only appears for genuine discoveries — not just any overlap.


Divergence Types

When principles appear differently in each source:

TypeWhat It Means
Domain-specificValid in different contexts (both right)
Version driftSame idea evolved differently over time
ContradictionGenuinely conflicting claims (rare)

Error Messages

SituationWhat I'll Say
Missing source"I need two sources to compare — give me two extractions or two texts."
Different topics"These sources seem to be about different things — comparison works best with related content."
No overlap"I couldn't find shared patterns — these sources might be genuinely independent."

Voice Differences from principle-comparator

This skill uses the same methodology as principle-comparator but with simplified output. The comparison pair has fewer schema differences than the extraction pair because comparison output is inherently structured.

Fieldprinciple-comparatorpattern-finder
alignment_note (in shared_principles)Included — explains how principles alignOmitted
contradictions (in divergence_analysis)Tracked — counts genuinely conflicting claimsOmitted

Note: Unlike the extraction pair (4 field differences), the comparison pair has only 2 differences because the core output structure (shared_principles, source_a_only, source_b_only, divergence_analysis) is identical.

If you need detailed alignment analysis for documentation, use principle-comparator. If you want a streamlined discovery experience, use this skill.


Related Skills

  • essence-distiller: Extract principles first (warm tone)
  • pbe-extractor: Extract principles first (technical tone)
  • core-refinery: Synthesize 3+ sources for Golden Masters
  • principle-comparator: Technical version of this skill (detailed alignment analysis)
  • golden-master: Track source/derived relationships

Required Disclaimer

This skill identifies shared patterns, not verified truth. Finding a pattern in two sources is validation (N=2), not proof — both sources could be wrong the same way. Use N=2 as evidence, not conclusion.

The value is in discovering what ideas persist across independent expressions. Use your own judgment to evaluate truth and relevance.


*Built by Obviously Not — Tools for thought, not conclusions.*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

77.37%
按下载量换算13,787

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills