-
Notifications
You must be signed in to change notification settings - Fork 612
Open
Labels
Description
What do you need? / 你需要什么?
What do you need?
DeepChat should support the Agent Skills standard to enable loading and using reusable procedural knowledge and domain expertise.
What is Agent Skills?
Agent Skills is an open standard for packaging AI agent capabilities into portable, reusable "skills" that any compatible agent can discover and load on demand. Instead of repeating context or instructions in every conversation, skills provide a standardized way to share workflows, checklists, templates, and domain expertise across different AI assistants.
Why this matters
- Portability: Skills created for one agent can be used in DeepChat without modification
- Organizational Knowledge: Teams can version-control and share expertise as skills
- Reduced Context: Skills load only when needed, avoiding bloated prompts
- Open Ecosystem: Compatible with Claude Code, VS Code Copilot, and other skills-enabled agents
Reference Links
- Agent Skills Homepage: https://agentskills.io/home
- Documentation: https://agentskills.io/docs
- Specification: https://agentskills.io/spec
- Integration Guide: https://agentskills.io/docs/integration
- Example Skills: https://github.com/agentskills/skills
Suggested Implementation
- Allow users to configure local skill directories
- Load skill metadata (
SKILL.md) at startup - Inject available skills into the system prompt
- Load full skill instructions when the model determines relevance
- Provide a UI to view, enable/disable, and manage installed skills
coderabbitai