-
Notifications
You must be signed in to change notification settings - Fork 331
Expand file tree
/
Copy pathimport.ts
More file actions
566 lines (475 loc) · 18.6 KB
/
import.ts
File metadata and controls
566 lines (475 loc) · 18.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
import { Command } from 'commander';
import { existsSync, readFileSync, readdirSync, mkdirSync, writeFileSync } from 'node:fs';
import { join, resolve, basename } from 'node:path';
import yaml from 'js-yaml';
import { error, heading, info, success, warn } from '../utils/format.js';
import { readCursorRules } from '../adapters/cursor.js';
interface ImportOptions {
from: string;
dir: string;
}
function importFromClaude(sourcePath: string, targetDir: string): void {
const sourceDir = resolve(sourcePath);
// Look for CLAUDE.md
const claudeMdPath = join(sourceDir, 'CLAUDE.md');
if (!existsSync(claudeMdPath)) {
throw new Error('CLAUDE.md not found in source directory');
}
const claudeMd = readFileSync(claudeMdPath, 'utf-8');
// Create agent.yaml
const dirName = basename(sourceDir);
const agentYaml = {
spec_version: '0.1.0',
name: dirName.toLowerCase().replace(/[^a-z0-9-]/g, '-'),
version: '0.1.0',
description: `Imported from Claude Code project: ${dirName}`,
model: { preferred: 'claude-sonnet-4-5-20250929' },
skills: [] as string[],
tools: [] as string[],
};
// Check for .claude directory with skills
const claudeSkillsDir = join(sourceDir, '.claude', 'skills');
if (existsSync(claudeSkillsDir)) {
const skills = readdirSync(claudeSkillsDir, { withFileTypes: true });
for (const entry of skills) {
if (entry.isDirectory()) {
agentYaml.skills.push(entry.name);
const skillDir = join(targetDir, 'skills', entry.name);
mkdirSync(skillDir, { recursive: true });
// Copy skill files
const skillFiles = readdirSync(join(claudeSkillsDir, entry.name));
for (const file of skillFiles) {
const content = readFileSync(join(claudeSkillsDir, entry.name, file), 'utf-8');
writeFileSync(join(skillDir, file === `${entry.name}.md` ? 'SKILL.md' : file), content);
}
success(`Imported skill: ${entry.name}`);
}
}
}
// Write agent.yaml
writeFileSync(join(targetDir, 'agent.yaml'), yaml.dump(agentYaml), 'utf-8');
success('Created agent.yaml');
// Convert CLAUDE.md to SOUL.md + RULES.md
const sections = parseSections(claudeMd);
let soulContent = '# Soul\n\n';
let rulesContent = '# Rules\n\n';
for (const [title, content] of sections) {
const lower = title.toLowerCase();
if (lower.includes('identity') || lower.includes('personality') || lower.includes('style') || lower.includes('about')) {
soulContent += `## ${title}\n${content}\n\n`;
} else if (lower.includes('rule') || lower.includes('constraint') || lower.includes('never') || lower.includes('always') || lower.includes('must')) {
rulesContent += `## ${title}\n${content}\n\n`;
} else {
// Default to SOUL.md
soulContent += `## ${title}\n${content}\n\n`;
}
}
if (sections.length === 0) {
soulContent += claudeMd;
}
writeFileSync(join(targetDir, 'SOUL.md'), soulContent, 'utf-8');
success('Created SOUL.md');
writeFileSync(join(targetDir, 'RULES.md'), rulesContent, 'utf-8');
success('Created RULES.md');
}
function importFromCursor(sourcePath: string, targetDir: string): void {
const sourceDir = resolve(sourcePath);
const dirName = basename(sourceDir);
const agentName = dirName.toLowerCase().replace(/[^a-z0-9-]/g, '-');
// --- Enhanced import: read .cursor/rules/*.mdc first ---
const mdcRules = readCursorRules(sourceDir);
if (mdcRules.length > 0) {
info(`Found ${mdcRules.length} rule(s) in .cursor/rules/`);
// Separate global (alwaysApply) rules from skill rules
const globalRules = mdcRules.filter(r => r.parsed.frontmatter.alwaysApply === true);
const skillRules = mdcRules.filter(r => r.parsed.frontmatter.alwaysApply !== true);
// Build SOUL.md from global alwaysApply rules
if (globalRules.length > 0) {
const soulParts: string[] = [`# Soul — imported from Cursor rules\n`];
for (const rule of globalRules) {
if (rule.parsed.body) {
soulParts.push(rule.parsed.body);
soulParts.push('');
}
}
writeFileSync(join(targetDir, 'SOUL.md'), soulParts.join('\n').trimEnd() + '\n', 'utf-8');
success(`Created SOUL.md (from ${globalRules.length} alwaysApply rule(s))`);
}
// Convert scoped skill rules to skills/
const skillNames: string[] = [];
for (const rule of skillRules) {
const skillName = rule.filename.replace(/\.mdc$/, '');
const skillDir = join(targetDir, 'skills', skillName);
mkdirSync(skillDir, { recursive: true });
// Build SKILL.md frontmatter
const fm: Record<string, unknown> = {
name: skillName,
description: rule.parsed.frontmatter.description ?? `Imported from .cursor/rules/${rule.filename}`,
};
// Carry globs into metadata for round-trip fidelity
const globs = rule.parsed.frontmatter.globs;
if (globs) {
const globStr = Array.isArray(globs) ? globs.join(' ') : globs;
fm['metadata'] = { globs: globStr };
}
const skillMd = `---\n${yaml.dump(fm).trimEnd()}\n---\n\n${(rule.parsed.body ?? '').trim()}\n`;
writeFileSync(join(skillDir, 'SKILL.md'), skillMd, 'utf-8');
skillNames.push(skillName);
success(`Created skill: ${skillName}`);
}
const agentYaml = {
spec_version: '0.1.0',
name: agentName,
version: '0.1.0',
description: `Imported from Cursor project: ${dirName}`,
...(skillNames.length > 0 ? { skills: skillNames } : {}),
};
writeFileSync(join(targetDir, 'agent.yaml'), yaml.dump(agentYaml), 'utf-8');
success('Created agent.yaml');
return;
}
// --- Legacy fallback: .cursorrules or AGENTS.md ---
let instructions = '';
const cursorRulesPath = join(sourceDir, '.cursorrules');
const agentsMdPath = join(sourceDir, 'AGENTS.md');
if (existsSync(cursorRulesPath)) {
instructions = readFileSync(cursorRulesPath, 'utf-8');
info('Found .cursorrules (legacy)');
} else if (existsSync(agentsMdPath)) {
instructions = readFileSync(agentsMdPath, 'utf-8');
info('Found AGENTS.md');
} else {
throw new Error('No .cursor/rules/ directory, .cursorrules, or AGENTS.md found in source directory');
}
const agentYaml = {
spec_version: '0.1.0',
name: agentName,
version: '0.1.0',
description: `Imported from Cursor project: ${dirName}`,
};
writeFileSync(join(targetDir, 'agent.yaml'), yaml.dump(agentYaml), 'utf-8');
success('Created agent.yaml');
writeFileSync(join(targetDir, 'SOUL.md'), `# Soul\n\n${instructions}`, 'utf-8');
success('Created SOUL.md');
writeFileSync(join(targetDir, 'AGENTS.md'), instructions, 'utf-8');
success('Created AGENTS.md (preserved original)');
}
function importFromCrewAI(sourcePath: string, targetDir: string): void {
// CrewAI uses YAML or Python for agent definitions
const sourceFile = resolve(sourcePath);
if (!existsSync(sourceFile)) {
throw new Error(`Source file not found: ${sourceFile}`);
}
const content = readFileSync(sourceFile, 'utf-8');
// Try to parse as YAML (CrewAI crew.yaml format)
try {
const crewConfig = yaml.load(content) as Record<string, unknown>;
// Extract first agent definition
const agents = crewConfig.agents as Record<string, { role?: string; goal?: string; backstory?: string }> | undefined;
if (!agents) {
throw new Error('No agents found in CrewAI config');
}
const [name, agentDef] = Object.entries(agents)[0];
const agentYaml = {
spec_version: '0.1.0',
name: name.toLowerCase().replace(/[^a-z0-9-]/g, '-'),
version: '0.1.0',
description: agentDef.goal || `Imported from CrewAI: ${name}`,
};
writeFileSync(join(targetDir, 'agent.yaml'), yaml.dump(agentYaml), 'utf-8');
success('Created agent.yaml');
let soulContent = '# Soul\n\n';
if (agentDef.role) soulContent += `## Core Identity\n${agentDef.role}\n\n`;
if (agentDef.backstory) soulContent += `## Background\n${agentDef.backstory}\n\n`;
if (agentDef.goal) soulContent += `## Purpose\n${agentDef.goal}\n\n`;
writeFileSync(join(targetDir, 'SOUL.md'), soulContent, 'utf-8');
success('Created SOUL.md');
// Import additional agents as sub-agents
const agentEntries = Object.entries(agents);
if (agentEntries.length > 1) {
mkdirSync(join(targetDir, 'agents'), { recursive: true });
for (const [subName, subDef] of agentEntries.slice(1)) {
const subDir = join(targetDir, 'agents', subName);
mkdirSync(subDir, { recursive: true });
const subAgentYaml = {
spec_version: '0.1.0',
name: subName.toLowerCase().replace(/[^a-z0-9-]/g, '-'),
version: '0.1.0',
description: subDef.goal || subName,
};
writeFileSync(join(subDir, 'agent.yaml'), yaml.dump(subAgentYaml), 'utf-8');
let subSoul = '# Soul\n\n';
if (subDef.role) subSoul += subDef.role + '\n';
if (subDef.backstory) subSoul += '\n' + subDef.backstory + '\n';
writeFileSync(join(subDir, 'SOUL.md'), subSoul, 'utf-8');
success(`Imported sub-agent: ${subName}`);
}
}
} catch (e) {
throw new Error(`Failed to parse CrewAI config: ${(e as Error).message}`);
}
}
function importFromCodex(sourcePath: string, targetDir: string): void {
const sourceDir = resolve(sourcePath);
// Codex CLI uses:
// AGENTS.md — custom instructions (project root)
// codex.json — model/provider config
const agentsMdPath = join(sourceDir, 'AGENTS.md');
const configPath = join(sourceDir, 'codex.json');
let instructions = '';
let config: Record<string, unknown> = {};
if (existsSync(agentsMdPath)) {
instructions = readFileSync(agentsMdPath, 'utf-8');
info('Found AGENTS.md');
} else {
throw new Error('No AGENTS.md found in source directory');
}
if (existsSync(configPath)) {
try {
config = JSON.parse(readFileSync(configPath, 'utf-8'));
info('Found codex.json');
} catch { /* ignore malformed config */ }
}
const dirName = basename(sourceDir);
// codex.json model format: "model-id" (no provider/ prefix, unlike opencode)
const rawModel = (config.model as string) || undefined;
const agentYaml: Record<string, unknown> = {
spec_version: '0.1.0',
name: dirName.toLowerCase().replace(/[^a-z0-9-]/g, '-'),
version: '0.1.0',
description: `Imported from Codex CLI project: ${dirName}`,
};
if (rawModel) {
agentYaml.model = { preferred: rawModel };
}
writeFileSync(join(targetDir, 'agent.yaml'), yaml.dump(agentYaml), 'utf-8');
success('Created agent.yaml');
// Convert AGENTS.md to SOUL.md (+ optional RULES.md)
const sections = parseSections(instructions);
let soulContent = '# Soul\n\n';
let rulesContent = '# Rules\n\n';
let hasRules = false;
for (const [title, content] of sections) {
const lower = title.toLowerCase();
if (
lower.includes('rule') ||
lower.includes('constraint') ||
lower.includes('never') ||
lower.includes('always') ||
lower.includes('must') ||
lower.includes('compliance')
) {
rulesContent += `## ${title}\n${content}\n\n`;
hasRules = true;
} else {
soulContent += `## ${title}\n${content}\n\n`;
}
}
if (sections.length === 0) {
soulContent += instructions;
}
writeFileSync(join(targetDir, 'SOUL.md'), soulContent, 'utf-8');
success('Created SOUL.md');
if (hasRules) {
writeFileSync(join(targetDir, 'RULES.md'), rulesContent, 'utf-8');
success('Created RULES.md');
}
}
function importFromOpenCode(sourcePath: string, targetDir: string): void {
const sourceDir = resolve(sourcePath);
// Look for AGENTS.md (OpenCode's instruction file) or opencode.json
const agentsMdPath = join(sourceDir, 'AGENTS.md');
const configPath = join(sourceDir, 'opencode.json');
let instructions = '';
let config: Record<string, unknown> = {};
if (existsSync(agentsMdPath)) {
instructions = readFileSync(agentsMdPath, 'utf-8');
info('Found AGENTS.md');
} else {
throw new Error('No AGENTS.md found in source directory');
}
if (existsSync(configPath)) {
try {
config = JSON.parse(readFileSync(configPath, 'utf-8'));
info('Found opencode.json');
} catch { /* ignore malformed config */ }
}
const dirName = basename(sourceDir);
// Determine model from opencode.json (format: "provider/model-id")
const rawModel = (config.model as string) || undefined;
const model = rawModel?.includes('/') ? rawModel.split('/').slice(1).join('/') : rawModel;
const agentYaml: Record<string, unknown> = {
spec_version: '0.1.0',
name: dirName.toLowerCase().replace(/[^a-z0-9-]/g, '-'),
version: '0.1.0',
description: `Imported from OpenCode project: ${dirName}`,
};
if (model) {
agentYaml.model = { preferred: model };
}
writeFileSync(join(targetDir, 'agent.yaml'), yaml.dump(agentYaml), 'utf-8');
success('Created agent.yaml');
// Convert instructions.md to SOUL.md + RULES.md
const sections = parseSections(instructions);
let soulContent = '# Soul\n\n';
let rulesContent = '# Rules\n\n';
let hasRules = false;
for (const [title, content] of sections) {
const lower = title.toLowerCase();
if (lower.includes('rule') || lower.includes('constraint') || lower.includes('never') || lower.includes('always') || lower.includes('must') || lower.includes('compliance')) {
rulesContent += `## ${title}\n${content}\n\n`;
hasRules = true;
} else {
soulContent += `## ${title}\n${content}\n\n`;
}
}
if (sections.length === 0) {
soulContent += instructions;
}
writeFileSync(join(targetDir, 'SOUL.md'), soulContent, 'utf-8');
success('Created SOUL.md');
if (hasRules) {
writeFileSync(join(targetDir, 'RULES.md'), rulesContent, 'utf-8');
success('Created RULES.md');
}
}
function importFromGemini(sourcePath: string, targetDir: string): void {
const sourceDir = resolve(sourcePath);
// Look for GEMINI.md
const geminiMdPath = join(sourceDir, 'GEMINI.md');
if (!existsSync(geminiMdPath)) {
throw new Error('GEMINI.md not found in source directory');
}
const geminiMd = readFileSync(geminiMdPath, 'utf-8');
// Look for .gemini/settings.json (optional)
let settings: Record<string, unknown> = {};
const settingsPath = join(sourceDir, '.gemini', 'settings.json');
if (existsSync(settingsPath)) {
try {
settings = JSON.parse(readFileSync(settingsPath, 'utf-8'));
info('Found .gemini/settings.json');
} catch { /* ignore malformed config */ }
}
const dirName = basename(sourceDir);
// Determine model from settings.json (can be string or { id, provider } object)
const rawModel = settings.model;
const model = typeof rawModel === 'object' && rawModel !== null
? (rawModel as Record<string, string>).id
: rawModel as string | undefined;
const agentYaml: Record<string, unknown> = {
spec_version: '0.1.0',
name: dirName.toLowerCase().replace(/[^a-z0-9-]/g, '-'),
version: '0.1.0',
description: `Imported from Gemini CLI project: ${dirName}`,
};
if (model) {
agentYaml.model = { preferred: model };
}
// Ensure target directory exists
mkdirSync(targetDir, { recursive: true });
// Map approval mode to compliance
if (settings.approvalMode) {
const approvalMode = settings.approvalMode as string;
let hitl: string | undefined;
if (approvalMode === 'plan') hitl = 'always';
else if (approvalMode === 'default') hitl = 'conditional';
else if (approvalMode === 'yolo') hitl = 'none';
else if (approvalMode === 'auto_edit') hitl = 'advisory';
if (hitl) {
agentYaml.compliance = {
supervision: {
human_in_the_loop: hitl,
},
};
}
}
writeFileSync(join(targetDir, 'agent.yaml'), yaml.dump(agentYaml), 'utf-8');
success('Created agent.yaml');
// Convert GEMINI.md to SOUL.md + RULES.md
const sections = parseSections(geminiMd);
let soulContent = '# Soul\n\n';
let rulesContent = '# Rules\n\n';
let hasRules = false;
for (const [title, content] of sections) {
const lower = title.toLowerCase();
if (lower.includes('rule') || lower.includes('constraint') || lower.includes('never') || lower.includes('always') || lower.includes('must') || lower.includes('compliance')) {
rulesContent += `## ${title}\n${content}\n\n`;
hasRules = true;
} else {
soulContent += `## ${title}\n${content}\n\n`;
}
}
if (sections.length === 0) {
soulContent += geminiMd;
}
writeFileSync(join(targetDir, 'SOUL.md'), soulContent, 'utf-8');
success('Created SOUL.md');
if (hasRules) {
writeFileSync(join(targetDir, 'RULES.md'), rulesContent, 'utf-8');
success('Created RULES.md');
}
}
function parseSections(markdown: string): [string, string][] {
const sections: [string, string][] = [];
const lines = markdown.split('\n');
let currentTitle = '';
let currentContent = '';
for (const line of lines) {
const headingMatch = line.match(/^#{1,3}\s+(.+)/);
if (headingMatch) {
if (currentTitle) {
sections.push([currentTitle, currentContent.trim()]);
}
currentTitle = headingMatch[1];
currentContent = '';
} else {
currentContent += line + '\n';
}
}
if (currentTitle) {
sections.push([currentTitle, currentContent.trim()]);
}
return sections;
}
export const importCommand = new Command('import')
.description('Import from other agent formats')
.requiredOption('--from <format>', 'Source format (claude, cursor, crewai, opencode, gemini, codex)')
.argument('<path>', 'Source file or directory path')
.option('-d, --dir <dir>', 'Target directory', '.')
.action((sourcePath: string, options: ImportOptions) => {
const targetDir = resolve(options.dir);
heading('Importing agent');
info(`Format: ${options.from}`);
info(`Source: ${sourcePath}`);
try {
switch (options.from) {
case 'claude':
importFromClaude(sourcePath, targetDir);
break;
case 'cursor':
importFromCursor(sourcePath, targetDir);
break;
case 'crewai':
importFromCrewAI(sourcePath, targetDir);
break;
case 'opencode':
importFromOpenCode(sourcePath, targetDir);
break;
case 'gemini':
importFromGemini(sourcePath, targetDir);
break;
case 'codex':
importFromCodex(sourcePath, targetDir);
break;
default:
error(`Unknown format: ${options.from}`);
info('Supported formats: claude, cursor, crewai, opencode, gemini, codex');
process.exit(1);
}
success('\nImport complete');
info('Run `gitagent validate` to check the imported agent');
} catch (e) {
error((e as Error).message);
process.exit(1);
}
});