Skip to content

feat: rename package and monorepo from neex to neexp - #63

Merged
Foshati merged 1 commit into
mainfrom
rename/neex-to-neexp-457897711399595692
Jul 18, 2026
Merged

feat: rename package and monorepo from neex to neexp#63
Foshati merged 1 commit into
mainfrom
rename/neex-to-neexp-457897711399595692

Conversation

@Foshati

@Foshati Foshati commented Jul 16, 2026

Copy link
Copy Markdown
Contributor

This PR executes a comprehensive and precise rename of the project from neex to neexp across all layers of the monorepo architecture.

Changes:

  • Rust crates: Renamed directories and Cargo.toml definitions to neexp-core, neexp-daemon, neexp-cli, and neexp-napi. Internal imports and path dependencies updated to match.
  • NPM packages: Renamed npm/neex to npm/neexp and npm/create-neex to npm/create-neexp. Optional platform binary packages renamed to @neexpjs/*. Node installation wrappers and neexp.js updated to fetch and execute the neexp binary.
  • CLI and Configuration: The CLI binary target is now neexp. User configuration locations changed from ~/.neex to ~/.neexp. neex string occurrences in bash scripts, TUI outputs, and TS config utils were updated to neexp.
  • Documentation: READMEs, CONTRIBUTING.md, SECURITY.md, and template READMEs updated to use the new project name. The GitHub org links (Neexjs) and image URLs were carefully preserved per instruction.
  • Lockfiles: Safely regenerated Cargo.lock (via cargo test/build) and pnpm-lock.yaml (via pnpm install).

All Rust tests pass, and the Node.js TS templates successfully build.


PR created automatically by Jules for task 457897711399595692 started by @Foshati

This commit renames the project from "neex" to "neexp" completely and precisely across all layers:
- Rust crates are now `neexp-core`, `neexp-daemon`, `neexp-cli`, `neexp-napi`.
- The NPM packages are `neexp` and `create-neexp`.
- The CLI binary is renamed from `neex` to `neexp`.
- User configuration paths updated from `~/.neex` to `~/.neexp`.
- Internal Rust imports changed to `neexp_*`.
- Environment and caching files (.gitignore, .neexp-cache) are updated.
- Documentation and templates accurately reflect the new names while preserving GitHub organization links and image URLs.
- Cargo and PNPM lockfiles have been regenerated.
- Tested successfully under rust/cargo tests and pnpm builds.

Co-authored-by: Foshati <140284749+Foshati@users.noreply.github.com>
@google-labs-jules

Copy link
Copy Markdown
Contributor

👋 Jules, reporting for duty! I'm here to lend a hand with this pull request.

When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down.

I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job!

For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with @jules. You can find this option in the Pull Request section of your global Jules UI settings. You can always switch back!

New to Jules? Learn more at jules.google/docs.


For security, I will only act on instructions from the user who triggered this task.

@coderabbitai

coderabbitai Bot commented Jul 16, 2026

Copy link
Copy Markdown

Important

Review skipped

Too many files!

This PR contains 85 files, which is 35 over the limit of 50.

To get a review, narrow the scope:
• coderabbit review --type committed # exclude uncommitted changes
• coderabbit review --dir # limit to a subdirectory
• coderabbit review --base # compare against a closer base

Upgrade to a paid plan to raise the limit.

⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 2f3f404c-bc70-4d8d-8796-74556d3bce04

📥 Commits

Reviewing files that changed from the base of the PR and between b65e5a9 and a02d8e5.

⛔ Files ignored due to path filters (2)
  • Cargo.lock is excluded by !**/*.lock
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
📒 Files selected for processing (86)
  • .github/ISSUE_TEMPLATE/bug_report.yml
  • .github/ISSUE_TEMPLATE/feature_request.yml
  • .github/ISSUE_TEMPLATE/help.yml
  • .github/dependabot.yml
  • .github/release-please-config.json
  • .gitignore
  • CONTRIBUTING.md
  • README.md
  • SECURITY.md
  • crates/Cargo.toml
  • crates/neexp-cli/Cargo.toml
  • crates/neexp-cli/src/main.rs
  • crates/neexp-cli/src/tui.rs
  • crates/neexp-core/Cargo.toml
  • crates/neexp-core/src/ast_hasher.rs
  • crates/neexp-core/src/cache.rs
  • crates/neexp-core/src/cloud.rs
  • crates/neexp-core/src/graph.rs
  • crates/neexp-core/src/hasher.rs
  • crates/neexp-core/src/lib.rs
  • crates/neexp-core/src/runner.rs
  • crates/neexp-core/src/scheduler.rs
  • crates/neexp-core/src/symbol_graph.rs
  • crates/neexp-core/src/symbols.rs
  • crates/neexp-daemon/Cargo.toml
  • crates/neexp-daemon/src/lib.rs
  • crates/neexp-daemon/src/p2p.rs
  • crates/neexp-daemon/src/server.rs
  • crates/neexp-daemon/src/state.rs
  • crates/neexp-daemon/src/watcher.rs
  • crates/neexp-napi/Cargo.toml
  • crates/neexp-napi/src/lib.rs
  • demo/README.md
  • demo/package.json
  • npm/create-neexp/CHANGELOG.md
  • npm/create-neexp/README.md
  • npm/create-neexp/package.json
  • npm/create-neexp/src/index.ts
  • npm/create-neexp/src/utils/config.ts
  • npm/create-neexp/src/utils/logo.ts
  • npm/create-neexp/templates/next-express/README.md
  • npm/create-neexp/templates/next-express/_gitignore
  • npm/create-neexp/templates/next-express/apps/api/package.json
  • npm/create-neexp/templates/next-express/apps/api/src/index.ts
  • npm/create-neexp/templates/next-express/apps/api/tsconfig.json
  • npm/create-neexp/templates/next-express/apps/web/next.config.ts
  • npm/create-neexp/templates/next-express/apps/web/package.json
  • npm/create-neexp/templates/next-express/apps/web/src/app/globals.css
  • npm/create-neexp/templates/next-express/apps/web/src/app/layout.tsx
  • npm/create-neexp/templates/next-express/apps/web/src/app/page.tsx
  • npm/create-neexp/templates/next-express/apps/web/tsconfig.json
  • npm/create-neexp/templates/next-express/package.json
  • npm/create-neexp/templates/next-express/packages/ui/package.json
  • npm/create-neexp/templates/next-express/packages/ui/src/Button.tsx
  • npm/create-neexp/templates/next-express/packages/ui/src/index.ts
  • npm/create-neexp/templates/next-express/packages/ui/tsconfig.json
  • npm/create-neexp/templates/next-express/packages/utils/package.json
  • npm/create-neexp/templates/next-express/packages/utils/src/index.ts
  • npm/create-neexp/templates/next-express/packages/utils/tsconfig.json
  • npm/create-neexp/templates/next-hono/README.md
  • npm/create-neexp/templates/next-hono/_gitignore
  • npm/create-neexp/templates/next-hono/apps/api/package.json
  • npm/create-neexp/templates/next-hono/apps/api/src/index.ts
  • npm/create-neexp/templates/next-hono/apps/api/tsconfig.json
  • npm/create-neexp/templates/next-hono/apps/web/next.config.ts
  • npm/create-neexp/templates/next-hono/apps/web/package.json
  • npm/create-neexp/templates/next-hono/apps/web/src/app/globals.css
  • npm/create-neexp/templates/next-hono/apps/web/src/app/layout.tsx
  • npm/create-neexp/templates/next-hono/apps/web/src/app/page.tsx
  • npm/create-neexp/templates/next-hono/apps/web/tsconfig.json
  • npm/create-neexp/templates/next-hono/package.json
  • npm/create-neexp/templates/next-hono/packages/ui/package.json
  • npm/create-neexp/templates/next-hono/packages/ui/src/Button.tsx
  • npm/create-neexp/templates/next-hono/packages/ui/src/index.ts
  • npm/create-neexp/templates/next-hono/packages/ui/tsconfig.json
  • npm/create-neexp/templates/next-hono/packages/utils/package.json
  • npm/create-neexp/templates/next-hono/packages/utils/src/index.ts
  • npm/create-neexp/templates/next-hono/packages/utils/tsconfig.json
  • npm/create-neexp/tsconfig.json
  • npm/neex/bin/neex
  • npm/neexp/README.md
  • npm/neexp/bin/neexp.js
  • npm/neexp/install.js
  • npm/neexp/package.json
  • package.json
  • scripts/format.sh

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • Review on demand using usage pricing
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch rename/neex-to-neexp-457897711399595692

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@Foshati
Foshati merged commit f3d2169 into main Jul 18, 2026
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant