capsule-ai-cli
Version:
The AI Model Orchestrator - Intelligent multi-model workflows with device-locked licensing
28 lines • 2.29 kB
JavaScript
import React from 'react';
import { Box, Text } from 'ink';
import MessageBox from './MessageBox.js';
export const ActivationSetupBox = () => {
return (React.createElement(Box, { flexDirection: "column", gap: 1 },
React.createElement(MessageBox, { title: "Activation Required", type: "warning", message: "Capsule AI CLI requires activation to unlock all features and capabilities. Purchase a license to start using advanced AI models and tools.", width: 70 }),
React.createElement(Box, { marginLeft: 2, flexDirection: "column", gap: 1 },
React.createElement(Text, { color: "#00ff88", bold: true }, "\uD83D\uDE80 Get Started:"),
React.createElement(Box, { marginLeft: 2 },
React.createElement(Text, null, "1. Purchase a license at "),
React.createElement(Text, { color: "#00a8ff", underline: true }, "https://capsulecli.dev")),
React.createElement(Box, { marginLeft: 2 },
React.createElement(Text, null, "2. Activate your license:")),
React.createElement(Box, { marginLeft: 4, borderStyle: "single", borderColor: "#666", paddingX: 1 },
React.createElement(Text, { color: "#ff9500" }, "/activate")),
React.createElement(Box, { marginLeft: 2 },
React.createElement(Text, null, "3. Configure OpenRouter API key with "),
React.createElement(Text, { color: "#ff9500" }, "/keys")),
React.createElement(Box, { marginTop: 1, marginLeft: 2, flexDirection: "column" },
React.createElement(Text, { color: "#888" }, "\u2728 Features include:"),
React.createElement(Box, { marginLeft: 2, flexDirection: "column" },
React.createElement(Text, { color: "#888" }, "\u2022 Access to all AI providers (OpenAI, Anthropic, Google, etc.)"),
React.createElement(Text, { color: "#888" }, "\u2022 Advanced orchestration and planning modes"),
React.createElement(Text, { color: "#888" }, "\u2022 Tool execution and file operations"),
React.createElement(Text, { color: "#888" }, "\u2022 Sub-agent spawning for complex tasks"))))));
};
export default ActivationSetupBox;
//# sourceMappingURL=ActivationSetupBox.js.map