mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-20 02:51:55 -07:00
17 lines
339 B
TypeScript
17 lines
339 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2026 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
export type SkillReference = { type: 'dir'; path: string };
|
|
|
|
/**
|
|
* Reference a directory containing skills.
|
|
*
|
|
* @param path Path to the skill directory
|
|
*/
|
|
export function skillDir(path: string): SkillReference {
|
|
return { type: 'dir', path };
|
|
}
|