{"passport":{"unfragile":{"@version":"1.0","version":"2026-05","artifact":{"id":"github-intitni--copilotforxcode","slug":"intitni--copilotforxcode","name":"CopilotForXcode","type":"extension","url":"https://copilotforxcode.intii.com","page_url":"https://unfragile.ai/intitni--copilotforxcode","categories":["code-editors"],"tags":["chat","chatgpt","code-completion","code-generation","codeium","copilot","github-copilot","githubcopilot","macos","openai","tabby","xcode","xcode-extension","xcode-extensions"],"pricing":{"model":"open_source","free":true,"starting_price":null},"status":"active","verified":false},"capabilities":[{"id":"github-intitni--copilotforxcode__cap_0","uri":"capability://tool.use.integration.multi.provider.ai.service.abstraction.with.unified.interface","name":"multi-provider ai service abstraction with unified interface","description":"Implements a provider pattern architecture that abstracts GitHub Copilot, OpenAI GPT, Codeium, and Tabby behind unified service interfaces, allowing runtime selection and switching between AI backends without code changes. Uses XPC inter-process communication to isolate AI service calls in separate processes, preventing sandbox violations and enabling credential isolation per provider.","intents":["Switch between multiple AI providers (Copilot, ChatGPT, Codeium) without reconfiguring the extension","Isolate API credentials for different AI services in separate processes for security","Add new AI providers without modifying core extension code","Fall back to alternative providers if primary service is unavailable"],"best_for":["Teams evaluating multiple AI coding assistants","Developers wanting provider flexibility without vendor lock-in","Organizations with security requirements for credential isolation"],"limitations":["XPC communication adds ~50-100ms latency per AI request due to inter-process marshalling","Each provider requires separate API key configuration and authentication flow","Provider switching doesn't preserve conversation context across different backends","Limited to providers with public APIs (no local-only models in initial architecture)"],"requires":["macOS 11+","Xcode 13+","API credentials for at least one supported provider (GitHub token, OpenAI key, Codeium token, or Tabby endpoint)"],"input_types":["code context (file content, cursor position, selected text)","chat messages (text)","provider configuration (API endpoint, authentication token)"],"output_types":["code suggestions (inline completions)","chat responses (streamed text)","structured metadata (suggestion confidence, provider info)"],"categories":["tool-use-integration","code-generation-editing"],"confidence":0.5,"matches":0,"success_rate":0},{"id":"github-intitni--copilotforxcode__cap_1","uri":"capability://code.generation.editing.real.time.code.completion.with.xcode.editor.state.synchronization","name":"real-time code completion with xcode editor state synchronization","description":"Monitors Xcode editor state through Accessibility APIs to capture cursor position, selected text, and file context in real-time, then generates inline code suggestions using the selected AI provider. Implements a suggestion widget system that overlays completions directly in the editor without modifying the source file until accepted, using XPC to communicate editor state changes to the suggestion provider service.","intents":["Get code completions as you type without leaving the editor","See multiple completion options and choose the best one","Understand why a completion was suggested based on context","Accept or reject suggestions with keyboard shortcuts"],"best_for":["Swift/Objective-C developers using Xcode","Teams wanting GitHub Copilot-like experience in native Xcode","Developers who prefer in-editor suggestions over separate chat panels"],"limitations":["Accessibility API monitoring has ~200-500ms latency depending on Xcode responsiveness","Suggestions only work in Xcode editor; no support for external editors","Widget rendering is limited to Xcode's native UI capabilities (no custom rendering)","Requires Accessibility permissions which may be blocked by MDM policies","Context window limited to visible file + workspace metadata, not full codebase"],"requires":["macOS 11+","Xcode 13+","Accessibility API permissions granted to Xcode","Active AI provider with valid credentials"],"input_types":["editor state (cursor position, line number, column)","file content (current file being edited)","selection context (selected text, surrounding code)"],"output_types":["inline code suggestions (text with syntax highlighting)","suggestion metadata (confidence score, provider name)","completion acceptance/rejection events"],"categories":["code-generation-editing","memory-knowledge"],"confidence":0.5,"matches":0,"success_rate":0},{"id":"github-intitni--copilotforxcode__cap_10","uri":"capability://text.generation.language.chat.ui.with.tab.based.conversation.management","name":"chat ui with tab-based conversation management","description":"Implements a chat interface with multiple tabs, where each tab represents a separate conversation with independent message history, context, and AI provider selection. Tabs can be created, closed, and switched without losing conversation state. The UI includes message display with syntax highlighting for code blocks, input field with multi-line support, and controls for accepting/rejecting suggestions from chat.","intents":["Maintain multiple parallel conversations for different coding tasks","Switch between conversations without losing context","See code suggestions from chat and insert them into the editor","Organize conversations by topic or task"],"best_for":["Developers working on multiple features simultaneously","Teams using chat for code review and collaboration","Developers wanting organized conversation history"],"limitations":["Tab state is in-memory only; tabs are lost when extension restarts","No built-in export or sharing of conversations","Tab switching may have slight lag with large conversation histories","UI is limited to Xcode's native UI capabilities; no custom rendering","No search or filtering across conversations"],"requires":["macOS 11+","Xcode 13+","Active AI provider with chat capability"],"input_types":["chat messages (text input)","code snippets (from editor or manual paste)","tab management commands (create, close, switch)"],"output_types":["chat responses (rendered with syntax highlighting)","conversation metadata (message count, tokens used)","insertable code suggestions (from chat responses)"],"categories":["text-generation-language"],"confidence":0.5,"matches":0,"success_rate":0},{"id":"github-intitni--copilotforxcode__cap_11","uri":"capability://data.processing.analysis.code.context.extraction.and.formatting.for.ai.prompts","name":"code context extraction and formatting for ai prompts","description":"Extracts relevant code context from the editor (selected text, surrounding code, file content) and formats it for inclusion in AI prompts with proper syntax highlighting markers and line number references. Handles language-specific formatting (indentation, comment styles) and includes metadata about the code (file path, language, function/class context). Intelligently selects context window size based on AI provider's token limits.","intents":["Include relevant code context in chat prompts without manual copying","Get suggestions that understand the surrounding code structure","Reference specific lines or functions in chat conversations","Provide code context that respects AI provider's token limits"],"best_for":["Developers wanting automatic code context in chat","Teams using AI for code review and explanation","Developers working with large files where manual context selection is tedious"],"limitations":["Context extraction is limited to visible/selected code; no full codebase analysis","Large files may exceed token limits even with intelligent truncation","Context formatting may not perfectly preserve code semantics","No support for cross-file context (e.g., imported modules, dependencies)","Indentation and formatting may be lost in some edge cases"],"requires":["macOS 11+","Xcode 13+","Active editor with code content"],"input_types":["editor state (cursor position, selection)","file content (current file being edited)","language information (file extension, syntax)"],"output_types":["formatted code context (with line numbers, syntax markers)","context metadata (file path, language, function context)","token count estimate (for context window planning)"],"categories":["data-processing-analysis","memory-knowledge"],"confidence":0.5,"matches":0,"success_rate":0},{"id":"github-intitni--copilotforxcode__cap_12","uri":"capability://code.generation.editing.suggestion.acceptance.and.code.insertion.with.formatting.preservation","name":"suggestion acceptance and code insertion with formatting preservation","description":"Handles acceptance of AI-generated code suggestions by inserting them into the editor at the cursor position while preserving the surrounding code's indentation and formatting. Supports partial acceptance (accepting only part of a suggestion), rejection, and regeneration. Tracks accepted suggestions for analytics and learning. Uses Accessibility APIs to interact with the editor for insertion.","intents":["Accept code suggestions and have them inserted with correct indentation","Reject suggestions and request alternatives","Accept only part of a suggestion if the full suggestion isn't suitable","Track which suggestions were useful for improving future suggestions"],"best_for":["Developers using real-time code completion","Teams wanting to track suggestion acceptance for analytics","Developers who need precise control over suggestion acceptance"],"limitations":["Insertion through Accessibility APIs is slower than native editor APIs","Formatting preservation may fail with complex indentation patterns","Partial acceptance requires manual selection; no smart partial acceptance","Undo/redo may not work correctly with Accessibility-based insertion","Large suggestions may cause editor lag during insertion"],"requires":["macOS 11+","Xcode 13+","Accessibility API permissions","Active editor with cursor position"],"input_types":["suggestion text (code to insert)","acceptance type (full, partial, reject, regenerate)","cursor position and surrounding code"],"output_types":["insertion confirmation (success/failure)","updated editor state (code inserted)","analytics event (suggestion accepted/rejected)"],"categories":["code-generation-editing"],"confidence":0.5,"matches":0,"success_rate":0},{"id":"github-intitni--copilotforxcode__cap_13","uri":"capability://automation.workflow.update.and.version.management.for.extension.and.services","name":"update and version management for extension and services","description":"Implements an update system that checks for new versions of the extension and services, downloads updates, and manages version compatibility. Supports staged rollout of updates and rollback to previous versions if needed. Manages version information for the main app, extension, and individual services, ensuring compatibility across components.","intents":["Get notified when updates are available","Update the extension without manual reinstallation","Rollback to a previous version if an update breaks functionality","Manage compatibility between extension and service versions"],"best_for":["Users wanting automatic updates without manual intervention","Teams managing extension deployment across multiple developers","Developers needing version compatibility management"],"limitations":["Update system requires network access to check for updates","No built-in delta updates; full versions must be downloaded","Rollback requires manual intervention; no automatic rollback on failure","Update checks may add startup latency","No support for staged rollout across user base"],"requires":["macOS 11+","Xcode 13+","Network access to update servers","Write access to extension installation directory"],"input_types":["version information (current version, available versions)","update manifest (version metadata, download URLs)"],"output_types":["update availability (new version available/not available)","download progress (bytes downloaded, total size)","installation status (success/failure)"],"categories":["automation-workflow"],"confidence":0.5,"matches":0,"success_rate":0},{"id":"github-intitni--copilotforxcode__cap_2","uri":"capability://text.generation.language.stateful.chat.with.conversation.memory.and.context.management","name":"stateful chat with conversation memory and context management","description":"Implements a chat service with persistent conversation history stored in memory, supporting multi-turn interactions where each message includes accumulated context from previous exchanges. Uses a chat tab system that maintains separate conversation threads, with each tab managing its own message history, selected code context, and AI provider state. Context is automatically captured from the current Xcode editor state and can be manually selected to include specific files or code snippets in the conversation.","intents":["Have multi-turn conversations about code without losing context","Ask follow-up questions that reference previous messages","Maintain separate conversations for different coding tasks","Include specific code snippets or files in chat context"],"best_for":["Developers debugging complex issues through conversation","Teams collaborating on code review through chat","Developers exploring API documentation through interactive chat"],"limitations":["Conversation history is in-memory only; lost when extension restarts","No built-in persistence to disk or cloud storage","Context window limited by AI provider's token limits (typically 4K-8K tokens)","No automatic context pruning when conversations exceed token limits","Chat history not synced across multiple Xcode instances"],"requires":["macOS 11+","Xcode 13+","Active AI provider with valid credentials","Sufficient token quota for multi-turn conversations"],"input_types":["chat messages (text)","code context (selected files, code snippets)","editor state (current file, cursor position)"],"output_types":["chat responses (streamed text)","code suggestions from chat (inline insertable code)","conversation metadata (message count, tokens used, provider)"],"categories":["text-generation-language","memory-knowledge"],"confidence":0.5,"matches":0,"success_rate":0},{"id":"github-intitni--copilotforxcode__cap_3","uri":"capability://data.processing.analysis.xcode.workspace.and.project.introspection","name":"xcode workspace and project introspection","description":"Monitors Xcode's workspace structure through Accessibility APIs and XPC communication to extract project metadata including file hierarchy, build settings, active scheme, and target information. This metadata is used to provide context-aware suggestions that understand the project structure, build configuration, and language-specific patterns. The Xcode Inspector service parses workspace files and maintains a real-time model of the project state.","intents":["Get suggestions that understand the project's build configuration and dependencies","Understand which target or scheme is currently active","See code suggestions that match the project's coding style and patterns","Get context-aware completions based on available frameworks and dependencies"],"best_for":["Developers working on complex multi-target Xcode projects","Teams with specific build configurations or code style requirements","Developers wanting suggestions that respect project-specific constraints"],"limitations":["Workspace introspection is limited to what Accessibility APIs expose; some metadata may be unavailable","Build settings parsing is incomplete for complex Xcode configurations","No support for CocoaPods or SPM dependency graph analysis","Workspace changes require manual refresh; no real-time file system monitoring","Limited to Xcode projects; no support for external build systems (Bazel, CMake)"],"requires":["macOS 11+","Xcode 13+","Accessibility API permissions","Valid Xcode project or workspace file"],"input_types":["Xcode workspace/project files (pbxproj, xcworkspace)","Build settings (scheme, target, configuration)","File system structure (directory hierarchy)"],"output_types":["project metadata (targets, schemes, dependencies)","build configuration context","file hierarchy and relationships"],"categories":["data-processing-analysis","memory-knowledge"],"confidence":0.5,"matches":0,"success_rate":0},{"id":"github-intitni--copilotforxcode__cap_4","uri":"capability://code.generation.editing.prompt.to.code.generation.with.inline.insertion","name":"prompt-to-code generation with inline insertion","description":"Enables developers to write natural language prompts in the editor (prefixed with special markers) that are converted to code by the AI provider, with generated code automatically inserted at the cursor position. The system parses prompt markers, sends the prompt to the selected AI provider, and handles the generated code insertion with proper indentation and formatting matching the surrounding code style.","intents":["Generate code from natural language descriptions without leaving the editor","Create boilerplate or utility functions by describing their purpose","Generate test code or helper methods from prompts","Quickly scaffold code structures by describing them in comments"],"best_for":["Developers who prefer describing code intent over typing boilerplate","Teams using AI-assisted development as part of their workflow","Rapid prototyping scenarios where speed matters more than precision"],"limitations":["Generated code quality depends entirely on prompt clarity and AI provider capability","No automatic validation that generated code compiles or is syntactically correct","Indentation and formatting may not perfectly match project style in all cases","Prompt parsing is simple marker-based; no support for complex prompt structures","Generated code is inserted immediately; no preview or review step before insertion"],"requires":["macOS 11+","Xcode 13+","Active AI provider with code generation capability","Knowledge of prompt marker syntax"],"input_types":["natural language prompts (text with special markers)","editor context (cursor position, surrounding code)","code style hints (indentation, formatting)"],"output_types":["generated code (inserted at cursor)","formatted code with proper indentation","generation metadata (tokens used, provider)"],"categories":["code-generation-editing"],"confidence":0.5,"matches":0,"success_rate":0},{"id":"github-intitni--copilotforxcode__cap_5","uri":"capability://tool.use.integration.xpc.based.inter.process.communication.for.sandbox.isolation","name":"xpc-based inter-process communication for sandbox isolation","description":"Implements a multi-process architecture where the main Xcode extension communicates with separate service processes (AI services, suggestion provider, chat service) through XPC (Cross-Process Communication). Each service runs in its own process with isolated sandboxing, allowing credential isolation, independent lifecycle management, and crash isolation. XPC interfaces are defined as Swift protocols that are automatically marshalled across process boundaries.","intents":["Isolate AI service credentials so one compromised provider doesn't expose all keys","Prevent a crash in one service from crashing the entire extension","Run services with different sandbox entitlements based on their needs","Enable independent updates and versioning of services"],"best_for":["Security-conscious teams requiring credential isolation","Large extensions with multiple independent services","Teams needing high availability and fault tolerance"],"limitations":["XPC marshalling adds 50-100ms latency per service call","Debugging across process boundaries is more complex than monolithic code","XPC protocol definitions must be manually kept in sync across processes","No built-in request batching; each call is a separate XPC transaction","Memory overhead from running multiple processes instead of single process"],"requires":["macOS 11+","Xcode 13+","Swift 5.5+ for async/await XPC support","Understanding of XPC protocol definition and marshalling"],"input_types":["service requests (method calls with parameters)","configuration (service endpoints, credentials)","streaming data (for long-running operations)"],"output_types":["service responses (return values, errors)","streamed results (for long-running operations)","service status and health information"],"categories":["tool-use-integration","automation-workflow"],"confidence":0.5,"matches":0,"success_rate":0},{"id":"github-intitni--copilotforxcode__cap_6","uri":"capability://memory.knowledge.accessibility.api.based.editor.state.monitoring","name":"accessibility api-based editor state monitoring","description":"Continuously monitors Xcode's editor state through macOS Accessibility APIs to capture real-time changes including cursor position, selected text, file path, and visible code range. This monitoring enables the extension to provide context-aware suggestions without requiring Xcode source editor extension APIs (which have limited capabilities). The system uses accessibility notifications to detect editor changes and queries the accessibility tree to extract current state.","intents":["Detect when the user moves the cursor or changes selection","Know which file is currently being edited","Capture the surrounding code context for suggestions","Trigger suggestions automatically when the user stops typing"],"best_for":["Extensions that need rich editor context without source editor extension APIs","Developers building AI features that require real-time editor awareness","macOS-only tools that can leverage Accessibility APIs"],"limitations":["Accessibility API monitoring has 200-500ms latency; not suitable for sub-100ms response requirements","Requires explicit Accessibility permissions which users must grant manually","MDM policies may block Accessibility permissions, breaking the extension","Accessibility tree parsing is fragile; Xcode UI changes can break monitoring","No access to Xcode's internal data structures; limited to what's exposed via accessibility","Performance overhead from continuous accessibility tree queries"],"requires":["macOS 11+","Xcode 13+","Accessibility API permissions granted to Xcode","User approval in System Preferences > Security & Privacy > Accessibility"],"input_types":["accessibility notifications (editor state changes)","accessibility tree queries (current editor state)"],"output_types":["editor state (cursor position, selection, file path)","code context (surrounding code, visible range)","change events (cursor moved, selection changed, file changed)"],"categories":["memory-knowledge","data-processing-analysis"],"confidence":0.5,"matches":0,"success_rate":0},{"id":"github-intitni--copilotforxcode__cap_7","uri":"capability://automation.workflow.configuration.and.preferences.management.with.feature.flags","name":"configuration and preferences management with feature flags","description":"Implements a preferences system that stores user configuration (API keys, provider selection, suggestion behavior) in Xcode's preferences directory with encryption for sensitive data. Supports feature flags to enable/disable functionality without code changes, allowing A/B testing and gradual rollout of new features. Configuration is synchronized across the main app and extension processes through XPC.","intents":["Configure which AI provider to use without restarting Xcode","Store API credentials securely without exposing them in logs","Enable/disable features like real-time suggestions or chat","Customize suggestion behavior (auto-trigger delay, suggestion count)"],"best_for":["Users wanting to customize AI provider and behavior","Teams managing feature rollout across multiple developers","Developers testing new features with feature flags"],"limitations":["Preferences stored in user's home directory; not synced across machines","Encryption is basic; not suitable for highly sensitive credentials","Feature flags require code changes to define; no dynamic flag definition","Configuration changes may require extension restart to take effect","No built-in validation of configuration values"],"requires":["macOS 11+","Xcode 13+","Write access to user's preferences directory"],"input_types":["configuration values (strings, booleans, numbers)","API credentials (tokens, endpoints)","feature flag definitions"],"output_types":["configuration objects (deserialized preferences)","feature flag states (enabled/disabled)","validation results (config is valid/invalid)"],"categories":["automation-workflow"],"confidence":0.5,"matches":0,"success_rate":0},{"id":"github-intitni--copilotforxcode__cap_8","uri":"capability://text.generation.language.streaming.response.handling.for.long.running.ai.operations","name":"streaming response handling for long-running ai operations","description":"Implements streaming response handling for AI provider APIs that return results incrementally (e.g., OpenAI's streaming completions). Uses async/await patterns to handle streamed chunks, accumulating them into complete responses while displaying partial results to the user in real-time. Supports cancellation of in-flight requests and proper cleanup of streaming connections.","intents":["See code suggestions appear incrementally as they're generated","Cancel long-running suggestions if they're going in the wrong direction","Get faster perceived response time by showing partial results immediately","Handle large responses that would timeout if waited for completely"],"best_for":["Developers using streaming-capable AI providers (OpenAI, Anthropic)","Users with slower network connections who benefit from progressive results","Teams wanting responsive UI during long-running operations"],"limitations":["Streaming support depends on AI provider API; not all providers support it","Partial results may be incomplete or syntactically invalid until fully streamed","Network interruptions mid-stream result in incomplete responses","Memory overhead from buffering streamed chunks","No built-in retry logic for failed streams; requires manual restart"],"requires":["macOS 11+","Xcode 13+","AI provider with streaming API support","Swift 5.5+ for async/await"],"input_types":["streaming API responses (chunked text data)","cancellation signals (user-initiated cancellation)"],"output_types":["partial results (incomplete suggestions shown progressively)","complete results (final accumulated response)","streaming status (in-progress, completed, cancelled)"],"categories":["text-generation-language","automation-workflow"],"confidence":0.5,"matches":0,"success_rate":0},{"id":"github-intitni--copilotforxcode__cap_9","uri":"capability://tool.use.integration.github.copilot.authentication.and.token.management","name":"github copilot authentication and token management","description":"Implements GitHub Copilot-specific authentication flow including device code authentication, token refresh, and expiration handling. Manages Copilot API tokens securely in the system keychain, with automatic refresh before expiration. Handles Copilot-specific API endpoints and request formatting, including support for Copilot's custom headers and authentication schemes.","intents":["Authenticate with GitHub Copilot using device code flow","Keep Copilot authentication token fresh without user intervention","Use Copilot as the primary AI provider for code suggestions","Handle Copilot API rate limits and quota management"],"best_for":["GitHub Copilot subscribers wanting native Xcode integration","Teams already using Copilot who want better Xcode experience","Developers preferring Copilot's training data and model"],"limitations":["Requires active GitHub Copilot subscription","Device code authentication requires browser access for initial setup","Token refresh may fail if GitHub is unreachable","Copilot API changes may break compatibility without notice","No support for Copilot for Business organization-specific features"],"requires":["macOS 11+","Xcode 13+","GitHub account with active Copilot subscription","Network access to GitHub authentication servers"],"input_types":["GitHub credentials (username, device code)","Copilot API requests (code context, prompt)"],"output_types":["authentication tokens (access token, refresh token)","Copilot suggestions (code completions)","token status (valid, expired, invalid)"],"categories":["tool-use-integration"],"confidence":0.5,"matches":0,"success_rate":0}],"trust":{"score":41,"verified":false,"data_access_risk":"high","permissions":["macOS 11+","Xcode 13+","API credentials for at least one supported provider (GitHub token, OpenAI key, Codeium token, or Tabby endpoint)","Accessibility API permissions granted to Xcode","Active AI provider with valid credentials","Active AI provider with chat capability","Active editor with code content","Accessibility API permissions","Active editor with cursor position","Network access to update servers"],"failure_modes":["XPC communication adds ~50-100ms latency per AI request due to inter-process marshalling","Each provider requires separate API key configuration and authentication flow","Provider switching doesn't preserve conversation context across different backends","Limited to providers with public APIs (no local-only models in initial architecture)","Accessibility API monitoring has ~200-500ms latency depending on Xcode responsiveness","Suggestions only work in Xcode editor; no support for external editors","Widget rendering is limited to Xcode's native UI capabilities (no custom rendering)","Requires Accessibility permissions which may be blocked by MDM policies","Context window limited to visible file + workspace metadata, not full codebase","Tab state is in-memory only; tabs are lost when extension restarts","builder identity is not verified yet","no observed match outcomes yet"],"rank_breakdown":{"adoption":0.3390780449361704,"quality":0.35,"ecosystem":0.6000000000000001,"match_graph":0.25,"freshness":0.75,"weights":{"adoption":0.25,"quality":0.25,"ecosystem":0.15,"match_graph":0.23,"freshness":0.12}},"observed_outcomes":{"matches":0,"success_rate":0,"avg_confidence":0,"top_intents":[],"last_matched_at":null},"maintenance":{"status":"active","updated_at":"2026-05-24T12:16:21.550Z","last_scraped_at":"2026-05-03T13:58:37.059Z","last_commit":"2026-04-15T16:09:41Z"},"community":{"stars":8256,"forks":426,"weekly_downloads":null,"model_downloads":null,"model_likes":null}},"distribution":{"claim_url":"https://unfragile.ai/submit?claim=intitni--copilotforxcode","compare_url":"https://unfragile.ai/compare?artifact=intitni--copilotforxcode"}},"signature":"zGruShDzIHWoNbwJ7qlggTfmw1XxG/ZT8zCsMAqZOcGKIuBfLnjQvPR3Pa/yhiXsB5p6IYQxKXiHA2HaUyCVDQ==","signedAt":"2026-06-21T22:03:05.490Z","signedBy":"unfragile.ai","version":1},"_links":{"self":"https://unfragile.ai/api/v1/passport/intitni--copilotforxcode","artifact":"https://unfragile.ai/intitni--copilotforxcode","verify":"https://unfragile.ai/api/v1/verify?slug=intitni--copilotforxcode","publicKey":"https://unfragile.ai/api/v1/trust-passport-public-key","spec":"https://unfragile.ai/trust","schema":"https://unfragile.ai/schema.json","docs":"https://unfragile.ai/docs"}}