Claude-skill-registry dialogue-resolve-reference

Resolves framework reference IDs to their content. Use when you need to look up a document, decision, observation, task, or ADR by its ID. Triggers on "resolve reference", "look up THY-001", "find DEC-...", "get content of", "what is ADR-001".

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/dialogue-resolve-reference" ~/.claude/skills/majiayu000-claude-skill-registry-dialogue-resolve-reference && rm -rf "$T"
manifest: skills/data/dialogue-resolve-reference/SKILL.md
source content

Dialogue: Reference Resolver

Resolves framework reference IDs to their content. This skill implements the retrieval operation for the framework's Transactive Memory System.

When to Use

Use this skill when you need to:

  • Look up a project document by its ID (THY-001, REF-001, STR-001, ADR-001)
  • Find a decision or observation log entry
  • Retrieve a task's details
  • Look up a process definition, instance, or execution log

Do NOT use for:

  • External URLs → use WebFetch
  • File paths → use Read tool directly
  • Creating new references → use appropriate logging/creation skills
  • Framework source references (F-N, C-N, etc.) → see Framework Source References below

Configuration

Artifact locations are configured in the script. Projects can customise via

.dialogue/config.yaml
(config parsing TODO).

Default locations:

  • THY/REF/STR documents:
    implementation/
    (framework dev) or
    docs/
    (typical deployments)
  • ADR documents:
    decisions/
  • Decisions:
    .dialogue/logs/decisions/
    (per-file)
  • Observations:
    .dialogue/logs/observations/
    (per-file)
  • Tasks:
    .dialogue/tasks/
    (per-file)
  • Process definitions:
    claude-plugin-evo/processes/
  • Process instances:
    .dialogue/processes/
  • Execution logs:
    .dialogue/logs/executions/

How to Resolve a Reference

Execute the following bash command:

${CLAUDE_PLUGIN_ROOT}/skills/dialogue-resolve-reference/scripts/resolve-reference.sh <id> [output_format]

Required Parameters

ParameterDescription
id
The reference ID to resolve (e.g.,
THY-001
,
DEC-20260114-091633
,
SH-002
)

Optional Parameters

ParameterValuesDescription
output_format
full
,
metadata
,
path
What to return (default:
full
)

Output Formats

FormatReturns
full
Complete content with metadata (default)
metadata
Just metadata (title, type, location) without content
path
Just the resolved file path

Supported Reference Types

Project Documents (Resolvable)

PatternTypeLocationExample
THY-NNN
Theory
implementation/theory_*.md
THY-001
REF-NNN
Reference
implementation/ref_*.md
REF-001
STR-NNN
Strategy
implementation/str_*.md
STR-001
ADR-NNN
Architecture Decision Record
decisions/ADR-NNN-*.md
ADR-001

Log Entries (Resolvable)

PatternTypeLocationExample
DEC-YYYYMMDD-HHMMSS
Decision
.dialogue/logs/decisions/{id}.yaml
DEC-20260114-091633
OBS-YYYYMMDD-HHMMSS
Observation
.dialogue/logs/observations/{id}.yaml
OBS-20260114-094825

Tasks (Resolvable)

PatternTypeLocationExample
SH-NNN
Self-Hosting
.dialogue/tasks/{id}.yaml
SH-002
CD-NNN
Conceptual Debt
.dialogue/tasks/{id}.yaml
CD-001
FW-NNN
Framework
.dialogue/tasks/{id}.yaml
FW-003
DOC-NNN
Documentation
.dialogue/tasks/{id}.yaml
DOC-001
VAL-NNN
Validation
.dialogue/tasks/{id}.yaml
VAL-001

Process Execution (Resolvable)

PatternTypeLocationExample
PROC-P.S
Process Definition
claude-plugin-evo/processes/process-*.yaml
PROC-3.1
PINST-YYYYMMDD-HHMMSS
Process Instance
.dialogue/processes/{id}.yaml
PINST-20260118-143052
EXEC-YYYYMMDD-HHMMSS
Execution Log
.dialogue/logs/executions/{id}.yaml
EXEC-20260118-143055

Actors (Metadata Only)

PatternTypeExample
human:<id>
Human Actor
human:pidster
ai:<id>
AI Actor
ai:claude

Framework Source References (NOT Resolvable)

These reference framework source documentation, not available in deployed projects:

PatternTypeReturns
F-N
Foundation
NOT_SUPPORTED
C-N
Concept
NOT_SUPPORTED
I-N
Integration
NOT_SUPPORTED
G-N
Guidance
NOT_SUPPORTED
E-N
Example
NOT_SUPPORTED

See FW-005 (Deployment Artifact Definition) for the deployment model that separates framework source from runtime artifacts.

Examples

Resolve a Theory Document

${CLAUDE_PLUGIN_ROOT}/skills/dialogue-resolve-reference/scripts/resolve-reference.sh THY-001

Get Just the Path to an ADR

${CLAUDE_PLUGIN_ROOT}/skills/dialogue-resolve-reference/scripts/resolve-reference.sh ADR-001 path

Look Up a Decision Log Entry

${CLAUDE_PLUGIN_ROOT}/skills/dialogue-resolve-reference/scripts/resolve-reference.sh DEC-20260114-091633

Get Task Metadata

${CLAUDE_PLUGIN_ROOT}/skills/dialogue-resolve-reference/scripts/resolve-reference.sh SH-002 metadata

Look Up a Process Definition

${CLAUDE_PLUGIN_ROOT}/skills/dialogue-resolve-reference/scripts/resolve-reference.sh PROC-3.1

Find a Process Instance

${CLAUDE_PLUGIN_ROOT}/skills/dialogue-resolve-reference/scripts/resolve-reference.sh PINST-20260118-143052

Get Execution Log Path

${CLAUDE_PLUGIN_ROOT}/skills/dialogue-resolve-reference/scripts/resolve-reference.sh EXEC-20260118-143055 path

Output

The script returns JSON with the resolution result:

Success

{
  "status": "RESOLVED",
  "id": "THY-001",
  "type": "DOCUMENT",
  "location": "implementation/theory_framework.md",
  "content": "..."
}

Not Found

{
  "status": "NOT_FOUND",
  "id": "THY-999",
  "error": "No document matching pattern found",
  "searched": ["implementation/theory_*.md"]
}

Not Supported (Framework Source)

{
  "status": "NOT_SUPPORTED",
  "id": "C-1",
  "type": "CONCEPT",
  "error": "Framework source reference - not available in deployed framework",
  "note": "See FW-005 for deployment model."
}

Invalid ID

{
  "status": "INVALID_ID",
  "id": "UNKNOWN-123",
  "error": "ID does not match any known pattern"
}

Error Handling

StatusMeaning
RESOLVED
Content found and returned
NOT_FOUND
Valid pattern but no content found
NOT_SUPPORTED
Framework source reference (F-N, C-N, etc.)
INVALID_ID
ID doesn't match any known pattern
AMBIGUOUS
Multiple matches found
EXTERNAL
URL reference (use WebFetch instead)

Framework Grounding

The resolver implements TMS Retrieval for runtime artifacts:

  • Directory: Pattern matching identifies what type of reference
  • Retrieval: Fetch content from project locations
  • Deployment-aware: Distinguishes runtime artifacts from framework source

This enables the Context Graph (SH-003) to resolve edges to actual content within a deployed project.