mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-02-19 00:37:23 +08:00
30 lines
684 B
Python
30 lines
684 B
Python
"""
|
|
Skills module for agent system.
|
|
|
|
This module provides the framework for loading, managing, and executing skills.
|
|
Skills are markdown files with frontmatter that provide specialized instructions
|
|
for specific tasks.
|
|
"""
|
|
|
|
from agent.skills.types import (
|
|
Skill,
|
|
SkillEntry,
|
|
SkillMetadata,
|
|
SkillInstallSpec,
|
|
LoadSkillsResult,
|
|
)
|
|
from agent.skills.loader import SkillLoader
|
|
from agent.skills.manager import SkillManager
|
|
from agent.skills.formatter import format_skills_for_prompt
|
|
|
|
__all__ = [
|
|
"Skill",
|
|
"SkillEntry",
|
|
"SkillMetadata",
|
|
"SkillInstallSpec",
|
|
"LoadSkillsResult",
|
|
"SkillLoader",
|
|
"SkillManager",
|
|
"format_skills_for_prompt",
|
|
]
|