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
20 changes: 20 additions & 0 deletions .agents/plugins/marketplace.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "azure-cosmosdb",
"interface": {
"displayName": "Azure Cosmos DB"
},
"plugins": [
{
"name": "azure-cosmosdb",
"source": {
"source": "local",
"path": "./"
},
"policy": {
"installation": "AVAILABLE",
"authentication": "ON_INSTALL"
},
"category": "Databases"
}
]
}
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ This is the high-level log. For detailed per-iteration evaluation notes (test re

---

## 2026-07-21 — Add Codex repo marketplace catalog

- **New catalog:** `.agents/plugins/marketplace.json` — Codex-native repo marketplace listing the `azure-cosmosdb` plugin (`source.path: "./"`, `category: "Databases"`), so users can add it with `codex plugin marketplace add AzureCosmosDB/cosmosdb-agent-kit`. Codex also reads the legacy `.claude-plugin/marketplace.json`. The catalog carries no package `version` (schema-only) and is intentionally excluded from `npm run version`.
- **Docs:** README adds an OpenAI Codex CLI install section and updates the per-agent manifest table to reference both marketplace catalogs.

## v1.2.0 — 2026-07-21 — Add Kimi Code plugin surface

- **New manifest:** `.kimi-plugin/plugin.json` — Official Kimi Code plugin for Azure Cosmos DB, bundling the skills (`./skills/`) and the Azure MCP server (`@azure/mcp`). Mirrors the Codex `interface` block (display name, category, default prompts, brand color).
Expand Down
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,24 @@ Or add the custom marketplace catalog, then install from the plugin manager (`/p

The plugin manifest lives at `.kimi-plugin/plugin.json` and the catalog at `kimi-marketplace.json`.

### OpenAI Codex CLI

Add the repo marketplace, then install from the Plugins Directory in the ChatGPT desktop app:

Comment on lines +115 to +118
```
codex plugin marketplace add AzureCosmosDB/cosmosdb-agent-kit
```

The plugin manifest lives at `.codex-plugin/plugin.json` and the marketplace catalog at `.agents/plugins/marketplace.json` (Codex also reads the legacy `.claude-plugin/marketplace.json`).

### Per-agent plugin directories

The repository includes ready-made plugin manifests:

| Agent | Manifest |
|-------|----------|
| Claude Code | `.claude-plugin/plugin.json` |
| OpenAI Codex | `.codex-plugin/plugin.json` |
| Claude Code | `.claude-plugin/plugin.json` + `.claude-plugin/marketplace.json` |
| OpenAI Codex | `.codex-plugin/plugin.json` + `.agents/plugins/marketplace.json` |
| Cursor | `.cursor-plugin/plugin.json` |
| Gemini CLI | `gemini-extension.json` + `GEMINI.md` |
| Kimi Code | `.kimi-plugin/plugin.json` |
Expand Down