Zephyr plugin agent
npm install zephyr-agentInternal Package - The main internal package that provides the Zephyr agent for bundler plugins. This package contains the core functionality for deployment, asset management, and communication with Zephyr Cloud.
> Note: This is an internal package used by other Zephyr plugins. It is not intended for direct use by end users.
The Zephyr Agent is the core engine that powers all Zephyr bundler plugins. It provides:
- Deployment Pipeline: Handles the complete deployment workflow to Zephyr Cloud
- Asset Management: Optimizes and manages build assets for edge distribution
- Authentication: Manages secure communication with Zephyr Cloud services
- Build Context: Provides build-time context and metadata for plugins
- Edge Communication: Handles communication with Zephyr's edge network
The agent is structured into several key modules:
- Handles user authentication and authorization
- Manages API tokens and session management
- Provides WebSocket connections for real-time updates
- Extracts build metadata and package information
- Provides Git integration and repository context
- Manages dependency resolution and parsing
- Implements deployment strategies for different CDN providers
- Supports Cloudflare, Fastly, and Netlify deployment targets
- Handles asset uploads and build stats publication
- Manages deployment operations on edge infrastructure
- Handles snapshot creation and environment enabling
- Coordinates asset uploads and build statistics
- Provides HTTP client functionality with retries
- Handles file uploads and API communication
- Manages request/response lifecycle
Public Zephyr plugins interact with the agent through well-defined APIs:
``typescript
import { ZephyrAgent } from 'zephyr-agent';
// Initialize the agent
const agent = new ZephyrAgent({
buildContext: buildInfo,
assets: assetMap,
});
// Deploy to Zephyr Cloud
await agent.deploy();
`
The agent has minimal external dependencies:
- Core Dependencies: Node.js built-ins and essential utilities
- Network: HTTP client libraries for API communication
- File System: Asset management and build context extraction
- Crypto: Secure token management and validation
The agent is configured through build context and environment variables:
`typescript`
interface ZephyrAgentConfig {
buildContext: BuildContext;
assets: AssetMap;
deploymentOptions?: DeploymentOptions;
authentication?: AuthConfig;
}
IMPORTANT: Zephyr requires a properly initialized Git repository with a remote origin for production deployments.
#### Git Information Handling
When Zephyr cannot find a Git repository with remote origin, it will:
1. Automatic Package.json-Based Naming:
- Extract organization, project, and app names from your package.json
- Use authenticated user's username as the organization for personal Zephyr org
- Follow intelligent naming conventions based on package structure
- No user prompts or environment variables required
2. Enhanced Naming Logic:
- Scoped packages (@scope/name): project = scope, app = name@scope/name
- With root package.json:
- If root is scoped (): project = scope, app = current package name
- Otherwise: project = root package name, app = current package name
- Fallback to directory name: If no root package.json found, uses directory name as project
- Single package: project = app = package name
- Organization: Uses authenticated user's username (sanitized for URL safety)
#### Example Scenarios
`bashRecommended: Proper Git setup
git init
git remote add origin git@github.com:YOUR_ORG/YOUR_REPO.git
git add . && git commit -m "Initial commit"
npm run build # Works perfectly with full Git context
#### Why Git is Required
Zephyr uses Git information to:
- Determine organization and project structure
- Track deployment versions and commits
- Enable collaboration features
- Provide proper deployment metadata
Without Git, Zephyr cannot guarantee proper functionality, especially for:
- Production deployments
- Team collaboration
- Version tracking
- Rollback capabilities
#### Package.json-Based Naming (Non-Git Environments)
When Git is not available (e.g., AI coding tools, quick prototypes), Zephyr automatically extracts naming information from your
package.json structure:Automatic Organization Detection:
- Uses the authenticated user's name from your authentication token
- Requires valid authentication to determine organization
Project and App Naming Logic:
1. Scoped Package (
@company/app-name): - Project:
company (scope without @)
- App: app-name2. Monorepo Structure (root
package.json exists): - If root is scoped (
@company/monorepo): Project = company, App = current package name
- Otherwise: Project = root package name, App = current package name
- If no root package.json found: Project = current directory name, App = current package name3. Single Package:
- Project: Package name
- App: Package name
Internal APIs
$3
`typescript
// Extract package.json information
const packageInfo = await readPackageJson(projectRoot);// Get Git repository information
const gitInfo = await getGitInfo();
// Parse Zephyr dependencies
const deps = parseZephyrDependencies(packageJson);
`$3
`typescript
// Upload assets to CDN
await uploadAssets(assets, uploadStrategy);// Enable environment on edge
await enableSnapshotOnEdge(snapshotId);
// Upload build statistics
await uploadBuildStats(buildStats);
`Integration Points
The agent integrates with:
- Bundler Plugins: Receives build assets and metadata
- Zephyr Cloud: Deploys assets and manages deployments
- CDN Providers: Uploads assets to edge locations
- Git Providers: Extracts repository and commit information
Development
For plugin developers working on Zephyr integrations:
`bash
Build the agent
npm run buildRun tests
npm run testDevelopment mode
npm run dev
``The agent implements several security measures:
- Token Management: Secure storage and rotation of API tokens
- Encrypted Communication: All API communication uses HTTPS/WSS
- Input Validation: Validates all build inputs and configurations
- Access Control: Role-based access to deployment operations
This is an internal package. Contributions should be made through the main Zephyr plugins repository. Please read our contributing guidelines for more information.
Licensed under the Apache-2.0 License. See LICENSE for more information.