Back to list
mgreenly

patternsfacade

by mgreenly

An AI Coding Agent

1🍴 0📅 Jan 24, 2026

SKILL.md


name: patterns/facade description: Facade Pattern pattern for C development

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.

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon