Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

morphiq-scan形态扫描

Agent Skill

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

总安装

218

周安装

9

GitHub Stars

公开资料未说明

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/morphiqlabs/morphiq-labs-skills --skill morphiq-scan

简介

用于查找、检索和筛选相关信息,适合快速定位候选结果。

  • 可根据关键词、任务场景或来源线索进行信息定位与筛选。
  • 建议结合原始 README 和仓库内容进一步验证具体用法。
  • 安装前需确认是否会触发联网、命令执行或文件读写等操作。
  • morphiq-scan 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Pipeline Position

Step 1 of 4 — entry point.

  • Input: A domain URL from the user.
  • Output: Scan Report (JSON) → consumed by morphiq-rank.
  • Data contract: See PIPELINE.md §1 for the Scan Report schema.

Purpose

Morphiq Scan audits a website's readiness for AI visibility. It answers two questions: "Can AI systems parse and understand this site?" (Technical Score) and "Where are the gaps preventing AI citations?" (issue identification). The output feeds morphiq-rank for prioritization.

Workflow

Step 1: Discover Pages

  1. Fetch {domain}/robots.txt — extract sitemap URLs
  2. Fetch {domain}/sitemap.xml if not found in robots.txt
  3. Classify discovered pages by type using URL pattern matching
  4. Select up to 10 marketing-relevant pages, prioritized: home → pricing → features → product → solutions → about → blog → other → documentation
  5. Exclude non-marketing pages from scoring (contact, login, signup, legal, demo, careers, changelog)

For page type classification and URL patterns, read references/page-type-rules.md.

Step 2: Audit Policy Files (Category 5 — Domain Level)

  1. robots.txt — Validate existence, format, AI crawler access (GPTBot, Google-Extended, Anthropic-AI, PerplexityBot)
  2. llms.txt — Validate existence and quality (≥500 chars = good, <500 = thin)
  3. llms-full.txt — Check existence
  4. sitemap.xml — Validate XML structure

Score on 10-point scale. Generate issues for findings.

For detection rules and scoring, read references/policy-files.md.

Step 3: Score Each Page — Per-Page Technical Score (0–100)

For each selected page, compute across four dimensions:

DimensionPointsSub-checks
Schema40J1 (present), J2a (valid structure), J2b (required properties), J3 (relevant type), J4 (coverage)
Metadata30M1 (title), M2 (description), M3 (canonical), M4 (OG), M5 (Twitter)
FAQ20Linear scale: 0 FAQs=0, 1=5, 2=10, 3=15, 4+=20
Content10C1 (word count ≥300), C2 (≥3 paragraphs)

For sub-check methodology, read references/agentic-readiness.md.

Step 4: Score Content Quality (Category 2 — Per Page, 20 pts)

Evaluate citation-readiness: title clarity (3), TL;DR placement (4), E-E-A-T signals (6), statistics & citations (5), real examples (2).

For criteria, read references/content-quality.md.

Step 5: Score Chunking & Retrieval (Category 3 — Per Page, 15 pts)

Evaluate LLM retrieval optimization: heading hierarchy (3), section scope (3), paragraph self-containment (2.25), answer-first openings (2.25), vocabulary/lists/FAQ/summary (4.5).

For criteria, read references/chunking-retrieval.md.

Step 6: Simulate Query Fanout (Category 4 — Domain Level, 10 pts)

  1. Identify core topics from page content
  2. Generate simulated sub-queries using per-model rules (GPT-5.4 two-phase, Claude bundled, Gemini systematic)
  3. Check site coverage per sub-query
  4. Apply citation weights (citation-producing 1.5x, silent 0.5x, site: 2x)
  5. Score: (weighted answered / weighted total) × 10

For simulation rules and coverage scoring, read references/query-fanout.md.

Step 7: Compute Aggregate Score (0–100)

overall = agentic_readiness(45) + content_quality(20) + chunking_retrieval(15) + query_fanout(10) + policy_files(10)

Categories 1–3 averaged across pages then scaled. Categories 4–5 are domain-level.

For the full rubric, read references/scoring-rubric.md.

Step 8: Generate Issues

Create issues with: id, category, severity, summary, detail, affected_urls, remediation_hint. Use issue ID patterns from the pipeline contract.

Step 9: Produce Scan Report

Assemble Scan Report JSON (PIPELINE.md §1): domain metadata, per-page scores, issues, schema detection, policy file status, query fanout analysis.

SaaS Detection

Before scoring, detect SaaS by matching 2+ of 3 content sources against indicator terms (platform, saas, cloud, api, etc.). Changes expected schemas for product/pricing/features/solutions pages.

For detection logic, read references/page-type-rules.md.

Reference Files

FilePurpose
references/scoring-rubric.mdFull 100-point rubric — Technical Score + 5-category pipeline model
references/agentic-readiness.mdPer-page Technical Score sub-checks (J1–J4, M1–M5, C1–C2, FAQ)
references/page-type-rules.md19 page types, URL patterns, expected schemas, SaaS detection
references/content-quality.md5 content quality pillars for citation-readiness
references/chunking-retrieval.md10 evaluation areas for LLM retrieval optimization
references/query-fanout.mdPer-model fan-out simulation rules, citation weights, coverage scoring
references/policy-files.mdrobots.txt + llms.txt detection, validation, and scoring

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.27%
按下载量换算27

Claude

28.3%
按下载量换算20

Cursor

17.36%
按下载量换算12

Gemini CLI

9.36%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills