mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-05-15 13:23:13 +08:00
- add Vite and Redis pattern skills from closed stale PRs - add frontend-slides support assets - port skill-comply runner fixes and LLM prompt/provider regressions - harden agent frontmatter validation and sync catalog counts
24 lines
566 B
Python
24 lines
566 B
Python
"""Prompt module for prompt building and normalization."""
|
|
|
|
from llm.prompt.builder import PromptBuilder, adapt_messages_for_provider, get_provider_builder
|
|
from llm.prompt.templates import (
|
|
TEMPLATES,
|
|
clear_templates,
|
|
deregister_template,
|
|
get_template,
|
|
get_template_or_default,
|
|
register_template,
|
|
)
|
|
|
|
__all__ = (
|
|
"PromptBuilder",
|
|
"TEMPLATES",
|
|
"clear_templates",
|
|
"deregister_template",
|
|
"adapt_messages_for_provider",
|
|
"get_provider_builder",
|
|
"get_template",
|
|
"get_template_or_default",
|
|
"register_template",
|
|
)
|