﻿---
title: "个人 marketplace.json（source.path 相对家目录）"
filename: "~/.agents/plugins/marketplace.json"
canonical: /templates/marketplace-source-path-root/
---

# 个人 marketplace.json（source.path 相对家目录）

./plugins/my-plugin 解析到 ~/plugins/my-plugin，不是 ~/.agents/plugins/plugins/my-plugin。

```
{
  "name": "personal",
  "interface": {
    "displayName": "My plugins"
  },
  "plugins": [
    {
      "name": "my-plugin",
      "source": {
        "source": "local",
        "path": "./plugins/my-plugin"
      },
      "policy": {
        "installation": "AVAILABLE",
        "authentication": "ON_INSTALL"
      },
      "category": "Productivity"
    }
  ]
}

```
