mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-14 23:26:39 +03:00
Emit .grok skills, agents, and PostToolUse/Stop hooks; wire the CLI installer and downloads; fix the plugin install path to #plugin; and document Grok in HARNESSES.md and README. AI assistance: written with Grok Build.
28 lines
611 B
JavaScript
28 lines
611 B
JavaScript
export const FILE_DOWNLOAD_PROVIDER_CONFIG_DIRS = Object.freeze({
|
|
cursor: '.cursor',
|
|
'claude-code': '.claude',
|
|
gemini: '.gemini',
|
|
codex: '.codex',
|
|
agents: '.agents',
|
|
github: '.github',
|
|
grok: '.grok',
|
|
kiro: '.kiro',
|
|
opencode: '.opencode',
|
|
pi: '.pi',
|
|
qoder: '.qoder',
|
|
vibe: '.vibe',
|
|
});
|
|
|
|
export const FILE_DOWNLOAD_PROVIDERS = Object.freeze(
|
|
Object.keys(FILE_DOWNLOAD_PROVIDER_CONFIG_DIRS)
|
|
);
|
|
|
|
export const BUNDLE_DOWNLOAD_PROVIDERS = Object.freeze([
|
|
'universal',
|
|
]);
|
|
|
|
export const DOWNLOAD_PROVIDERS = Object.freeze([
|
|
...FILE_DOWNLOAD_PROVIDERS,
|
|
...BUNDLE_DOWNLOAD_PROVIDERS,
|
|
]);
|