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

problem-space问题空间

Agent Skill

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

总安装

1,728

周安装

72

GitHub Stars

1

下载量

576
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/open-horizon-labs/skills --skill problem-space

简介

problem-space 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位内容。
  • 可用于支持问题域分析与知识组织。problem-space 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 建议确认权限范围和维护状态,避免误触敏感操作。
  • 可结合原始 README 了解其检索逻辑和使用限制。

SKILL.md

/problem-space

Map the terrain where solutions live. What are we optimizing? What constraints are real? Which can be questioned?

Problem space precedes solution space. Jump to code too early and you build the wrong thing fast.

When to Use

  • Starting new work — before implementation, understand what you're solving
  • Hitting repeated blockers — same problems in different forms
  • Patches accumulating — third config flag for the same bug means you're treating symptoms
  • Estimates off by 10× — the problem isn't understood
  • Agent talking itself out of constraints — "for this prototype we don't have time" when the constraint matters

Skip when: Problem is well-understood and you're in execution. Problem space is for grounding, not stalling.

The Problem Space Process

Step 1: State the Objective Function

What are we optimizing? Not the feature — the outcome.

"We are optimizing for [outcome]."

"Build a login page" is a feature. "Reduce time-to-first-value for new users" is an objective.

  • What behavior change indicates success?
  • What metric moves if this works?
  • What problem disappears if we get this right?

Step 2: Map the Constraints

List what we treat as fixed. Be explicit about each constraint's nature:

Constraint: [the boundary]
Type: [hard | soft | assumed]
Reason: [why it exists]
Questioning: [could this be false?]

Hard — physics, regulations, signed contracts. Don't bend. Soft — organizational decisions, technical debt, time pressure. Negotiable. Assumed — "we've always done it this way." Question these.

The trap: agents talk themselves out of constraints. "For this prototype we don't have time" is often false when code generation takes 15 minutes. Ground in what's fixed.

With RNA MCP: If oh_search_context is available, call it with the objective/domain and phase: "problem-space". Surface guardrails as already-settled constraints (hard, with source attribution). Present remaining candidates for human confirmation before finalizing the constraints table.

Step 3: Identify the Terrain

  • Systems involved? — existing code, external APIs, data stores
  • Who is affected? — users, operators, downstream systems
  • Blast radius? — if this goes wrong, what breaks?
  • Precedents? — solved before? Where?

With RNA MCP: If oh_search_context is available, call it with the problem domain and phase: "problem-space". Surface relevant metis entries as candidate precedents with provenance — human selects what to carry. Dismissed items are excluded from the final map.

Step 4: Surface Hidden Assumptions

Every problem space has embedded assumptions. Make them visible:

"We assume [assumption]. If this is false, [consequence]."

Zero assumptions listed is not "clean" — it means you haven't looked. Name at least one or explain why the problem space has no hidden premises.

Step 5: Check for X-Y Problems

Are we solving the real problem (X) or the user's attempted solution (Y)?

Signs of X-Y mismatch:

  • Request is oddly specific for a simple goal
  • You're building something that feels like a workaround
  • "How do I do [technique]?" without explaining why

If potential X-Y problem detected:

"The user asked for [Y], but the underlying need might be [X]."

If constraints, assumptions, or open questions still feel implicit after this step, you're not ready for /solution-space. Force the unknowns into the artifact.

Output Format

## Problem Space Map

**Date:** [timestamp]
**Scope:** [what area this covers]

### Objective
[What we're optimizing for - the outcome, not the feature]

### Constraints

| Constraint | Type | Reason | Question? |
|------------|------|--------|-----------|
| [boundary] | hard/soft/assumed | [why] | [could this be false?] |

### Terrain
- **Systems:** [what's involved]
- **Stakeholders:** [who's affected]
- **Blast radius:** [what breaks if wrong]
- **Precedents:** [existing solutions to examine]

### Assumptions Made Explicit
1. [assumption] - if false: [consequence]
2. [assumption] - if false: [consequence]

### Open Questions
- [unknown that must be answered before solution-space]
- [unknown that can be carried with explicit risk]

Zero open questions is suspicious. If you have none, say why — a problem space with no unknowns has either been deeply investigated or insufficiently examined.

### X-Y Check
- **Stated need (Y):** [what was asked for]
- **Underlying need (X):** [what might be needed]
- **Confidence:** [high/medium/low that Y=X]

### Ready for Solution Space?
[yes/no] - [why or what's missing]

Session Persistence

If session name provided (/problem-space auth-refactor): reads/writes .oh/auth-refactor.md directly. If no session name provided (/problem-space): offer to save with suggested name from git branch or exploration topic.

Reads: existing session file; prior outputs — especially Aim and Problem Statement — to ground exploration. Writes: problem space map so later phases reuse explicit constraints, assumptions, and open questions:

## Problem Space
**Updated:** <timestamp>

[problem space map content]

Position in Framework

Comes after: /aim (know your destination before mapping terrain). Leads to: /problem-statement to frame the specific challenge, or /solution-space if already well-framed. Can loop back from: /salvage (constraints were wrong), /review (keeps hitting same blockers).

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.72%
按下载量换算188

Claude

31.74%
按下载量换算183

Cursor

20.2%
按下载量换算116

Gemini CLI

8.32%
按下载量换算48

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills