Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.7.0 (2026-07-13)

- Add a native Codex target that emits `.agents/plugins/marketplace.json`,
`.codex-plugin/plugin.json`, skills, hooks, assets, and optional MCP config.
- Add per-plugin marketplace entry overrides for Codex policy and category
metadata.
- Consolidate target dispatch behind an adapter registry and harden source,
path, cleanup, and dependency handling.

## 0.1.0

- Initial prerelease.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"agent-skills",
"ai-agents",
"claude-code",
"codex",
"cursor",
"plugins",
"skills",
Expand Down
2 changes: 1 addition & 1 deletion src/components.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const targetDefaultComponents: Record<TargetName, readonly string[]> = {
copilot: ["skills", "agents", "hooks", "scripts", "assets"],
cursor: ["skills", "agents", "rules", "hooks", "scripts", "assets"],
antigravity: ["skills", "agents", "rules", "hooks", "scripts", "assets"],
codex: ["skills", "agents", "hooks", "scripts", "assets"],
codex: ["skills", "hooks", "scripts", "assets"],
};

export function resolveTargetComponents(
Expand Down
10 changes: 8 additions & 2 deletions tests/conformance.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,10 @@ const CONFIG = `export default {
glean: {
from: ["glean"],
entry: {
policy: { installation: "AVAILABLE", authentication: "NONE" },
policy: {
installation: "AVAILABLE",
authentication: "ON_INSTALL",
},
category: "Developer Tools"
}
}
Expand Down Expand Up @@ -289,7 +292,10 @@ describe("emitted output conforms to external target schemas", () => {
name: "glean",
source: "./plugins/glean",
version: "2.1.1",
policy: { installation: "AVAILABLE", authentication: "NONE" },
policy: {
installation: "AVAILABLE",
authentication: "ON_INSTALL",
},
category: "Developer Tools",
});

Expand Down