Agent skill
libchat
libchat - Chat web components library. ChatClient provides composed client for authentication, API communication, and state management. ChatDrawerElement and ChatPageElement are custom elements for embedding chat interfaces. Framework-agnostic using Web Components standard. Use for building chat UIs, embedding conversational AI in websites, and creating dedicated chat pages.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/libchat
SKILL.md
libchat Skill
When to Use
- Embedding chat interfaces in web applications
- Building dedicated chat page experiences
- Adding conversational AI to existing websites
- Creating custom chat UI with authentication
Key Concepts
ChatClient: Composed client managing auth state, API communication, and conversation persistence via localStorage.
ChatDrawerElement: Collapsible drawer component for unobtrusive chat integration on any page.
ChatPageElement: Full-page chat component for dedicated chat experiences.
Usage Patterns
Pattern 1: Embed chat drawer
import { ChatClient, ChatDrawerElement } from "@copilot-ld/libchat";
const client = new ChatClient({
chatUrl: "/web/api/chat",
auth: { url: "http://localhost:9999", anonKey: "key" },
});
document.querySelector("chat-drawer").client = client;
Pattern 2: Full-page chat
<chat-page data-name="Assistant"></chat-page>
<script type="module">
import { ChatClient, ChatPageElement } from "@copilot-ld/libchat";
const client = new ChatClient({ chatUrl: "/api" });
document.querySelector("chat-page").client = client;
</script>
Integration
Used by the UI extension. Communicates with Web extension chat API.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?