/** * @license * Copyright 2025 Qwen * SPDX-License-Identifier: Apache-2.0 */ /** * @fileoverview Skills feature implementation * * This module provides the foundation for the skills feature, which allows * users to define reusable skill configurations that can be loaded by the * model via a dedicated Skills tool. * * Skills are stored as directories in `.qwen/skills/` (project-level) or * `~/.qwen/skills/` (user-level), with each directory containing a SKILL.md * file with YAML frontmatter for metadata. */ export type { SkillConfig, SkillLevel, SkillValidationResult, ListSkillsOptions, SkillErrorCode, } from './types.js'; export { SkillError } from './types.js'; export { SkillManager } from './skill-manager.js';