Skip to content

Commit c829e64

Browse files
committed
release: v0.0.12
1 parent 6405add commit c829e64

5 files changed

Lines changed: 21 additions & 12 deletions

File tree

build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,14 @@ plugins {
55
}
66

77
group = "love.forte.tools"
8-
version = "0.0.11"
8+
version = "0.0.12"
99

1010
allprojects {
1111
repositories {
1212
mavenCentral()
1313
}
1414
}
15+
16+
subprojects {
17+
version = rootProject.version
18+
}

buildSrc/src/main/kotlin/MarketplaceJson.kt

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@ import org.intellij.lang.annotations.Language
1212
fun marketPlaceJson(version: String): String {
1313
return """
1414
{
15-
"${"$"}schema": "https://anthropic.com/claude-code/marketplace.schema.json",
1615
"name": "codex-agent-collaboration-marketplace",
17-
"version": "$version",
18-
"description": "Marketplace for Codex AI agent collaboration skills - execute tasks using Codex for code analysis, implementation, and collaboration",
16+
"metadata": {
17+
"description": "Marketplace for Codex AI agent collaboration skills - execute tasks using Codex for code analysis, implementation, and collaboration",
18+
"version": "$version"
19+
},
1920
"owner": {
2021
"name": "Forte Scarlet",
2122
"email": "ForteScarlet@163.com"
@@ -78,7 +79,10 @@ fun marketplaceJsonForRoot(
7879
"${"$"}schema": "https://anthropic.com/claude-code/marketplace.schema.json",
7980
"name": "$name",
8081
"version": "$version",
81-
"description": "$description",
82+
"metadata": {
83+
"description": "$description",
84+
"version": "$version"
85+
},
8286
"owner": {
8387
"name": "$ownerName",
8488
"email": "$ownerEmail"

claude-code-skills-template/agents/codex-collaboration.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
---
22
name: codex-collaboration
3-
description: AI-powered coding agent using Codex for implementation, analysis, solution exploration, and collaboration tasks
3+
description: Delegate to Codex AI when you need alternative implementation approaches, code analysis from a different perspective, or want to explore multiple solutions. Best for complex coding tasks that benefit from a second AI opinion.
44
model: inherit
55
skills: codex-agent-collaboration
6+
color: cyan
67
---
78

89
# Codex Collaboration Agent

claude-code-skills-template/codex-agent-collaboration/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: codex-agent-collaboration
3-
description: Execute tasks using Codex AI agent for code analysis, implementation, and collaboration
3+
description: Delegate coding tasks to Codex AI for implementation, analysis, and alternative solutions. Use when you need a second AI perspective, want to explore different approaches, or need specialized Codex capabilities for complex coding tasks.
44
---
55

66
# Codex CLI Skill

codex-kkp-cli/build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,13 @@ val prepareMarketplace = tasks.register<MarketplacePackagingTask>("prepareMarket
141141
// Marketplace metadata
142142
this.marketplaceName.set("codex-agent-collaboration-marketplace")
143143
this.version.set(project.version.toString())
144-
this.marketplaceDescription.set("Marketplace for Codex AI agent collaboration plugins - execute tasks using Codex for code analysis, implementation, and collaboration")
144+
this.marketplaceDescription.set("Marketplace for Codex AI agent collaboration - delegate coding tasks to Codex for implementation, analysis, and alternative solutions")
145145
this.ownerName.set("Forte Scarlet")
146146
this.ownerEmail.set("ForteScarlet@163.com")
147147

148148
// Plugin metadata
149-
this.pluginName.set("codex-agent-collaboration-skills")
150-
this.pluginDescription.set("Execute tasks using Codex AI agent for code analysis, implementation, and collaboration")
149+
this.pluginName.set("codex-agent-collaboration-plugin")
150+
this.pluginDescription.set("Delegate coding tasks to Codex AI for implementation, analysis, and alternative solutions")
151151
this.pluginCategory.set("development")
152152
this.authorName.set("Forte Scarlet")
153153
this.authorEmail.set("ForteScarlet@163.com")
@@ -190,12 +190,12 @@ tasks.register<Zip>("packageMarketplace") {
190190
// Generate backward-compatible marketplace.json for plugin-only structure
191191
val generateBackwardCompatibleMetadata = tasks.register<GenerateBackwardCompatibleMetadataTask>("generateBackwardCompatibleMetadata") {
192192
group = "distribution"
193-
description = "Generates backward-compatible marketplace.json for plugin-only structure"
193+
description = "Generates backward-compatible plugin.json for plugin-only structure"
194194

195195
dependsOn(prepareUnifiedSkill)
196196

197197
this.version.set(project.version.toString())
198-
this.marketplaceJsonFile.set(layout.buildDirectory.file("plugins/.claude-plugin/marketplace.json"))
198+
this.marketplaceJsonFile.set(layout.buildDirectory.file("plugins/.claude-plugin/plugin.json"))
199199
}
200200

201201
// Prepare standalone executables for release distribution

0 commit comments

Comments
 (0)