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

morphiq-track形态轨迹

Agent Skill

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

总安装

212

周安装

9

GitHub Stars

公开资料未说明

下载量

74
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

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

SKILL.md

Pipeline Position

Step 4 of 4 — measurement + flywheel.

  • Input: Build Output (JSON) from morphiq-build + MORPHIQ-TRACKER.md (persistent state).
  • Output: Delta Report (JSON) → loops back to morphiq-rank.
  • Owns: MORPHIQ-TRACKER.md — generates on first run, updates every run.
  • Owns: morphiq-track/ state directory — JSON state layer for prompts, results, citations.
  • Drives: 3 ongoing workflows (Content Optimization, Content Creation, Query Fanout Expansion).
  • Data contract: See PIPELINE.md §4 for the Delta Report, §5 for MORPHIQ-TRACKER.md, §6 for the JSON State Layer.

Purpose

Morphiq Track is the measurement and flywheel skill. It queries AI providers to measure brand visibility, computes GEO scores and Share of Voice, tracks deltas over time, and drives three ongoing workflows that feed back into the pipeline.

Workflow

Step 0: Initialize or Load State

Check if morphiq-track/manifest.json exists in the project root.

  • Missing (first run): Proceed to Step 1. The state directory will be created.
  • Present (subsequent run): Load morphiq-track/prompts.json directly — this contains the full prompt set with config, metadata, and tracking state. Skip to Step 2. If recommendations.cooldown_days has elapsed since recommendations.last_generated, generate 20 new recommendations via create-prompts.py --state-dir morphiq-track/ --refresh.
  • Migration (tracker exists but no state dir): Parse MORPHIQ-TRACKER.md §8 to bootstrap prompts.json, parse §7 to bootstrap citations.json. See references/state-layer.md Migration section.

For state layer specification, read references/state-layer.md.

Step 1: Generate Prompts

First run only. Generate 50 prompts across 5 GEO categories:

CategoryShareBrand Name?
Organic45%No
Competitor11%Mixed
How-to14%No
Brand-Specific13%Yes
FAQ17%No

Apply quality rules per category. Add temporal markers to 70%+ prompts. Include entities in comparison/technical prompts.

Run scripts/create-prompts.py --state-dir morphiq-track/ --brand {brand} --category {category} --competitors {competitors}. This writes morphiq-track/prompts.json and initializes morphiq-track/manifest.json.

For taxonomy, fanout profiles, and generation rules, read references/prompt-taxonomy.md.

Step 2: Query AI Providers

Distribute prompts evenly across 4 providers. Execute using scripts/run-queries.py --state-dir morphiq-track/ --mode execute. This reads prompts from morphiq-track/prompts.json, writes versioned results to morphiq-track/results/track-{date}.json, and updates morphiq-track/manifest.json.

ProviderModelConcurrency
OpenAIgpt-4oFull
Perplexitysonar-pro2 concurrent
Anthropicclaude-sonnet-4-5-20250514 → claude-sonnet-4-20250514Serialized
Geminigemini-2.5-flash3 concurrent

Mandatory requirements for every query:

  1. Full response text. Store the complete response — never truncate. morphiq-build's content creation workflow requires the full text for analysis.
  2. Sub-query extraction. For each provider that exposes tool calls, extract the search queries the model issued. These feed Workflow C (Query Fanout Expansion) and invisible SoV.
  3. Citation deduplication. After collecting citations per response, strip UTM/tracking params from URLs and deduplicate. Track citation_weight (number of times each URL was cited).
  4. Retry on transient failure. Retry once with 2-second delay before marking as error. This handles rate limits.

Provider-specific requirements:

  • OpenAI: Iterate response.output for items with type == "web_search_call" — extract the query field into sub_queries[]. This reveals GPT's site: operator searches and two-phase research pattern.
  • Perplexity: Citations are a Perplexity-specific field. Check response.citations, then response.model_extra["citations"], then response.__dict__["citations"], then response.choices[0].message.model_extra["citations"]. The OpenAI-compatible client puts unknown API fields in model_extra.
  • Anthropic: Tool config must be {"type": "web_search_20250305", "name": "web_search", "max_uses": 5}. Try model claude-sonnet-4-5-20250514 first, fall back to claude-sonnet-4-20250514. Response content blocks include text (final answer), web_search_tool_result (search results with URLs), and server_tool_use (the search call). Extract text only from text blocks; extract citations from both text block inline citations and web_search_tool_result block content.
  • Gemini: Grounding metadata returns vertexaisearch.cloud.google.com redirect URLs. Follow the redirect to get the real URL. If redirect fails, use the grounding_chunk.web.title as fallback domain: {url: proxy_url, title: title, resolved_domain: title}.

For full provider config and response pipeline, read references/provider-strategies.md. For selection rules and distribution, read references/query-targets.md.

Step 3: Analyze Responses

5-step pipeline: extract raw response/citations/sub-queries → structured analysis (using the agent's reasoning capabilities) → brand mention validation (exact → TLD → LLM judge) → competitor filtering → entity normalization.

Input requirements for analysis: Each response must include the full response text, deduplicated citations with citation_weight, and extracted sub-queries. The analysis uses the config block from the prompts file for brand, domain, and competitors — never hardcoded values.

Step 4: Compute GEO Score

GEO = mean(provider_scores)
Weighted GEO = (Organic × 0.45) + (Competitor × 0.22) + (How-to × 0.22) + (Brand × 0.11)

Thresholds: ≥60 Excellent, ≥40 Good, ≥20 Fair, ≥10 Poor, <10 Very Poor.

For GEO methodology, read references/query-targets.md.

Step 5: Compute Share of Voice

Three SoV tiers:

MetricWhat It Measures
Mention SoVBrand name in final responses
Fanout-Weighted SoVWeighted by prompt type fan-out depth
Influence SoVBrand presence in sub-queries (invisible influence)

Track Conversion Gap = Influence SoV − Citation SoV.

For SoV methodology, read references/share-of-voice.md.

Step 6: Compute Deltas

Compare against previous snapshot using scripts/diff-results.py --state-dir morphiq-track/. The script reads manifest.json to auto-resolve the current (runs[0]) and previous (runs[1]) results paths, and reads morphiq-track/citations.json for previous citation state. Flag changes >5 points. Generate flagged actions for regressions, losses, displacement, and conversion gaps.

For delta methodology, read references/delta-scoring.md.

Step 7: Update State Layer and MORPHIQ-TRACKER.md

State layer updates (JSON — source of truth for track-owned data):

  1. Rebuild morphiq-track/citations.json from current results + previous citation state (gained/lost/stable)
  2. Update morphiq-track/prompts.json tracking fields (mentioned, cited, best_provider, runs_tracked, last_run)
  3. Update morphiq-track/manifest.json updated_at

Tracker updates (markdown — user-facing dashboard): Project state layer data into MORPHIQ-TRACKER.md sections 5-9 and 14 (SoV, SoV Trend, Citations, Prompts, Competitors, Run History). Update remaining sections (1-4, 10-13) per tracker-spec.md rules.

For tracker specification, read references/tracker-spec.md. For state layer specification, read references/state-layer.md.

Step 8: Produce Delta Report

Assemble JSON (PIPELINE.md §4): SoV metrics, citations, per-provider data, competitors, flagged actions, content queue. Loops back to morphiq-rank.

Three Ongoing Workflows

Workflow A: Content Optimization

  1. Identify pages with declining SoV or lost citations
  2. Feed to morphiq-build (existing content path)
  3. Re-track to measure impact

Workflow B: Content Creation

  1. Collect prompts where brand is absent
  2. Identify competitor citation sources
  3. Generate content briefs for missing coverage
  4. Feed to morphiq-build (new content path)

Workflow C: Query Fanout Expansion

  1. Run scripts/analyze-fanout.py --state-dir morphiq-track/ with optional --scan-report for page inventory and simulated queries
  2. Script extracts sub-queries from latest track results, merges with scan simulated queries (fills Perplexity/Gemini gap)
  3. Compares against site page inventory to identify unanswered sub-queries
  4. Extracts competitor citation sources for each unanswered sub-query
  5. Generates content briefs prioritized by citation weight (site: 2x, citation-producing 1.5x, silent 0.5x)
  6. Output feeds Delta Report content_creation_queue via --fanout flag on generate-report.py
  7. Update MORPHIQ-TRACKER.md §12 (Query Fanout Coverage) and §13 (Content Creation Queue) with new entries

Reference Files

FilePurpose
references/prompt-taxonomy.mdPrompt types, GEO categories, fanout depth, generation rules
references/share-of-voice.mdSoV formulas, mention types, invisible SoV, competitive tracking
references/provider-strategies.mdProvider config, models, response analysis pipeline
references/query-targets.mdProvider selection, distribution, citation categories, GEO score
references/delta-scoring.mdDelta calculation, significance thresholds, flagged actions
references/tracker-spec.mdFull MORPHIQ-TRACKER.md specification (14 sections)
references/state-layer.mdJSON state layer: directory structure, file schemas, read/write rules, sync rules

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.67%
按下载量换算24

Claude

31.37%
按下载量换算23

Cursor

21.01%
按下载量换算16

Gemini CLI

9.07%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills