tessl install tessl/npm-libnpmorg@8.0.0Programmatic API for managing npm organization memberships and roles
Agent Success
Agent success rate when using this tile
74%
Improvement
Agent success rate improvement when using this tile compared to baseline
0.97x
Baseline
Agent success rate without this tile
76%
Build a release helper that bumps package versions and assigns distribution tags to coordinate stable and preview releases using the package manager's built-in release tooling.
@generates
export async function performRelease(options: {
manifestPath: string;
packageName: string;
releaseType: 'patch' | 'minor' | 'major' | 'prerelease';
channel?: string; // distribution tag to update; defaults to the package's primary channel
prereleaseIdentifier?: string; // identifier for prerelease bumps (e.g., "beta")
dryRun?: boolean;
}): Promise<{
version: string;
appliedTags: Record<string, string>; // dist-tag -> version after the release (or planned when dryRun)
planned: string[]; // ordered description of actions taken or planned
}>;
export async function readTags(packageName: string): Promise<Record<string, string>>;Provides version bumping and distribution tag management for published packages.