Skip to content
Draft
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
28 changes: 28 additions & 0 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "cocoindex-code",
"version": "1.0.0",
"description": "AST-based semantic code search for Claude Code, Cursor, and any skill-compatible coding agent — install in one command.",
"owner": {
"name": "Roxabi",
"email": "mickael@bouly.io"
},
"plugins": [
{
"name": "cocoindex-code",
"source": "./",
"description": "Semantic code search skill — wraps the `ccc` CLI to give coding agents AST-aware search over the current codebase.",
"category": "development",
"tags": [
"semantic-search",
"code-search",
"ast",
"indexing",
"rag",
"skill"
],
"homepage": "https://github.com/Roxabi/cocoindex-code",
"repository": "https://github.com/Roxabi/cocoindex-code",
"license": "Apache-2.0"
}
]
}
21 changes: 21 additions & 0 deletions .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "cocoindex-code",
"version": "1.0.0",
"description": "AST-based semantic code search via the ccc CLI. Bundles the ccc skill so coding agents handle init, indexing, and search automatically.",
"author": {
"name": "Roxabi",
"email": "mickael@bouly.io"
},
"homepage": "https://github.com/Roxabi/cocoindex-code",
"repository": "https://github.com/Roxabi/cocoindex-code",
"license": "Apache-2.0",
"keywords": [
"semantic-search",
"code-search",
"ast",
"rag",
"indexing",
"claude-code",
"skill"
]
}
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,17 @@ The agent uses semantic search automatically when it would be helpful. You can a

Works with [Claude Code](https://docs.anthropic.com/en/docs/claude-code) and other skill-compatible agents.

#### Claude Code plugin marketplace

For Claude Code users, this repository is also a [plugin marketplace](https://code.claude.com/docs/en/plugin-marketplaces). Install the skill from inside Claude Code with:

```text
/plugin marketplace add Roxabi/cocoindex-code
/plugin install cocoindex-code@cocoindex-code
```

This bundles the same `ccc` skill, with version pinning and `/plugin marketplace update` for updates.

### MCP Server

Alternatively, use `ccc mcp` to run as an MCP server:
Expand Down