Claude-skill-registry patterns/facade

Facade Pattern pattern for C development

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

Facade Pattern

Provides a simplified interface to a complex subsystem, hiding internal complexity behind a cohesive API. Clients interact with the facade rather than individual components.

ikigai Application

Primary facade:

ik_repl_ctx_t
is a facade over:

  • Terminal management (
    ik_term_ctx_t
    )
  • Scrollback buffer (
    ik_scrollback_t
    )
  • Input handling (
    ik_input_buffer_t
    )
  • Layer rendering system
  • LLM client interaction
  • Conversation state

User sees:

ik_repl_init()
,
ik_repl_run()
,
ik_repl_cleanup()

Subsystems hidden: Terminal raw mode, ANSI escapes, viewport calculations, streaming chunk assembly.

Benefit: Main only knows about REPL. REPL orchestrates everything else. Changes to internals don't affect main.