Files
kill-life-mesh/package.json
T
2026-03-21 09:07:11 +01:00

185 lines
4.9 KiB
JSON

{
"name": "kill-life-mesh",
"displayName": "Kill LIFE Mesh",
"description": "Orchestration-focused VS Code extension for coordinating linked local project agents across repos, contracts, and handoffs.",
"version": "0.1.0",
"publisher": "electron-rare",
"license": "MIT",
"engines": {
"vscode": "^1.110.0"
},
"categories": [
"AI",
"Other"
],
"keywords": [
"agents",
"copilot",
"chat",
"embedded",
"kill-life"
],
"activationEvents": [
"onChatParticipant:kill-life-mesh.orchestrator"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "killLifeMesh.refreshAgents",
"title": "Kill LIFE Mesh: Refresh Agents"
},
{
"command": "killLifeMesh.addLinkedProjectRoot",
"title": "Kill LIFE Mesh: Add Linked Project Root"
},
{
"command": "killLifeMesh.removeLinkedProjectRoot",
"title": "Kill LIFE Mesh: Remove Linked Project Root"
},
{
"command": "killLifeMesh.openAgentFile",
"title": "Kill LIFE Mesh: Open Agent File"
},
{
"command": "killLifeMesh.copyAgentPrompt",
"title": "Kill LIFE Mesh: Copy Agent Prompt"
},
{
"command": "killLifeMesh.insertAgentPrompt",
"title": "Kill LIFE Mesh: Insert Agent Prompt"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "killLifeMeshSidebar",
"title": "Kill LIFE Mesh",
"icon": "media/kill-life.svg"
}
]
},
"views": {
"killLifeMeshSidebar": [
{
"id": "killLifeMesh.agentsView",
"name": "Linked Agents"
}
]
},
"menus": {
"view/title": [
{
"command": "killLifeMesh.refreshAgents",
"when": "view == killLifeMesh.agentsView",
"group": "navigation@1"
},
{
"command": "killLifeMesh.addLinkedProjectRoot",
"when": "view == killLifeMesh.agentsView",
"group": "navigation@2"
},
{
"command": "killLifeMesh.removeLinkedProjectRoot",
"when": "view == killLifeMesh.agentsView",
"group": "navigation@3"
}
],
"view/item/context": [
{
"command": "killLifeMesh.openAgentFile",
"when": "view == killLifeMesh.agentsView && viewItem == agentItem",
"group": "inline"
},
{
"command": "killLifeMesh.copyAgentPrompt",
"when": "view == killLifeMesh.agentsView && viewItem == agentItem",
"group": "navigation@1"
},
{
"command": "killLifeMesh.insertAgentPrompt",
"when": "view == killLifeMesh.agentsView && viewItem == agentItem",
"group": "navigation@2"
}
]
},
"configuration": {
"title": "Kill LIFE Mesh",
"properties": {
"killLifeMesh.linkedProjectRoots": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "Additional absolute project roots to scan for agent markdown files."
},
"killLifeMesh.agentSearchPatterns": {
"type": "array",
"default": [
"agents/*.md",
".github/agents/*.md"
],
"items": {
"type": "string"
},
"description": "Glob patterns resolved relative to each project root."
}
}
},
"chatParticipants": [
{
"id": "kill-life-mesh.orchestrator",
"name": "killmesh",
"fullName": "Kill LIFE Mesh",
"description": "Coordinate multi-project orchestration from your linked local agents.",
"isSticky": true,
"commands": [
{
"name": "agents",
"description": "List linked projects and discovered agents."
},
{
"name": "pm",
"description": "Use the project management agent prompt."
},
{
"name": "architect",
"description": "Use the architecture agent prompt."
},
{
"name": "firmware",
"description": "Use the firmware agent prompt."
},
{
"name": "hw",
"description": "Use the hardware schematic agent prompt."
},
{
"name": "qa",
"description": "Use the QA agent prompt."
},
{
"name": "doc",
"description": "Use the documentation agent prompt."
}
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"check": "tsc --noEmit -p ./"
},
"dependencies": {
"fast-glob": "^3.3.3"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/vscode": "^1.110.0",
"typescript": "^5.9.3"
}
}