From 90e0aba28f73cde9af73c2e8fec42f3a98189441 Mon Sep 17 00:00:00 2001 From: Alessandro Gorla Date: Wed, 2 Sep 2026 16:09:53 +0200 Subject: [PATCH 1/3] Add com.gorlix.project-skills to the catalog Lets a Paca project register its own Agent Skills (agentskills.io format) via a dedicated plugin, backed by a project-scoped Postgres table and served over the plugin's own HTTP routes. Implements point 3 of Paca-AI/paca#453. Backend-only in this first release (no frontend/mcp/skills sections in the manifest, so those artifact URLs are omitted per the catalog's own per-surface-optional convention). Co-Authored-By: Claude Sonnet 5 --- catalog/plugins.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/catalog/plugins.json b/catalog/plugins.json index ae2dd44..d7c6a79 100644 --- a/catalog/plugins.json +++ b/catalog/plugins.json @@ -1,7 +1,7 @@ { "schema_version": 1, "source": "https://github.com/Paca-AI/paca-plugins", - "generated_at": "2026-08-30T00:00:00Z", + "generated_at": "2026-09-02T00:00:00Z", "plugins": [ { "name": "com.paca.checklist", @@ -108,6 +108,18 @@ "mcp_tar_gz_url": "https://github.com/Paca-AI/paca-plugin-dashboard/releases/download/v0.3.3/dashboard-mcp-dist.tar.gz", "skills_tar_gz_url": "https://github.com/Paca-AI/paca-plugin-dashboard/releases/download/v0.3.3/dashboard-skills-bundle.tar.gz" } + }, + { + "name": "com.gorlix.project-skills", + "display_name": "Project Skills", + "description": "Let a project register its own Agent Skills (agentskills.io format) and serve them over HTTP to any compliant client.", + "version": "0.1.0", + "repository_url": "https://github.com/gorlix/paca-plugin-project-skills", + "artifacts": { + "backend_tar_gz_url": "https://github.com/gorlix/paca-plugin-project-skills/releases/download/v0.1.0/backend.tar.gz", + "migrations_tar_gz_url": "https://github.com/gorlix/paca-plugin-project-skills/releases/download/v0.1.0/migrations.tar.gz", + "manifest_tar_gz_url": "https://github.com/gorlix/paca-plugin-project-skills/releases/download/v0.1.0/manifest.tar.gz" + } } ] } From 059e98cae79d1bba944df3437d85b0e58a4d2edd Mon Sep 17 00:00:00 2001 From: Alessandro Gorla Date: Wed, 2 Sep 2026 20:52:30 +0200 Subject: [PATCH 2/3] Update com.gorlix.project-skills to v0.2.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Skill bodies now link to real project Documents instead of storing plain text, and the plugin ships a frontend (sidebar tree + metadata page) for the first time — adds frontend_tar_gz_url. --- catalog/plugins.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/catalog/plugins.json b/catalog/plugins.json index d7c6a79..d9171b8 100644 --- a/catalog/plugins.json +++ b/catalog/plugins.json @@ -113,12 +113,13 @@ "name": "com.gorlix.project-skills", "display_name": "Project Skills", "description": "Let a project register its own Agent Skills (agentskills.io format) and serve them over HTTP to any compliant client.", - "version": "0.1.0", + "version": "0.2.0", "repository_url": "https://github.com/gorlix/paca-plugin-project-skills", "artifacts": { - "backend_tar_gz_url": "https://github.com/gorlix/paca-plugin-project-skills/releases/download/v0.1.0/backend.tar.gz", - "migrations_tar_gz_url": "https://github.com/gorlix/paca-plugin-project-skills/releases/download/v0.1.0/migrations.tar.gz", - "manifest_tar_gz_url": "https://github.com/gorlix/paca-plugin-project-skills/releases/download/v0.1.0/manifest.tar.gz" + "backend_tar_gz_url": "https://github.com/gorlix/paca-plugin-project-skills/releases/download/v0.2.0/backend.tar.gz", + "migrations_tar_gz_url": "https://github.com/gorlix/paca-plugin-project-skills/releases/download/v0.2.0/migrations.tar.gz", + "manifest_tar_gz_url": "https://github.com/gorlix/paca-plugin-project-skills/releases/download/v0.2.0/manifest.tar.gz", + "frontend_tar_gz_url": "https://github.com/gorlix/paca-plugin-project-skills/releases/download/v0.2.0/frontend.tar.gz" } } ] From 5af79941071e476ab2b03815df6daab9efd99286 Mon Sep 17 00:00:00 2001 From: Alessandro Gorla Date: Wed, 2 Sep 2026 21:16:52 +0200 Subject: [PATCH 3/3] Update com.gorlix.project-skills to v0.2.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds mcp_tar_gz_url — the plugin now ships MCP tools (project_skills_list, project_skills_get). --- catalog/plugins.json | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/catalog/plugins.json b/catalog/plugins.json index d9171b8..364f925 100644 --- a/catalog/plugins.json +++ b/catalog/plugins.json @@ -113,13 +113,14 @@ "name": "com.gorlix.project-skills", "display_name": "Project Skills", "description": "Let a project register its own Agent Skills (agentskills.io format) and serve them over HTTP to any compliant client.", - "version": "0.2.0", + "version": "0.2.1", "repository_url": "https://github.com/gorlix/paca-plugin-project-skills", "artifacts": { - "backend_tar_gz_url": "https://github.com/gorlix/paca-plugin-project-skills/releases/download/v0.2.0/backend.tar.gz", - "migrations_tar_gz_url": "https://github.com/gorlix/paca-plugin-project-skills/releases/download/v0.2.0/migrations.tar.gz", - "manifest_tar_gz_url": "https://github.com/gorlix/paca-plugin-project-skills/releases/download/v0.2.0/manifest.tar.gz", - "frontend_tar_gz_url": "https://github.com/gorlix/paca-plugin-project-skills/releases/download/v0.2.0/frontend.tar.gz" + "backend_tar_gz_url": "https://github.com/gorlix/paca-plugin-project-skills/releases/download/v0.2.1/backend.tar.gz", + "migrations_tar_gz_url": "https://github.com/gorlix/paca-plugin-project-skills/releases/download/v0.2.1/migrations.tar.gz", + "manifest_tar_gz_url": "https://github.com/gorlix/paca-plugin-project-skills/releases/download/v0.2.1/manifest.tar.gz", + "frontend_tar_gz_url": "https://github.com/gorlix/paca-plugin-project-skills/releases/download/v0.2.1/frontend.tar.gz", + "mcp_tar_gz_url": "https://github.com/gorlix/paca-plugin-project-skills/releases/download/v0.2.1/mcp.tar.gz" } } ]