feat: sync full workspace including web modules, docs, and configurations to Gitea
Optimized the root .gitignore to exclude virtual environments, node modules, and temp folders to ensure clean and lightweight version tracking. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
20
axhub-make/vite-plugins/utils/installSkillTargets.ts
Normal file
20
axhub-make/vite-plugins/utils/installSkillTargets.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
export const INSTALL_SKILL_TARGET_DIRS: Record<string, string | null> = {
|
||||
// IDE editors
|
||||
cursor: '.cursor/skills',
|
||||
windsurf: '.windsurf/skills',
|
||||
qoder: 'skills',
|
||||
trae: '.trae/skills',
|
||||
trae_cn: '.trae/skills',
|
||||
vscode: '.github/skills',
|
||||
kiro: '.kiro/skills',
|
||||
antigravity: '.agent/skills',
|
||||
// CLI / Genie tools
|
||||
'claude-code': '.claude/skills',
|
||||
// Codex project-level skills follow the official recommended location.
|
||||
codex: '.agents/skills',
|
||||
opencode: '.opencode/skills',
|
||||
};
|
||||
|
||||
export function getInstallSkillTargetDir(client: string): string | null {
|
||||
return INSTALL_SKILL_TARGET_DIRS[client] ?? null;
|
||||
}
|
||||
Reference in New Issue
Block a user