🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@github/copilot

Package Overview
Dependencies
Maintainers
22
Versions
743
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@github/copilot - npm Package Compare versions

Comparing version
1.0.6
to
1.0.7-0
+8
-8
package.json
{
"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"
}
}

@@ -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