Skip to content

Graphorin API reference v0.1.0


Graphorin API reference / @graphorin/security / / SkillSource

Type Alias: SkillSource

ts
type SkillSource = 
  | {
  kind: "folder";
  path: string;
}
  | {
  kind: "npm-package";
  packageName: string;
  version?: string;
}
  | {
  kind: "git-repo";
  ref?: string;
  url: string;
};

Defined in: packages/security/src/supply-chain/types.ts:31

Source descriptor for a skill installation request.

Stable