Claude-skill-registry dialogue-create-reference

Create Reference (REF) documents for conceptual models, glossaries, and catalogues. Triggers on "create reference", "document concepts", "make glossary", "catalogue these", "create lookup".

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-create-reference" ~/.claude/skills/majiayu000-claude-skill-registry-dialogue-create-reference && rm -rf "$T"
manifest: skills/data/dialogue-create-reference/SKILL.md
source content

Skill: Create Reference Document

Create REF (Reference) documents that provide structured knowledge for lookup and understanding.

When to Use

Activate this skill when:

  • User wants to document conceptual models or definitions
  • Creating a glossary or terminology reference
  • Cataloguing related items or documents
  • Building structured explanations for future reference

Trigger phrases: "create reference", "document concepts", "make glossary", "catalogue these", "create lookup", "reference document", "document terminology"

Implementation

Read and follow the

/create-reference
command at
${CLAUDE_PLUGIN_ROOT}/commands/create-reference.md
for:

  • Document type explanation (catalogue vs glossary vs explainer)
  • Step-by-step workflow
  • Full document template with frontmatter
  • Logging integration

The command contains the authoritative implementation details.

Content Structuring Guidance

When helping populate reference documents:

For Catalogues: Use consistent table format:

| ID | Name | Description |
|----|------|-------------|
| X-001 | Name | Brief description |

For Glossaries: Use definition list format:

**Term**
: Definition with context and usage notes.

For Explainers: Build logical sections that scaffold understanding.

Relationship to Command

InvocationTrigger
/create-reference
User explicitly requests
This skillClaude recognises context (trigger phrases above)

Both use the same implementation. The skill adds autonomous activation based on conversation context.