Skip to content
2 changes: 1 addition & 1 deletion src/components/AdaptersSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const adapters = [
{ name: "Git (Auto-Detect)", adapter: "git", mode: "Auto", requires: "Depends on detected adapter", features: [".gitagent_adapter hint", "Model-based detection", "File-based fallback"] },
{ name: "OpenCode", adapter: "opencode", mode: "Interactive / one-shot", requires: "OpenCode CLI", features: ["System prompt injection", "Tool mapping", "Config export"] },
{ name: "Gemini", adapter: "gemini", mode: "Interactive / one-shot", requires: "GEMINI_API_KEY", features: ["Gemini model mapping", "Streaming responses", "Multi-provider support"] },
{ name: "GitClaw", adapter: "gitclaw", mode: "Interactive / one-shot", requires: "ANTHROPIC_API_KEY, GitClaw CLI", features: ["Workspace generation", "Tool stubs", "Skill mapping"] },
{ name: "GitAgent", adapter: "gitagent", mode: "Interactive / one-shot", requires: "ANTHROPIC_API_KEY, GitAgent CLI", features: ["Workspace generation", "Tool stubs", "Skill mapping"] },
{ name: "Prompt", adapter: "prompt", mode: "Output only", requires: "None", features: ["Raw system prompt output", "No runtime required", "Universal fallback"] },
];

Expand Down
4 changes: 2 additions & 2 deletions src/components/CLISection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import { Terminal, Play, FileCheck, Info, Download, Upload, Package, ShieldCheck
const commands = [
{ name: "init", icon: Rocket, desc: "Scaffold a new agent repo", usage: "opengap init --template <minimal|standard|full|llm-wiki>", detail: "Templates: minimal (2 files), standard (skills + tools), full (compliance + hooks + memory), llm-wiki (knowledge base)" },
{ name: "validate", icon: FileCheck, desc: "Validate agent against spec", usage: "opengap validate --compliance", detail: "JSON schema validation, skill checks, and optional regulatory compliance audit" },
{ name: "run", icon: Play, desc: "Run agent with any adapter", usage: "opengap run -a <adapter> -p \"prompt\"", detail: "Adapters: claude, openai, crewai, openclaw, nanobot, lyzr, github, opencode, gemini, gitclaw, git, prompt" },
{ name: "export", icon: Download, desc: "Export to another framework", usage: "opengap export --format <format> -o output", detail: "Formats: system-prompt, claude-code, openai, crewai, openclaw, nanobot, lyzr, github, copilot, opencode, cursor, gemini, codex, kiro, gitclaw" },
{ name: "run", icon: Play, desc: "Run agent with any adapter", usage: "opengap run -a <adapter> -p \"prompt\"", detail: "Adapters: claude, openai, crewai, openclaw, nanobot, lyzr, github, opencode, gemini, gitagent, git, prompt" },
{ name: "export", icon: Download, desc: "Export to another framework", usage: "opengap export --format <format> -o output", detail: "Formats: system-prompt, claude-code, openai, crewai, openclaw, nanobot, lyzr, github, copilot, opencode, cursor, gemini, codex, kiro, gitagent" },
{ name: "import", icon: Upload, desc: "Import from Claude, Cursor, CrewAI, OpenCode, Gemini, Codex", usage: "opengap import --from <format> <path>", detail: "Formats: claude, cursor, crewai, opencode, gemini, codex" },
{ name: "install", icon: Package, desc: "Resolve git-based dependencies", usage: "opengap install", detail: "Shallow-clones dependencies at specified versions into mount paths" },
{ name: "skills", icon: Zap, desc: "Search, install, list, info", usage: "opengap skills search \"code review\"", detail: "Registries: SkillsMP marketplace, GitHub repos, local filesystem" },
Expand Down
2 changes: 1 addition & 1 deletion src/components/ExportSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const exports = [
{ label: "Gemini", desc: "Gemini system instruction and tool definitions.", cmd: "$ opengap export -f gemini" },
{ label: "Codex", desc: "OpenAI Codex agent config with tool stubs.", cmd: "$ opengap export -f codex" },
{ label: "Kiro", desc: "Kiro agent spec with steering and hook definitions.", cmd: "$ opengap export -f kiro" },
{ label: "GitClaw", desc: "GitClaw workspace with config and skill mapping.", cmd: "$ opengap export -f gitclaw" },
{ label: "GitAgent", desc: "GitAgent workspace with config and skill mapping.", cmd: "$ opengap export -f gitagent" },
];

export function ExportSection() {
Expand Down
Loading