(input: {
repo: string
secret?: SecretRef
into?: string
})
| 105 | * workspace `secrets` registry at that time. |
| 106 | */ |
| 107 | export function gitSkill(input: { |
| 108 | repo: string |
| 109 | secret?: SecretRef |
| 110 | into?: string |
| 111 | }): WorkspaceSkill { |
| 112 | return { kind: 'git', ...input } |
| 113 | } |
| 114 | |
| 115 | export type PackageManager = 'npm' | 'pnpm' | 'yarn' | 'bun' | 'auto' |
| 116 |
no outgoing calls