@edgedive/cli
v0.1.8
Published
Edgedive CLI for agent session takeover and management
Downloads
125
Maintainers
Readme
Edgedive CLI
Command-line tool for working on Edgedive agent sessions locally and continuing development with Claude Code.
You can invoke the CLI as either dive (preferred in these docs) or edgedive; both binaries are available once the package is installed.
Installation
# Install globally
npm install -g @edgedive/cli
# Or use with npx (no installation required)
npx @edgedive/cli <command>Usage
Login
Authenticate with Edgedive using OAuth:
dive loginRequired options (choose one):
--pr-url– GitHub pull request URL created by the agent--issue-url– Linear issue URL associated with the session
This will:
- Open your browser to the Edgedive authorization page
- Ask you to approve access for the CLI
- Store your access token locally in
~/.edgedive/config.json
The token is valid for 30 days.
Local
Prepare an agent session locally from a GitHub PR:
# By PR URL
dive local --pr-url https://github.com/owner/repo/pull/123
# By Linear issue URL
dive local --issue-url https://linear.app/acme/issue/RND-123This will:
- Validate that you are inside the matching Git repository (based on the PR owner/name)
- Restore the Claude session file as
~/.claude/projects/{sanitized_repo_path}/{claude_session_id}.jsonl - Fetch and check out the PR branch locally
- Launch Claude (
claude -r <session_id>) in the repo root
Prerequisites
- You must be logged in (
dive login) - The PR must have been created by an Edgedive agent session
- You must have access to the tenant that owns the session
- Run the command from within the local clone of the target repository
Example output:
🔧 Edgedive Local Session Setup
PR URL: https://github.com/owner/repo/pull/123
🔍 Fetching session information...
✅ Found agent session!
Session Information:
Session ID: abc-123-def-456
Agent Type: claude_code
Status: completed
Repository: owner/repo
Branch: feature/new-feature
✅ Using repository at /Users/you/src/owner/repo
📁 Restored Claude session to: /Users/you/.claude/projects/Users-you-src-owner-repo/xyz-789.jsonl
✅ Checked out branch feature/new-feature
🚀 Launching Claude session xyz-789...
... (Claude CLI output) ...
✅ Claude session closed. Happy debugging!Logout
Remove stored credentials:
dive logoutThis removes the config file at ~/.edgedive/config.json.
Configuration
The CLI stores configuration in ~/.edgedive/config.json, which contains:
- OAuth access token
- Token expiration time
- OAuth scope
The file has restricted permissions (0600) for security.
Environment Variables
You can override default settings using environment variables:
EDGEDIVE_API_URL- API base URL (default:https://api.edgedive.com)EDGEDIVE_CLIENT_ID- OAuth client ID (default: registered CLI client ID)
Development
Setup
cd packages/edgedive-cli
pnpm install
pnpm buildLink for local testing
npm linkNow you can run dive commands from anywhere.
Build
pnpm buildCompiles TypeScript to JavaScript in the dist/ directory.
Building and Publishing
Build Process
The CLI is built using TypeScript and compiled to CommonJS modules in the dist/ directory:
TypeScript Compilation:
pnpm buildrunstscwhich:- Compiles all TypeScript files from
src/todist/ - Generates type declarations (
.d.tsfiles) - Creates source maps for debugging
- Outputs ES2022-compatible JavaScript modules
- Compiles all TypeScript files from
What Gets Published:
dist/directory (compiled JavaScript + type declarations)package.jsonREADME.md- The
binfield inpackage.jsonpoints todist/index.jsfor bothedgediveanddivecommands
Publishing to npm
The package is published to npm under the @edgedive/cli scope.
Prerequisites
- npm account with access to the
@edgediveorganization - Logged in to npm:
npm login - Clean build:
pnpm clean && pnpm build
Publishing Steps
# From the packages/edgedive-cli directory
# 1. Ensure you're on main and up to date
git checkout main
git pull origin main
# 2. Clean and build
pnpm clean
pnpm build
# 3. Test the built CLI
node dist/index.js --help
# 4. Update version (choose one)
npm version patch # 0.1.6 -> 0.1.7
npm version minor # 0.1.6 -> 0.2.0
npm version major # 0.1.6 -> 1.0.0
# 5. Publish to npm
npm publish --access public
# 6. Push the version tag
git push origin main --tagsCurrent Published Version
Latest: 0.1.6 (published 2025-11-07)
Continuous Integration
The CI pipeline (.github/workflows/ci.yml) automatically:
- Detects changes to
packages/edgedive-cli/** - Runs
pnpm build --filter @edgedive/cli - Tests the built CLI with
node dist/index.js --help
Note: Publishing to npm is currently a manual process. Consider setting up automated releases via GitHub Actions when appropriate.
OAuth Flow
The CLI uses OAuth 2.0 with PKCE (Proof Key for Code Exchange) for secure authentication:
- CLI generates a code verifier and code challenge
- Opens browser to authorization URL with code challenge
- User approves access in the Edgedive web UI
- Authorization server redirects to local callback server (http://localhost:8765)
- CLI exchanges authorization code for access token using code verifier
- Token is stored locally for future requests
The token is scoped to your tenant and allows read/write access as configured.
Troubleshooting
"You are not logged in"
Run dive login to authenticate.
"Your session may have expired"
Tokens expire after 30 days. Run dive login to refresh.
"No agent session found for PR"
The PR may not have been created by an Edgedive agent, or you may not have access to the tenant.
"Failed to download file"
The presigned URLs expire after 1 hour. If this happens, run the local command again to generate fresh URLs.
Browser doesn't open during login
Copy the URL from the terminal and paste it into your browser manually.
Security
- OAuth tokens are stored with restricted file permissions (0600)
- PKCE prevents authorization code interception attacks
- Tokens are scoped to specific tenants
- Presigned S3 URLs expire after 1 hour
- Local callback server only accepts connections from localhost
License
UNLICENSED - Internal Edgedive tool
