com.xsec.project-workspace
v1.2.2XSEC project assets, findings, reports and execution workspace
By XSECLicense: MIT0 GitHub starsUpdated 2 hours ago
Directory evidence
- Runtimes
- Agent Plugins
- Parsed components
- 0 skill or MCP entries
- Source updated
- Aug 29, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Get the plugin
git clone https://github.com/tzf1003/xsec-pluginsClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/com.xsec.project-workspace/.
This listing currently publishes only the generic Agent Plugins format. Automatic install commands for other clients are not generated yet.
Plugin files
└── plugin.json
Plugin manifests1
{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "com.xsec.project-workspace",
"version": "1.2.2",
"description": "XSEC project assets, findings, reports and execution workspace",
"author": {
"name": "XSEC"
},
"license": "MIT",
"extensions": {
"com.xsec.desktop": {
"schemaVersion": 1,
"displayName": "项目工作区",
"publisher": "XSEC",
"icon": "folder-kanban",
"engines": {
"xsec": ">=0.1.0",
"pluginApi": "^1.2.0"
},
"entrypoints": {
"frontend": "./com.xsec.desktop/frontend/index.js"
},
"activationEvents": [
"onWorkspaceOpen",
"onRoute:project.assets",
"onRoute:project.findings",
"onRoute:project.reports",
"onSettingsPage:project-workspace"
],
"permissions": {
"workspace.project.read": {},
"workspace.project.write": {},
"pluginData.read": {},
"pluginData.write": {}
},
"frontendApi": {
"version": 2,
"module": "single-esm",
"methods": {
"xsec.project.assets.list": {
"capability": "workspace.project.read",
"binding": "context"
},
"xsec.project.files.list": {
"capability": "workspace.project.read",
"binding": "context"
},
"xsec.project.findings.list": {
"capability": "workspace.project.read",
"binding": "context"
},
"xsec.project.reports.list": {
"capability": "workspace.project.read",
"binding": "context"
},
"xsec.project.runs.list": {
"capability": "workspace.project.read",
"binding": "context"
},
"xsec.project-workspace.settings.get": {
"capability": "pluginData.read",
"binding": "plugin"
},
"xsec.project-workspace.settings.set": {
"capability": "pluginData.write",
"binding": "plugin"
}
}
},
"contributes": {
"navigation": {
"items": {
"project.overview": {
"location": "project",
"title": "概览",
"icon": "dashboard",
"route": "overview",
"order": 100
},
"project.assets": {
"location": "project",
"title": "范围与资产",
"icon": "assets",
"route": "assets",
"order": 200
},
"project.findings": {
"location": "project",
"title": "正式漏洞",
"icon": "bug",
"route": "findings",
"order": 300
},
"project.reports": {
"location": "project",
"title": "报告",
"icon": "report",
"route": "reports",
"order": 400
},
"project.files": {
"location": "project",
"title": "文件",
"icon": "files",
"route": "files",
"order": 500
},
"project.batch": {
"location": "project",
"title": "项目任务",
"icon": "batch",
"route": "batch",
"order": 600
}
}
},
"routes": {
"project.overview": {
"path": "project/:projectId/overview",
"page": "project-overview"
},
"project.files": {
"path": "project/:projectId/files",
"page": "project-files"
},
"project.assets": {
"path": "project/:projectId/assets",
"page": "assets"
},
"project.batch": {
"path": "project/:projectId/batch",
"page": "runs"
},
"project.passive-findings": {
"path": "project/:projectId/passive-findings",
"page": "passive-findings"
},
"project.findings": {
"path": "project/:projectId/findings",
"page": "findings"
},
"project.reports": {
"path": "project/:projectId/reports",
"page": "reports"
}
},
"settingsPages": {
"project-workspace": {
"title": "项目工作区",
"group": "plugins",
"page": "project-workspace",
"icon": "folder-kanban",
"order": 110
}
}
}
}
}
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[com.xsec.project-workspace on Agent Plugins Marketplace](https://pluginsmp.com/plugins/com.xsec.project-workspace)