@github/copilot
Advanced tools
+8
-8
| { | ||
| "name": "@github/copilot", | ||
| "description": "GitHub Copilot CLI brings the power of Copilot coding agent directly to your terminal.", | ||
| "version": "1.0.6", | ||
| "version": "1.0.7-0", | ||
| "license": "SEE LICENSE IN LICENSE.md", | ||
@@ -64,12 +64,12 @@ "type": "module", | ||
| "buildMetadata": { | ||
| "gitCommit": "904335b" | ||
| "gitCommit": "c570292" | ||
| }, | ||
| "optionalDependencies": { | ||
| "@github/copilot-linux-x64": "1.0.6", | ||
| "@github/copilot-linux-arm64": "1.0.6", | ||
| "@github/copilot-darwin-x64": "1.0.6", | ||
| "@github/copilot-darwin-arm64": "1.0.6", | ||
| "@github/copilot-win32-x64": "1.0.6", | ||
| "@github/copilot-win32-arm64": "1.0.6" | ||
| "@github/copilot-linux-x64": "1.0.7-0", | ||
| "@github/copilot-linux-arm64": "1.0.7-0", | ||
| "@github/copilot-darwin-x64": "1.0.7-0", | ||
| "@github/copilot-darwin-arm64": "1.0.7-0", | ||
| "@github/copilot-win32-x64": "1.0.7-0", | ||
| "@github/copilot-win32-arm64": "1.0.7-0" | ||
| } | ||
| } |
+548
-0
@@ -848,4 +848,552 @@ { | ||
| "stability": "experimental" | ||
| }, | ||
| "reload": { | ||
| "rpcMethod": "session.agent.reload", | ||
| "params": { | ||
| "type": "object", | ||
| "properties": { | ||
| "sessionId": { | ||
| "type": "string", | ||
| "description": "Target session identifier" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "sessionId" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "result": { | ||
| "type": "object", | ||
| "properties": { | ||
| "agents": { | ||
| "type": "array", | ||
| "items": { | ||
| "type": "object", | ||
| "properties": { | ||
| "name": { | ||
| "type": "string", | ||
| "description": "Unique identifier of the custom agent" | ||
| }, | ||
| "displayName": { | ||
| "type": "string", | ||
| "description": "Human-readable display name" | ||
| }, | ||
| "description": { | ||
| "type": "string", | ||
| "description": "Description of the agent's purpose" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "name", | ||
| "displayName", | ||
| "description" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "description": "Reloaded custom agents" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "agents" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "stability": "experimental" | ||
| } | ||
| }, | ||
| "skills": { | ||
| "list": { | ||
| "rpcMethod": "session.skills.list", | ||
| "params": { | ||
| "type": "object", | ||
| "properties": { | ||
| "sessionId": { | ||
| "type": "string", | ||
| "description": "Target session identifier" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "sessionId" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "result": { | ||
| "type": "object", | ||
| "properties": { | ||
| "skills": { | ||
| "type": "array", | ||
| "items": { | ||
| "type": "object", | ||
| "properties": { | ||
| "name": { | ||
| "type": "string", | ||
| "description": "Unique identifier for the skill" | ||
| }, | ||
| "description": { | ||
| "type": "string", | ||
| "description": "Description of what the skill does" | ||
| }, | ||
| "source": { | ||
| "type": "string", | ||
| "description": "Source location type (e.g., project, personal, plugin)" | ||
| }, | ||
| "userInvocable": { | ||
| "type": "boolean", | ||
| "description": "Whether the skill can be invoked by the user as a slash command" | ||
| }, | ||
| "enabled": { | ||
| "type": "boolean", | ||
| "description": "Whether the skill is currently enabled" | ||
| }, | ||
| "path": { | ||
| "type": "string", | ||
| "description": "Absolute path to the skill file" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "name", | ||
| "description", | ||
| "source", | ||
| "userInvocable", | ||
| "enabled" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "description": "Available skills" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "skills" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "stability": "experimental" | ||
| }, | ||
| "enable": { | ||
| "rpcMethod": "session.skills.enable", | ||
| "params": { | ||
| "type": "object", | ||
| "properties": { | ||
| "sessionId": { | ||
| "type": "string", | ||
| "description": "Target session identifier" | ||
| }, | ||
| "name": { | ||
| "type": "string", | ||
| "description": "Name of the skill to enable" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "sessionId", | ||
| "name" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "result": { | ||
| "type": "object", | ||
| "properties": {}, | ||
| "additionalProperties": false | ||
| }, | ||
| "stability": "experimental" | ||
| }, | ||
| "disable": { | ||
| "rpcMethod": "session.skills.disable", | ||
| "params": { | ||
| "type": "object", | ||
| "properties": { | ||
| "sessionId": { | ||
| "type": "string", | ||
| "description": "Target session identifier" | ||
| }, | ||
| "name": { | ||
| "type": "string", | ||
| "description": "Name of the skill to disable" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "sessionId", | ||
| "name" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "result": { | ||
| "type": "object", | ||
| "properties": {}, | ||
| "additionalProperties": false | ||
| }, | ||
| "stability": "experimental" | ||
| }, | ||
| "reload": { | ||
| "rpcMethod": "session.skills.reload", | ||
| "params": { | ||
| "type": "object", | ||
| "properties": { | ||
| "sessionId": { | ||
| "type": "string", | ||
| "description": "Target session identifier" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "sessionId" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "result": { | ||
| "type": "object", | ||
| "properties": {}, | ||
| "additionalProperties": false | ||
| }, | ||
| "stability": "experimental" | ||
| } | ||
| }, | ||
| "mcp": { | ||
| "list": { | ||
| "rpcMethod": "session.mcp.list", | ||
| "params": { | ||
| "type": "object", | ||
| "properties": { | ||
| "sessionId": { | ||
| "type": "string", | ||
| "description": "Target session identifier" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "sessionId" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "result": { | ||
| "type": "object", | ||
| "properties": { | ||
| "servers": { | ||
| "type": "array", | ||
| "items": { | ||
| "type": "object", | ||
| "properties": { | ||
| "name": { | ||
| "type": "string", | ||
| "description": "Server name (config key)" | ||
| }, | ||
| "status": { | ||
| "type": "string", | ||
| "enum": [ | ||
| "connected", | ||
| "failed", | ||
| "pending", | ||
| "disabled", | ||
| "not_configured" | ||
| ], | ||
| "description": "Connection status: connected, failed, pending, disabled, or not_configured" | ||
| }, | ||
| "source": { | ||
| "type": "string", | ||
| "description": "Configuration source: user, workspace, plugin, or builtin" | ||
| }, | ||
| "error": { | ||
| "type": "string", | ||
| "description": "Error message if the server failed to connect" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "name", | ||
| "status" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "description": "Configured MCP servers" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "servers" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "stability": "experimental" | ||
| }, | ||
| "enable": { | ||
| "rpcMethod": "session.mcp.enable", | ||
| "params": { | ||
| "type": "object", | ||
| "properties": { | ||
| "sessionId": { | ||
| "type": "string", | ||
| "description": "Target session identifier" | ||
| }, | ||
| "serverName": { | ||
| "type": "string", | ||
| "description": "Name of the MCP server to enable" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "sessionId", | ||
| "serverName" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "result": { | ||
| "type": "object", | ||
| "properties": {}, | ||
| "additionalProperties": false | ||
| }, | ||
| "stability": "experimental" | ||
| }, | ||
| "disable": { | ||
| "rpcMethod": "session.mcp.disable", | ||
| "params": { | ||
| "type": "object", | ||
| "properties": { | ||
| "sessionId": { | ||
| "type": "string", | ||
| "description": "Target session identifier" | ||
| }, | ||
| "serverName": { | ||
| "type": "string", | ||
| "description": "Name of the MCP server to disable" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "sessionId", | ||
| "serverName" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "result": { | ||
| "type": "object", | ||
| "properties": {}, | ||
| "additionalProperties": false | ||
| }, | ||
| "stability": "experimental" | ||
| }, | ||
| "reload": { | ||
| "rpcMethod": "session.mcp.reload", | ||
| "params": { | ||
| "type": "object", | ||
| "properties": { | ||
| "sessionId": { | ||
| "type": "string", | ||
| "description": "Target session identifier" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "sessionId" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "result": { | ||
| "type": "object", | ||
| "properties": {}, | ||
| "additionalProperties": false | ||
| }, | ||
| "stability": "experimental" | ||
| } | ||
| }, | ||
| "plugins": { | ||
| "list": { | ||
| "rpcMethod": "session.plugins.list", | ||
| "params": { | ||
| "type": "object", | ||
| "properties": { | ||
| "sessionId": { | ||
| "type": "string", | ||
| "description": "Target session identifier" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "sessionId" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "result": { | ||
| "type": "object", | ||
| "properties": { | ||
| "plugins": { | ||
| "type": "array", | ||
| "items": { | ||
| "type": "object", | ||
| "properties": { | ||
| "name": { | ||
| "type": "string", | ||
| "description": "Plugin name" | ||
| }, | ||
| "marketplace": { | ||
| "type": "string", | ||
| "description": "Marketplace the plugin came from" | ||
| }, | ||
| "version": { | ||
| "type": "string", | ||
| "description": "Installed version" | ||
| }, | ||
| "enabled": { | ||
| "type": "boolean", | ||
| "description": "Whether the plugin is currently enabled" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "name", | ||
| "marketplace", | ||
| "enabled" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "description": "Installed plugins" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "plugins" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "stability": "experimental" | ||
| } | ||
| }, | ||
| "extensions": { | ||
| "list": { | ||
| "rpcMethod": "session.extensions.list", | ||
| "params": { | ||
| "type": "object", | ||
| "properties": { | ||
| "sessionId": { | ||
| "type": "string", | ||
| "description": "Target session identifier" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "sessionId" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "result": { | ||
| "type": "object", | ||
| "properties": { | ||
| "extensions": { | ||
| "type": "array", | ||
| "items": { | ||
| "type": "object", | ||
| "properties": { | ||
| "id": { | ||
| "type": "string", | ||
| "description": "Source-qualified ID (e.g., 'project:my-ext', 'user:auth-helper')" | ||
| }, | ||
| "name": { | ||
| "type": "string", | ||
| "description": "Extension name (directory name)" | ||
| }, | ||
| "source": { | ||
| "type": "string", | ||
| "enum": [ | ||
| "project", | ||
| "user" | ||
| ], | ||
| "description": "Discovery source: project (.github/extensions/) or user (~/.copilot/extensions/)" | ||
| }, | ||
| "status": { | ||
| "type": "string", | ||
| "enum": [ | ||
| "running", | ||
| "disabled", | ||
| "failed", | ||
| "starting" | ||
| ], | ||
| "description": "Current status: running, disabled, failed, or starting" | ||
| }, | ||
| "pid": { | ||
| "type": "integer", | ||
| "description": "Process ID if the extension is running" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "id", | ||
| "name", | ||
| "source", | ||
| "status" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "description": "Discovered extensions and their current status" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "extensions" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "stability": "experimental" | ||
| }, | ||
| "enable": { | ||
| "rpcMethod": "session.extensions.enable", | ||
| "params": { | ||
| "type": "object", | ||
| "properties": { | ||
| "sessionId": { | ||
| "type": "string", | ||
| "description": "Target session identifier" | ||
| }, | ||
| "id": { | ||
| "type": "string", | ||
| "description": "Source-qualified extension ID to enable" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "sessionId", | ||
| "id" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "result": { | ||
| "type": "object", | ||
| "properties": {}, | ||
| "additionalProperties": false | ||
| }, | ||
| "stability": "experimental" | ||
| }, | ||
| "disable": { | ||
| "rpcMethod": "session.extensions.disable", | ||
| "params": { | ||
| "type": "object", | ||
| "properties": { | ||
| "sessionId": { | ||
| "type": "string", | ||
| "description": "Target session identifier" | ||
| }, | ||
| "id": { | ||
| "type": "string", | ||
| "description": "Source-qualified extension ID to disable" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "sessionId", | ||
| "id" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "result": { | ||
| "type": "object", | ||
| "properties": {}, | ||
| "additionalProperties": false | ||
| }, | ||
| "stability": "experimental" | ||
| }, | ||
| "reload": { | ||
| "rpcMethod": "session.extensions.reload", | ||
| "params": { | ||
| "type": "object", | ||
| "properties": { | ||
| "sessionId": { | ||
| "type": "string", | ||
| "description": "Target session identifier" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "sessionId" | ||
| ], | ||
| "additionalProperties": false | ||
| }, | ||
| "result": { | ||
| "type": "object", | ||
| "properties": {}, | ||
| "additionalProperties": false | ||
| }, | ||
| "stability": "experimental" | ||
| } | ||
| }, | ||
| "compaction": { | ||
@@ -852,0 +1400,0 @@ "compact": { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
AI-detected potential code anomaly
Supply chain riskAI has identified unusual behaviors that may pose a security risk.
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
AI-detected potential code anomaly
Supply chain riskAI has identified unusual behaviors that may pose a security risk.
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
132838766
0.08%66891
3.26%6
20%