From f01ed954785486f5e4001ebecdef61eb4c706db0 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 27 May 2026 12:16:24 +0000 Subject: [PATCH 1/2] Align plugin manifest descriptions and keywords Adopt a single canonical description and keyword set across .claude-plugin/plugin.json, .claude-plugin/marketplace.json, and .codex-plugin/plugin.json. The codex manifest had a shorter description omitting LSP and agents, and its keyword list ended with `idf` instead of `lsp`. Also adds the trailing period to the claude plugin.json description to match marketplace.json. Closes #7 https://claude.ai/code/session_01MC82EEqNUzMVwvPzJMoJ66 --- .claude-plugin/plugin.json | 2 +- .codex-plugin/plugin.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 3910ac1..c7fc0e1 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "idfkit", "version": "0.1.0", - "description": "EnergyPlus building energy modeling plugin — MCP server, LSP, skills, and agents for creating, validating, and simulating building energy models with idfkit", + "description": "EnergyPlus building energy modeling plugin — MCP server, LSP, skills, and agents for creating, validating, and simulating building energy models with idfkit.", "author": { "name": "idfkit", "email": "developers@idfkit.com", diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json index 750d03c..d55b9a4 100644 --- a/.codex-plugin/plugin.json +++ b/.codex-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "idfkit", "version": "0.1.0", - "description": "EnergyPlus building energy modeling plugin with skills and MCP tooling for creating, validating, and simulating IDF models.", + "description": "EnergyPlus building energy modeling plugin — MCP server, LSP, skills, and agents for creating, validating, and simulating building energy models with idfkit.", "author": { "name": "idfkit", "email": "developers@idfkit.com", @@ -17,7 +17,7 @@ "simulation", "hvac", "mcp", - "idf" + "lsp" ], "skills": "./skills/", "mcpServers": "./.mcp.json", From 5ffd04660aa78caaefc76ed16ab4e3919e22be73 Mon Sep 17 00:00:00 2001 From: Samuel Letellier-Duchesne Date: Wed, 27 May 2026 09:19:42 -0400 Subject: [PATCH 2/2] Add 'idf' to the plugin.json file --- .codex-plugin/plugin.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json index d55b9a4..1851693 100644 --- a/.codex-plugin/plugin.json +++ b/.codex-plugin/plugin.json @@ -17,7 +17,8 @@ "simulation", "hvac", "mcp", - "lsp" + "lsp", + "idf" ], "skills": "./skills/", "mcpServers": "./.mcp.json",