You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit fully rebrands the project from CodeIndex to Codei by updating:
- Package author fields across all package.json files
- Code comments, test temporary directories, and configuration values
- Documentation, user guides, and AI integration skill files
- npm package scope references from @CodeIndex to @codei
Copy file name to clipboardExpand all lines: .trae/skills/codei/SKILL.md
+28-28Lines changed: 28 additions & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,17 @@
1
1
---
2
-
name: "codeindex"
2
+
name: "codei"
3
3
description: "Retrieves relevant code context from a hierarchical index to reduce token usage and improve AI coding accuracy. Invoke when understanding codebase structure, following dependencies, or needing targeted code context for a task."
4
4
---
5
5
6
-
# Codeindex — Vectorless Reasoning-Based Code Index
6
+
# Codei — Vectorless Reasoning-Based Code Index
7
7
8
8
## Overview
9
9
10
-
`codeindex` builds a hierarchical tree index of your codebase and uses LLM reasoning to retrieve only the relevant context you need — reducing token usage from **50,000+ tokens to ~1,000-3,000 tokens** per query.
10
+
`codei` builds a hierarchical tree index of your codebase and uses LLM reasoning to retrieve only the relevant context you need — reducing token usage from **50,000+ tokens to ~1,000-3,000 tokens** per query.
11
11
12
12
## When to Invoke This Skill
13
13
14
-
**Invoke codeindex when:**
14
+
**Invoke codei when:**
15
15
- User asks about how a feature/component works
16
16
- Need to understand code structure or dependencies
17
17
- Following import/dependency chains
@@ -28,66 +28,66 @@ description: "Retrieves relevant code context from a hierarchical index to reduc
28
28
## Prerequisites
29
29
30
30
Before using this skill, ensure:
31
-
1.`codeindex` is installed: `npm install -g @codeindex/codeindex` or run from source
32
-
2. Project has been indexed: `codeindex index <project-path>`
33
-
3. LLM API key is configured: `codeindex setup`
31
+
1.`codei` is installed: `npm install -g @codei/cli` or run from source
32
+
2. Project has been indexed: `codei index <project-path>`
Copy file name to clipboardExpand all lines: docs/RELEASING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ pnpm run release:publish
65
65
## Notes
66
66
67
67
- The GitHub workflow at `.github/workflows/release.yml` uses `changesets/action` to open or update a release PR automatically on `main`.
68
-
- To enable npm publishing from GitHub Actions, add an `NPM_TOKEN` repository secret with publish access to the `@codeindex` scope and the `@codei` scope.
68
+
- To enable npm publishing from GitHub Actions, add an `NPM_TOKEN` repository secret with publish access to the `@codei` scope.
69
69
-`release:publish` runs `release:check` first.
70
70
- Packages are published in topological dependency order so `@codei/core` is available before adapters and `@codei/cli`.
71
71
- The website package is private and is not part of npm publishing.
0 commit comments