Skip to content

Commit f57c682

Browse files
authored
fix(metadata): align plugin and marketplace metadata (#987)
1 parent 1c8339a commit f57c682

7 files changed

Lines changed: 29 additions & 41 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"name": "compound-engineering-plugin",
33
"owner": {
4-
"name": "Kieran Klaassen",
5-
"url": "https://github.com/kieranklaassen"
4+
"name": "Kieran Klaassen and Trevin Chow"
65
},
76
"metadata": {
87
"description": "Plugin marketplace for Claude Code and Codex extensions",
@@ -11,11 +10,9 @@
1110
"plugins": [
1211
{
1312
"name": "compound-engineering",
14-
"description": "AI-powered development tools that get smarter with every use. Make each unit of engineering work easier than the last.",
13+
"description": "Brainstorm, plan, debug, review, and compound learnings with AI agents",
1514
"author": {
16-
"name": "Kieran Klaassen",
17-
"url": "https://github.com/kieranklaassen",
18-
"email": "kieran@every.to"
15+
"name": "Kieran Klaassen and Trevin Chow"
1916
},
2017
"homepage": "https://github.com/EveryInc/compound-engineering-plugin",
2118
"tags": [

.claude-plugin/plugin.json

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
11
{
22
"name": "compound-engineering",
33
"version": "3.14.0",
4-
"description": "AI-powered development tools for code review, research, design, and workflow automation.",
4+
"description": "Brainstorm, plan, debug, review, and compound learnings with AI agents",
55
"author": {
6-
"name": "Kieran Klaassen",
7-
"email": "kieran@every.to",
8-
"url": "https://github.com/kieranklaassen"
6+
"name": "Kieran Klaassen and Trevin Chow"
97
},
108
"homepage": "https://every.to/source-code/my-ai-had-already-fixed-the-code-before-i-saw-it",
119
"repository": "https://github.com/EveryInc/compound-engineering-plugin",
1210
"license": "MIT",
1311
"keywords": [
14-
"ai-powered",
15-
"compound-engineering",
16-
"workflow-automation",
12+
"brainstorming",
1713
"code-review",
18-
"rails",
19-
"ruby",
20-
"python",
21-
"typescript",
22-
"knowledge-management"
14+
"compound-engineering",
15+
"debugging",
16+
"ideation",
17+
"workflows",
18+
"workflow-automation"
2319
]
2420
}

.codex-plugin/plugin.json

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,26 @@
11
{
22
"name": "compound-engineering",
33
"version": "3.14.0",
4-
"description": "AI-powered development tools for code review, research, design, and workflow automation.",
4+
"description": "Brainstorm, plan, debug, review, and compound learnings with AI agents",
55
"author": {
6-
"name": "Kieran Klaassen",
7-
"email": "kieran@every.to",
8-
"url": "https://github.com/kieranklaassen"
6+
"name": "Kieran Klaassen and Trevin Chow"
97
},
108
"homepage": "https://every.to/source-code/my-ai-had-already-fixed-the-code-before-i-saw-it",
119
"repository": "https://github.com/EveryInc/compound-engineering-plugin",
1210
"license": "MIT",
1311
"keywords": [
14-
"ai-powered",
15-
"compound-engineering",
16-
"workflow-automation",
12+
"brainstorming",
1713
"code-review",
18-
"rails",
19-
"ruby",
20-
"python",
21-
"typescript",
22-
"knowledge-management"
14+
"compound-engineering",
15+
"debugging",
16+
"ideation",
17+
"workflows",
18+
"workflow-automation"
2319
],
2420
"skills": "./skills/",
2521
"interface": {
2622
"displayName": "Compound Engineering",
27-
"shortDescription": "Brainstorming, planning, debugging, and autonomous workflows for AI agents",
23+
"shortDescription": "Brainstorm, plan, debug, review, and compound learnings with AI agents",
2824
"longDescription": "Compound Engineering guides AI agents through the full engineering loop: strategy, ideation, requirements, planning, execution, debugging, review, PR feedback, and captured learnings that make future work easier.",
2925
"developerName": "Kieran Klaassen and Trevin Chow",
3026
"category": "Coding",
@@ -42,6 +38,7 @@
4238
"/ce-code-review my changes"
4339
],
4440
"brandColor": "#C9EFFA",
41+
"composerIcon": "./assets/logo.png",
4542
"logo": "./assets/logo.png",
4643
"screenshots": []
4744
}

.cursor-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
{
1414
"name": "compound-engineering",
1515
"source": ".",
16-
"description": "AI-powered development tools that get smarter with every use. Make each unit of engineering work easier than the last."
16+
"description": "Brainstorm, plan, debug, review, and compound learnings with AI agents"
1717
}
1818
]
1919
}

.cursor-plugin/plugin.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@
22
"name": "compound-engineering",
33
"displayName": "Compound Engineering",
44
"version": "3.14.0",
5-
"description": "AI-powered development tools for code review, research, design, and workflow automation.",
5+
"description": "Brainstorm, plan, debug, review, and compound learnings with AI agents",
66
"author": {
7-
"name": "Kieran Klaassen",
8-
"email": "kieran@every.to",
9-
"url": "https://github.com/kieranklaassen"
7+
"name": "Kieran Klaassen and Trevin Chow"
108
},
119
"homepage": "https://every.to/source-code/my-ai-had-already-fixed-the-code-before-i-saw-it",
1210
"repository": "https://github.com/EveryInc/compound-engineering-plugin",

src/release/metadata.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@ export type CompoundEngineeringCounts = {
7777
}
7878

7979
const COMPOUND_ENGINEERING_DESCRIPTION =
80-
"AI-powered development tools for code review, research, design, and workflow automation."
80+
"Brainstorm, plan, debug, review, and compound learnings with AI agents"
8181

8282
const COMPOUND_ENGINEERING_MARKETPLACE_DESCRIPTION =
83-
"AI-powered development tools that get smarter with every use. Make each unit of engineering work easier than the last."
83+
"Brainstorm, plan, debug, review, and compound learnings with AI agents"
8484

8585
function resolveExpectedVersion(
8686
explicitVersion: string | undefined,

tests/release-metadata.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ describe("release metadata", () => {
125125
const description = await buildCompoundEngineeringDescription(process.cwd())
126126

127127
expect(description).toBe(
128-
"AI-powered development tools for code review, research, design, and workflow automation.",
128+
"Brainstorm, plan, debug, review, and compound learnings with AI agents",
129129
)
130130
})
131131

@@ -216,7 +216,7 @@ describe("release metadata", () => {
216216
JSON.stringify(
217217
{
218218
version: "2.42.0",
219-
description: "AI-powered development tools for code review, research, design, and workflow automation.",
219+
description: "Brainstorm, plan, debug, review, and compound learnings with AI agents",
220220
},
221221
null,
222222
2,
@@ -240,7 +240,7 @@ describe("release metadata", () => {
240240

241241
const afterContents = JSON.parse(await Bun.file(codexPath).text())
242242
expect(afterContents.description).toBe(
243-
"AI-powered development tools for code review, research, design, and workflow automation.",
243+
"Brainstorm, plan, debug, review, and compound learnings with AI agents",
244244
)
245245
})
246246

0 commit comments

Comments
 (0)