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%
A CLI helper that installs a curated list of packages either into a workspace or globally, providing a clear summary of what was installed.
dependencies in the manifest and on disk. @testdevDependencies without affecting production entries. @test@generates
/**
* Installs packages locally or globally based on provided options.
* @param {Object} options
* @param {string} options.cwd - Workspace directory to use for local installs.
* @param {Array<{ name: string, version?: string, dev?: boolean }>} options.packages - Packages to install.
* @param {boolean} [options.global=false] - Whether to install the packages globally.
* @param {boolean} [options.dryRun=false] - Whether to skip installation and report intended actions.
* @returns {Promise<{ installed: Array<{ name: string, target: 'local' | 'global', dev?: boolean, version?: string }>, actions: string[] }>}
*/
async function installPackages(options) {}
module.exports = { installPackages };Performs the local and global package installations required by the helper.