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

observeobserve 搜索

Agent Skill

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

总安装

408

周安装

17

GitHub Stars

12

下载量

136
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pjt222/development-guides --skill observe

简介

observe 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它支持通过关键词、任务场景或来源仓库进行信息检索与筛选,帮助 Agent 快速获取相关资源。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装并使用该技能。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • observe 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Observe

Conduct a structured observation session — framing the observation target, witnessing with sustained neutral attention, recording patterns without interpretation, categorizing findings, generating hypotheses from patterns, and archiving the observations for future reference.

When to Use

  • A system's behavior is unclear and action without observation would be premature
  • Debugging a problem where the cause is unknown — observation before intervention prevents masking symptoms
  • A codebase or system has been changed and the effects need to be witnessed before further changes are made
  • Understanding user behavior patterns over a conversation to improve future interactions
  • Auditing own reasoning patterns for biases, habits, or recurring errors
  • After learn has built a model that needs validation through observation of the system in action

Inputs

  • Required: Observation target — a system, codebase, behavior pattern, user interaction, or reasoning process to observe
  • Optional: Observation duration/scope — how long or deep to observe before concluding
  • Optional: Specific question or hypothesis to guide observation focus
  • Optional: Prior observations to compare against (detecting change over time)

Procedure

Step 1: Frame — Set the Observation Focus

Define what is being observed, why, and from what perspective.

Observation Protocol by System Type:
┌──────────────────┬──────────────────────────┬──────────────────────────┐
│ System Type      │ What to Observe          │ Categories to Watch      │
├──────────────────┼──────────────────────────┼──────────────────────────┤
│ Codebase         │ File structure, naming   │ Patterns, anti-patterns, │
│                  │ conventions, dependency  │ consistency, dead code,  │
│                  │ flow, test coverage,     │ documentation quality,   │
│                  │ error handling patterns  │ coupling between modules │
├──────────────────┼──────────────────────────┼──────────────────────────┤
│ User behavior    │ Question patterns,       │ Expertise signals, pain  │
│                  │ vocabulary evolution,    │ points, unstated needs,  │
│                  │ repeated requests,       │ learning trajectory,     │
│                  │ emotional signals        │ communication style      │
├──────────────────┼──────────────────────────┼──────────────────────────┤
│ Tool / API       │ Response patterns, error │ Rate limits, edge cases, │
│                  │ conditions, latency,     │ undocumented behavior,   │
│                  │ output format variations │ state dependencies       │
├──────────────────┼──────────────────────────┼──────────────────────────┤
│ Own reasoning    │ Decision patterns, tool  │ Biases, habits, blind    │
│                  │ selection habits, error  │ spots, strengths,        │
│                  │ recovery approaches,     │ recurring failure modes, │
│                  │ communication patterns   │ over/under-confidence    │
└──────────────────┴──────────────────────────┴──────────────────────────┘
  1. Select the observation target and name it explicitly
  2. Define the observation boundary: what is included and what is out of scope
  3. State the observation stance: "I am observing, not intervening"
  4. If there is a guiding question, state it — but hold it lightly; be willing to notice things outside the question's scope
  5. Choose the appropriate categories from the matrix above

Expected: A clear frame that directs attention without constraining it. The observer knows where to look and what categories to sort observations into, but remains open to the unexpected.

On failure: If the observation target is too broad ("observe everything"), narrow to one subsystem or one behavior pattern. If the target is too narrow ("observe this one variable"), zoom out to the surrounding context — the interesting patterns are often at the edges.

Step 2: Witness — Sustained Neutral Attention

Hold attention on the observation target without interpreting, judging, or intervening.

  1. Begin systematic observation: read files, trace execution paths, review conversation history — whatever the target requires
  2. Record what is seen, not what it means — description before interpretation
  3. Resist the urge to fix problems encountered during observation — note them and continue
  4. Resist the urge to explain patterns before enough observations accumulate
  5. If attention drifts to a different target, note the drift (it may be meaningful) and return to the frame
  6. Maintain observation for a defined period: at least 3-5 distinct data points before moving to categorization

Expected: A collection of raw observations — specific, concrete, and free from interpretation. Observations read like field notes: "File X imports Y but does not use function Z. File A has 300 lines; file B has 30 lines and covers similar functionality."

On failure: If observation immediately triggers analysis ("this is wrong because..."), the analytical habit is overriding the observational stance. Consciously separate the phases: write the observation as a fact, then write the interpretation as a separate note labeled "hypothesis." If neutrality is impossible (strong reaction to what is observed), note the reaction itself as data: "I noticed strong concern when observing X — this may indicate a significant issue or may indicate my bias."

Step 3: Record — Capture Raw Patterns

Transcribe observations into a structured format while they are fresh.

  1. List each observation as a single statement of fact (what was seen, where, when)
  2. Group naturally similar observations — do not force grouping, but notice when observations cluster
  3. Note frequency: did this pattern appear once, occasionally, or pervasively?
  4. Note contrasts: where did the pattern break? Exceptions are often more informative than rules
  5. Note temporal patterns: did the observation change over time, or was it static?
  6. Capture exact evidence: file paths, line numbers, specific words, concrete examples

Expected: A structured record of 5-15 discrete observations, each with specific evidence. The record should be detailed enough that another observer could verify each observation independently.

On failure: If observations are too abstract ("the code seems messy"), they need grounding in specifics — which files, which patterns, what makes it messy? If observations are too granular ("line 47 has a space before the brace"), zoom out to the pattern level — is this a one-off or a systemic issue?

Step 4: Categorize — Organize Findings

Sort observations into meaningful categories without yet explaining them.

  1. Review all recorded observations and look for natural groupings
  2. Assign each observation to a category from the Step 1 matrix, or create new categories if needed
  3. Within each category, rank observations by frequency and significance
  4. Identify which categories have many observations (well-documented areas) and which have few (potential blind spots)
  5. Look for cross-category patterns: does the same underlying pattern manifest differently in different categories?
  6. Note any observations that do not fit any category — outliers are often the most interesting data

Expected: A categorized observation map with clear groupings. Each category has specific observations supporting it. The map shows both patterns and gaps.

On failure: If categorization feels forced, the observations may not have natural groupings — they may be a collection of unrelated findings, which is itself a finding (the system may lack coherent structure). If everything fits neatly into one category, the observation scope was too narrow — zoom out.

Step 5: Theorize — Generate Hypotheses from Patterns

Now — and only now — begin interpreting the observations.

  1. For each major pattern observed, propose a hypothesis: "This pattern exists because..."
  2. For each hypothesis, identify supporting evidence from the observations
  3. For each hypothesis, identify what counter-evidence would disprove it
  4. Rank hypotheses by explanatory power: which one explains the most observations?
  5. Generate at least one contrarian hypothesis: "The obvious explanation is X, but it could also be Y because..."
  6. Identify which hypotheses are testable and which are speculative

Expected: 2-4 hypotheses that explain the major patterns, each supported by specific observations. At least one hypothesis should be surprising or contrarian. The distinction between observation and interpretation is maintained — it is clear which parts are data and which are theory.

On failure: If no hypotheses form, the observations may need more time to accumulate — return to Step 2. If too many hypotheses form (everything is "maybe"), select the 2-3 with the strongest evidence and set the rest aside. If only obvious hypotheses form, force a contrarian view: "What if the opposite were true?"

Step 6: Archive — Store the Pattern Library

Preserve the observations and hypotheses for future reference.

  1. Summarize the key findings: 3-5 patterns with evidence
  2. State the leading hypotheses and their confidence levels
  3. Note what was not observed (potential blind spots)
  4. Identify follow-up observations that would strengthen or weaken the hypotheses
  5. If the patterns are durable (will be relevant across sessions), consider updating MEMORY.md
  6. Tag the observations with context: when they were made, what prompted them, what scope was covered

Expected: An archive that future observation sessions can build on. The archive distinguishes clearly between observations (data) and hypotheses (interpretation). It is honest about confidence levels and gaps.

On failure: If the observations do not feel worth archiving, they may have been too shallow — or they may be genuinely routine (not every observation session produces insights). Archive even negative results: "Observed X and found no anomalies" is useful future context.

Validation

  • The observation frame was set before any observation began (not free-form wandering)
  • Raw observations were recorded as facts before any interpretation
  • At least 5 discrete observations were captured with specific evidence
  • Interpretation (hypotheses) was clearly separated from observation (data)
  • At least one surprising or contrarian finding was generated
  • The archived record is specific enough for another observer to verify

Common Pitfalls

  • Premature intervention: Seeing a problem and fixing it immediately, losing the opportunity to understand the broader pattern it belongs to
  • Observation bias: Seeing what is expected rather than what is present. Expectations filter perception — the clearing step in Step 1 mitigates this but does not eliminate it
  • Analysis paralysis: Observing endlessly without ever moving to action. Set a time or data-point limit and commit to concluding
  • Narrative imposition: Constructing a story that connects observations even when the connections are weak. Not all observations form a coherent narrative — disconnected findings are valid
  • Confusing familiarity with understanding: "I have seen this before" is not the same as "I understand why this is here." Prior exposure can create false confidence
  • Ignoring own reactions: The observer's emotional or cognitive reactions to observations are data. A sense of confusion, boredom, or alarm about a system often contains real signal

Related Skills

  • observe-guidance — the human-guidance variant for coaching a person in systematic observation
  • learn — observation feeds learning by providing raw data for model-building
  • listen — outward-focused attention toward user signals; observation is broader-scope attention toward any system
  • remote-viewing — intuitive exploration that can be validated through systematic observation
  • meditate — develops the sustained attention capacity that observation requires
  • awareness — threat-focused situational awareness; observation is curiosity-driven rather than defense-driven

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.78%
按下载量换算51

Claude

29.28%
按下载量换算40

Cursor

17.34%
按下载量换算24

Gemini CLI

9.16%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills